我正在尝试运行与其他集成测试具有不同SpringApplicationConfiguration
的集成测试。该问题仅在配置Gemfire时显现。
此处提供错误演示:https://github.com/kemitix/test-spring-boot-gemfire-testing
有两个测试类ContextsApplicationTests
和ContextsApplicationWithCustomTests
。
第一个使用基于SpringApplicationConfiguration
类的标准ContextsApplication
。另一个尝试还包括CustomConfiguration
类来覆盖Bean。
测试一:
@IntegrationTest
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = ContextsApplication.class)
public class ContextsApplicationTests {
...
测试二:
@IntegrationTest
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = {
ContextsApplication.class,
CustomConfiguration.class
})
public class ContextsApplicationWithCustomTests {
如果没有启用Gemfire,测试会很愉快。
但是,配置Gemfire会导致上下文加载器抛出IllegalArgumentException
:
Caused by: java.lang.IllegalArgumentException:
a beanFactoryReference already exists for key cacheFactoryBean
完整输出包含在仓库中的文件mvn-clean-install.txt
中。
当两个测试单独运行时,它们可以工作。只有当它们一起运行时才会出现问题。我怀疑Spring Boot正在运行的Gemfire实例导致两个测试之间出现某种流失,导致上下文无法正确隔离。不幸的是,我不知道如何影响这一点。
答案 0 :(得分:1)
你也可以试试CacheFactoryBean.setUseBeanFactoryLocator(false)