为 JUnit Runner (Eclipse) 设置系统属性以测试 Spring Web App

Posted

技术标签:

【中文标题】为 JUnit Runner (Eclipse) 设置系统属性以测试 Spring Web App【英文标题】:Set System Property for JUnit Runner (Eclipse) to test a Spring Web App 【发布时间】:2012-06-15 08:43:21 【问题描述】:

我们的网络应用使用 SystemPropertyPlaceholder 根据系统属性的值加载属性文件(见下文)

在本地运行它的默认设置存储在application.properties。在生产服务器上,我们目前只是在部署应用之前将“env”设置为“production”,它将加载 production.properties

现在应该使用test.properties 文件来测试应用程序。

如果我运行我们的 jenkins 构建中的所有测试,添加 -Denv=test 将按预期工作。但是,如果我只想在 Eclipse 中使用集成的 JUnit 运行器运行单个测试呢?

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(loader = WebContextLoader.class, locations = "classpath:application-context.xml" )
public class SomeTest 

有没有办法告诉我的测试它应该在加载 Spring 之前将系统属性“env”设置为“test”?因为使用MethodInvokingFactoryBean 只会在之后出于某种原因设置它,即使我在加载我的属性文件之前设置它:

<bean id="systemPrereqs"
    class="org.springframework.beans.factory.config.MethodInvokingFactoryBean">
    <property name="targetObject" value="#@systemProperties" />
    <property name="targetMethod" value="putAll" />
    <property name="arguments">
        <!-- The new Properties -->
        <util:properties>
            <prop key="env">test</prop>
        </util:properties>
    </property>
</bean>

<bean
    class="org.springframework.web.context.support.ServletContextPropertyPlaceholderConfigurer">
    <property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE" />
    <property name="searchContextAttributes" value="true" />
    <property name="contextOverride" value="true" />
    <property name="ignoreResourceNotFound" value="true" />
    <property name="locations">
        <list>
            <value>classpath:application.properties</value>
            <value>classpath:$env.properties</value>
            <value>$config</value>
        </list>
    </property>
</bean>

<bean id="managerDataSource"
    class="org.springframework.jdbc.datasource.DriverManagerDataSource">
    <property name="driverClassName" value="com.mysql.jdbc.Driver" />
    <property name="username">
        <value>$database.username</value>
    </property>
    <property name="password">
        <value>$database.password</value>
    </property>
    <property name="url">
        <value>$database.url</value>
    </property>

</bean>

在 application.properties、production.properties 和 test.properties 中定义数据库属性。

当然,重点是我想对所有环境使用相同的上下文文件,否则我可以告诉我的测试使用不同的上下文,我将 PropertyPlaceholder 属性“位置”设置为 test.properties...但我希望我的测试也涵盖我的上下文,以便尽早发现任何错误(我正在使用 spring-web-mvc 在我们的 Web 应用程序上进行端到端测试,它加载了整个 Web 应用程序,提供了一些不错的那里有反馈,我不想放弃它)。

到目前为止,我能看到的唯一方法可能是将 JUnit 运行器配置为包含一些系统属性设置参数,尽管我不知道该怎么做..

【问题讨论】:

我会说在这些配置文件中使用配置文件会导入您需要的正确文件。看起来你正在重新发明***。使用配置文件,您只需将@ActiveProfiles 添加到您的测试用例中即可加载正确的内容。代替 od -Denv=test 然后您将使用 -Dspring.active.profiles=test 【参考方案1】:

我现在正在解决完全相同的问题,并希望找到方法。您可以在测试用例的静态初始化程序中调用System.setProperty()

【讨论】:

虽然这在运行单个测试时有效,但在运行多个测试时不一定有效,因为 Spring 上下文可能在多个测试中重复使用。 @pimlottc,恕我直言,在这种情况下运行多个测试不会导致任何问题。问题是我们必须在 spring 上下文初始化之前设置系统属性。这是通过使用静态初始化程序来实现的。如果所有共享相同spring context的测试用例都设置了这个属性(就是这样)spring context会被正确初始化。 是的,我同意,如果静态初始化程序存在于每个共享上下文的测试类中。这在某些情况下可能不可行。【参考方案2】:

在 Eclipse 中,右键单击 JUnit 测试类,选择 Run As > Run Configurations...,然后转到 Arguments 选项卡,在 VM Arguments 下,添加系统属性条目,例如-Dcatalina.base=C:\programs\apache-tomcat-7.0.32

【讨论】:

有什么方法可以默认对所有的测试都这样做,这样就不用为每个测试手动设置这个属性了吗?【参考方案3】:

您可以尝试使用depends-on 属性让调用bean 的方法在其他人之前运行

【讨论】:

以上是关于为 JUnit Runner (Eclipse) 设置系统属性以测试 Spring Web App的主要内容,如果未能解决你的问题,请参考以下文章

Junit 的 @RunWith():Runner,即Junit的运行器

Junit 的 @RunWith():Runner,即Junit的运行器

CucumberOptions无法解析为某种类型

我在Eclipse中使用Java建立了一个简单的自动化框架,但是无法通过Junit运行Cucumber测试

junit源码之Runner

java.lang.NoClassDefFoundError: org/junit/runner/manipulation/Filter