gpt4 book ai didi

java - JUnit 测试一起运行时失败,但单独运行时通过

转载 作者:搜寻专家 更新时间:2023-10-30 21:33:24 25 4
gpt4 key购买 nike

我有一堆 JUnit 测试,它们都可以单独运行。每一个都是真正的独立单元测试 - 被测单类。不需要上下文。我可以在 Eclipse 中或通过 maven/surefire-plugin 单独或一起运行它们。

我已经添加了一个新的集成测试,它利用 Spring 上下文等并使用 SpringJUnit4ClassRunner。一旦我将这个测试添加到我的套件中,任何在这个类之后运行的测试用例都会失败。

@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = IntegrationTestConfiguration.class)
@DirtiesContext(classMode=ClassMode.AFTER_EACH_TEST_METHOD)
@ActiveProfiles("test")
public class ImportServiceIntegrationTest {
...
}

我不确定这是否有巨大的值(value),但我也在这里发布我的配置类:

@EnableAutoConfiguration(exclude = { WebMvcAutoConfiguration.class,
DispatcherServletAutoConfiguration.class,
EmbeddedServletContainerAutoConfiguration.class,
WebSocketAutoConfiguration.class })
@ComponentScan(basePackages = "com.rtc.synchronize",
excludeFilters = @ComponentScan.Filter(type = FilterType.REGEX, pattern="com\\.rtc\\.synchronize\\.config\\.AppConfig"))
@EnableJpaRepositories("com.util.veracode.rtc.synchronize")
@EntityScan("com.util.veracode.rtc.synchronize")
public class IntegrationTestConfiguration {
}

如果我实际@Configuration类(class)会有用,我也可以发布这些类(class),尽管为简洁起见,我避免使用它们(我不完全确定它们会有多大用处)。

我怀疑在测试类终止后,JVM 中还维护着一些东西(一些静态数据)。

我正在使用具有以下配置的 Spring Cache 注释:

@Configuration
@EnableCaching(mode=AdviceMode.ASPECTJ)
public class CacheConfig extends CachingConfigurerSupport{

/**
* EhCache configuration. Used to minimize calls to Veracode
*
* @return
*/
@Bean(destroyMethod="shutdown")
public net.sf.ehcache.CacheManager ehCacheManager() {
...
...
}
...
}

一旦我的集成测试类完成,我的后续测试就会抛出以下错误:

java.lang.IllegalStateException: The workItems Cache is not alive (STATUS_SHUTDOWN)
at net.sf.ehcache.Cache$CacheStatus.checkAlive(Cache.java:4097)
at net.sf.ehcache.Cache.checkStatus(Cache.java:2788)
at net.sf.ehcache.Cache.get(Cache.java:1744)
at org.springframework.cache.ehcache.EhCacheCache.get(EhCacheCache.java:65)
at org.springframework.cache.interceptor.AbstractCacheInvoker.doGet(AbstractCacheInvoker.java:68)
at org.springframework.cache.interceptor.CacheAspectSupport.findInCaches(CacheAspectSupport.java:461)
at org.springframework.cache.interceptor.CacheAspectSupport.findCachedItem(CacheAspectSupport.java:432)
at org.springframework.cache.interceptor.CacheAspectSupport.execute(CacheAspectSupport.java:333)
at org.springframework.cache.interceptor.CacheAspectSupport.execute(CacheAspectSupport.java:299)
at org.springframework.cache.aspectj.AbstractCacheAspect.ajc$around$org_springframework_cache_aspectj_AbstractCacheAspect$1$2bc714b5(AbstractCacheAspect.aj:74)
at com.synchronize.repository.rtc.WorkItemRepositoryImpl.findById(WorkItemRepositoryImpl.java:192)
at com.synchronize.repository.rtc.WorkItemRepositoryImpl.findById(WorkItemRepositoryImpl.java:192)
at com.synchronize.repository.rtc.WorkItemRepositoryImpl.getState(WorkItemRepositoryImpl.java:179)
at com.synchronize.repository.rtc.WorkItemRepositoryImplTest.testGetState(WorkItemRepositoryImplTest.java:178)

所以我很清楚 Spring 没有在完成后清理某些东西(我的后续类甚至没有加载 Spring 上下文 - 它是一个普通的 Junit 测试!)。

如果我添加 <resueForks>false</reuseForks>根据我的 surefire-plugin 定义,所有测试都通过了,但我对该解决方案/解决方法不满意。它会减慢构建速度,并且在 Eclipse 中不受尊重 - 也就是说,我只是一次性针对整个项目运行 JUnit 测试运行程序而不会失败。

我是否必须做一些特殊的事情来确保 Spring 在测试用例完成后将自己从 JVM 中清除?为什么我的集成测试后会有一些 Spring 配置?

最佳答案

我注意到在我的测试套件中,一些基于 AspectJ 的实现具有引用某些 spring bean 的静态字段,并且当配置文件甚至完整的 spring 测试上下文发生变化时,此引用不会更新(我为 Spring-Security 观察到了这一点,但也许 @Cache 也有类似的问题)

我的解决方法是通过不同目录(例如 src/test/javaSecurity)中使用的 spring 配置对测试用例进行分组,并使用命名模式将它们分开。- 分开的目录/源文件夹用于eclipse,所以我可以单击目录根文件夹并指示eclipse 运行此源文件夹中的所有测试。- 命名模式用于使用 maven 执行测试(因为 surefire 具有按类命名模式而不是根文件夹选择执行测试的功能)

  • 目录/模式
    • src/test/java,模式:*Test - 包含没有 spring-security 的 spring 配置测试
    • src/test/javaSecurity,模式:*SecurityTest 需要启用 spring 安全性的 Spring 测试

专家

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-security-test-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-test-source</goal>
</goals>
<configuration>
<sources>
<source>${basedir}/src/test/javaSecurity</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>


<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<executions>
<execution>
<id>normal-test</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<excludes>
<exclude>**/Abstract*.java</exclude>
<exclude>**/*SecurityTest.java</exclude>
</excludes>
<includes>
<include>**/*Test.java</include>
<include>**/*Tests.java</include>
</includes>
<reportsDirectory>${project.build.directory}/surefire-reports/normaltest</reportsDirectory>
</configuration>
</execution>
<execution>
<id>security-tests</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<excludes>
<exclude>**/Abstract*.java</exclude>
</excludes>
<includes>
<include>**/*SecurityTest.java</include>
</includes>
<reportsDirectory>${project.build.directory}/surefire-reports/security-test</reportsDirectory>
</configuration>
</execution>
</executions>
<configuration>
<!-- just needed to prevent some bugs -->
<excludes />
<includes>
<include>nothing</include>
</includes>
<reportsDirectory>${project.build.directory}/surefire-reports/nothing</reportsDirectory>
</configuration>
</plugin>

关于java - JUnit 测试一起运行时失败,但单独运行时通过,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33576324/

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