我承认我是 Java 做事方式的新手,我完全迷失了试图让一个简单的单元测试运行。
我正在构建一个数据访问库并希望对其进行单元测试。我正在使用 Spring Data Neo4j 4.0.0.BUILD-SNAPSHOT 因为我需要连接到现实世界中的远程 Neo4j 服务器。
在整天与错误作斗争之后,我正处于我有一个测试班的地步:
@RunWith(SpringJUnit4ClassRunner.class)
@ComponentScan(basePackages = {"org.mystuff.data"})
@ContextConfiguration(classes={Neo4jTestConfiguration.class})
public class PersonRepositoryTest {
@Autowired
PersonRepository personRepository;
protected GraphDatabaseService graphDb;
@Before
public void setUp() throws Exception {
graphDb = new TestGraphDatabaseFactory().newImpermanentDatabase();
}
@After
public void tearDown() {
graphDb.shutdown();
}
@Test
public void testCreatePerson() throws Exception {
assertNotNull(personRepository);
Person p = new Person("Test", "User");
personRepository.save(p);
}
}
Neo4jTestConfiguration.java
@Configuration
@EnableNeo4jRepositories(basePackages = "org.mystuff.data")
@EnableTransactionManagement
public class Neo4jTestConfiguration extends Neo4jConfiguration {
@Bean
public SessionFactory getSessionFactory() {
return new SessionFactory("org.mystuff.data");
}
@Bean
public Neo4jServer neo4jServer() {
// What to return here? I want in-memory database
return null;
}
@Bean
@Scope(value = "session", proxyMode = ScopedProxyMode.TARGET_CLASS)
public Session getSession() throws Exception {
return super.getSession();
}
}
运行测试时,personRepository.save() 抛出异常 'No Scope registered for scope "session"' 我不知道我是否需要配置类,但没有它我的测试类将无法工作,因为 Spring 需要 @ContextConfiguration 而我想要 Spring 提供的所有 DI 优点(除其他外)。
如何让我的测试与 Spring 一起使用?