我承认我是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()抛出并且异常'没有为范围注册的范围"会话"' 我不知道我是否需要配置类,但我的测试类在没有它的情况下无法工作,因为Spring需要@ContextConfiguration而且我想要Spring提供的所有DI好处(除其他外)。
如何让我的测试与Spring一起使用?
答案 0 :(得分:3)
您可以使用内存数据库InProcessServer
:
@Bean
public Neo4jServer neo4jServer() {
return new InProcessServer();
}
忽略会话范围,因为您的测试未在Web容器中运行。例如:https://github.com/neo4j-examples/sdn4-cineasts/blob/4.0-RC1/src/test/java/org/neo4j/cineasts/PersistenceContext.java
这将需要此问题中描述的依赖项:Spring Data Neo4j 4.0.0.M1 Test Configuration
在您的测试类PersonRepositoryTest
中,您不需要构建数据库的实例,您的测试将针对相同的InProcessServer
运行。
这是一个例子:https://github.com/neo4j-examples/sdn4-cineasts/blob/4.0-RC1/src/test/java/org/neo4j/cineasts/domain/DomainTest.java