在多个环境中运行测试套件

Posted

技术标签:

【中文标题】在多个环境中运行测试套件【英文标题】:Run a testsuite in multiple environment 【发布时间】:2013-08-31 01:43:30 【问题描述】:

我想在多个环境中运行我的测试套件,如下所示:

ApplicationContextTest.class

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("/application-context.xml")
public class MyTest

@Autowired
private ApplicationContext applicationContext;

@Test
public void test1() 
    ((ConfigurableEnvironment)applicationContext.getEnvironment()).setActiveProfiles("env1");
    ((GenericXmlApplicationContext)applicationContext).refresh();


@Test
public void test2() 
    ((ConfigurableEnvironment)applicationContext.getEnvironment()).setActiveProfiles("env2");
    ((GenericXmlApplicationContext)applicationContext).refresh();

applicationContext.xml

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">

<beans profile="env1">

</beans>

<beans profile="env2">

</beans>

当我运行测试时,我遇到了一个异常

Caused by: java.lang.IllegalStateException: GenericApplicationContext does not support multiple refresh attempts: just call 'refresh' once

ApplicationContext启动后有什么方法可以设置Active Profile吗?

或者任何解决上述异常的解决方案?

谢谢。

【问题讨论】:

没有人能帮我解决这个问题吗?好伤心:( 【参考方案1】:

选择一个或多个特定配置文件的常规方法是在运行测试时设置系统属性

-Dspring.profiles.active=env1

您还可以使用系统属性将一个或多个配置文件设置为默认配置

-Dspring.profiles.default=env1

我通常在我的测试的静态初始化方法中执行此操作

@BeforeClass
public static void init() 
    // set default spring test profile
    System.setProperty("spring.profiles.default", "default");

如果您搜索这些属性,您会发现一些信息(如果您需要 Spring 代码参考,您必须查看 AbstractEnvironment 类)。

我不知道如何在启动后更改配置文件。在这种情况下,您可能必须在每个测试中使用新的 JVM(例如,可以由 maven surefire 插件使用 reuseForks 设置完成)。或者甚至更好地将使用相同配置文件的测试放在同一个测试类中,并根据需要设置配置文件。

恕我直言,测试不应依赖于特定的配置文件。测试应该通过 - 无论使用什么配置文件。比你可以很容易地改变,例如在测试(模拟)或“真实”环境之间。

【讨论】:

以上是关于在多个环境中运行测试套件的主要内容,如果未能解决你的问题,请参考以下文章

如何在机器人框架中并行运行多个测试套件上的多个测试用例 | Python

JMeter - 如何在多个测试环境中运行多个线程组

如何在同一台机器上运行多个硒测试套件

Selenium GRID:并行运行多个 Robot Framework 测试套件

JUnit测试套件(Test Suite)

如何在 Perl 测试套件中并行运行一些但不是所有测试?