gpt4 book ai didi

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

转载 作者:IT老高 更新时间:2023-10-28 13:50:21 26 4
gpt4 key购买 nike

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

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

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

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

@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 运行器配置为包含一些系统属性设置参数,尽管我不知道该怎么做..

最佳答案

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

关于java - 为 JUnit Runner (Eclipse) 设置系统属性以测试 Spring Web App,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10997136/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com