在cassandra-unit with spring example之后,我发现spring bean没有连接到测试类,导致nullpointer异常。我试图最小化问题并发现它可能不是Cassandra部分,而是存在@TestExecutionListeners
注释以及AbstractTestExecutionListener
扩展类。
org.springframework:spring-core:4.2.0.RELEASE (Also fails with 3.2.14.RELEASE).
org.springframework:spring-test:4.2.0.RELEASE
junit.junit:4.11
JVM vendor/version: Java HotSpot(TM) 64-Bit Server VM/1.8.0_40
MAC OS X 10.10.5
我的TestClass看起来像:
@RunWith(SpringJUnit4ClassRunner.class)
@TestExecutionListeners({ AppTestListener.class }) <-- OK when removed
@ContextConfiguration(classes = { TestConfiguration.class })
public class MyTest {
@Autowired
private MyService myService;
@Test
public void testMyService() {
Assert.assertNotNull(myService);
Assert.assertEquals("didit", myService.doIt());
}
}
AppTestListener:
public class AppTestListener extends AbstractTestExecutionListener {
@Override
public void beforeTestMethod(TestContext testContext) throws Exception {
System.out.println("test");
}
}
配置类没什么特别的(配置xml也没用):
@Configuration
public class TestConfiguration {
@Bean
public MyService myService() {
return new MyService();
}
}
当我在MyTest中删除@TestExecutionListeners注释时,测试按预期完成,但是保留该注释会使assertNotNull上的unittest失败。 发生了什么事?
答案 0 :(得分:11)
首先,遗憾的是cassandra-unit示例并不是一个很好的例子,因为它会像你遇到的那样导致问题。
当我在MyTest中删除@TestExecutionListeners注释时 测试按预期完成,但留下该注释使得 assertNotNull上的unittest失败。发生了什么事?
当您在未扩展任何其他使用@TestExecutionListeners(AppTestListener.class)
注释的测试类的测试类上声明@TestExecutionListeners
时,您实际上是在告诉Spring只加载 您的{{1}当你真的想要将AppTestListener
与Spring的默认监听器结合使用时(例如,AppTestListener
增加了对来自DependencyInjectionTestExecutionListener
的bean的依赖注入的支持)。
有关详细信息,请阅读Spring参考手册的整个TestExecutionListener configuration部分。
以下是解决问题的方法。
在Spring Framework 4.1之前
ApplicationContext
Spring Framework 4.1之后
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration
@TestExecutionListeners({
CassandraUnitTestExecutionListener.class,
DependencyInjectionTestExecutionListener.class,
DirtiesContextTestExecutionListener.class,
TransactionalTestExecutionListener.class
})
@CassandraUnit
public class MyCassandraUnitTest {
@Test
public void xxx_xxx() {
}
}
此致
Sam( Spring TestContext Framework的作者)
P.S。我创建了一个issue for Cassandra Unit,以便他们在示例中解决这个问题。