使用 Spring Boot 和嵌入式驱动程序测试 Neo4j
Posted
技术标签:
【中文标题】使用 Spring Boot 和嵌入式驱动程序测试 Neo4j【英文标题】:Testing Neo4j with Spring Boot and embedded driver 【发布时间】:2018-09-13 09:32:01 【问题描述】:问题
我使用 Neo4j 数据库构建了一个应用程序。我喜欢使用 Spring Boot 的 @DataNeo4jTest
注释(另见 Spring Boot Test - Neo4j)测试一些自定义 Cypher 查询,但我遇到了以下任一问题:
详情
我的依赖项在Spring Data Neo4j Reference Documentation 之后使用 Maven 进行管理。 SDN 文档的第 10.3.1 节说明:
默认情况下,SDN 将使用 BOLT 驱动程序连接到 Neo4j,您无需在 pom.xml 中将其声明为单独的依赖项。如果要在生产应用程序中使用嵌入式或 HTTP 驱动程序,还必须添加以下依赖项。 (如果您只想使用嵌入式驱动程序进行测试,则不需要对嵌入式驱动程序的依赖。有关详细信息,请参阅下面的Testing 部分)。
因此,我的pom.xml
的相关部分是:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi=...>
...
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.0.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
...
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-neo4j</artifactId>
</dependency>
<dependency>
<groupId>org.neo4j.test</groupId>
<artifactId>neo4j-harness</artifactId>
<version>3.3.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
...
</project>
我的main/resources/application.yml
是:
spring:
data:
neo4j:
uri: bolt://localhost
username: <username>
password: <password>
我的test/resources/application.yml
是:
spring.data.neo4j.uri: file:///neo4j.db
没有 test/resources/application.yml
我得到以下异常,我认为这是由使用 BOLT 驱动程序引起的:
org.springframework.transaction.CannotCreateTransactionException: Could not open Neo4j Session for transaction;
nested exception is org.neo4j.driver.v1.exceptions.AuthenticationException: The client is unauthorized due to authentication failure.
使用 test/resources/application.yml
我得到以下异常:
java.lang.IllegalStateException: Failed to load ApplicationContext
Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'neo4jAuditionBeanFactoryPostProcessor': Unsatisfied dependency expressed through constructor parameter 0;
nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory' defined in class path resource [org/springframework/boot/autoconfigure/data/neo4j/Neo4jDataAutoConfiguration.class]: Bean instantiation via factory method failed;
nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.neo4j.ogm.session.SessionFactory]: Factory method 'sessionFactory' threw exception;
nested exception is org.neo4j.ogm.exception.core.ConfigurationException: Could not load driver class org.neo4j.ogm.drivers.embedded.driver.EmbeddedDriver
问题
是否缺少任何依赖项? 是不是配置错了? 有没有人有一个使用 Spring Boot 注释@DataNeo4jTest
的工作示例的链接?
欢迎提出任何建议。
【问题讨论】:
【参考方案1】:我找到了解决问题的方法。似乎 BOLT 驱动程序也用作测试的默认值 - 鉴于 Spring Data Neo4j (SDN) 文档,这令人困惑。最后,GitHub项目movies-java-spring-data-neo4j的pom.xml
帮助了我。我在pom.xml
中添加了以下测试依赖项:
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-ogm-embedded-driver</artifactId>
<version>$neo4j-ogm.version</version>
<scope>test</scope>
</dependency>
我保留了test/resources/application.yml
,但删除了该行:
spring.data.neo4j.uri: file:///neo4j.db
现在,测试上下文从嵌入式驱动程序开始,并创建一个像file:/C:/Users/Me/AppData/Local/Temp/neo4j.db6943517458205762238/
这样的临时数据库文件,这太棒了。我可以为每个测试方法获得一个干净的数据库实例。
我希望这个答案能帮助其他有同样问题的人。如有必要,我很乐意提供更多详细信息。
【讨论】:
【参考方案2】:@DataNeo4JTest
非常适合 Spring Boot 2.x
。
示例测试:
@RunWith(SpringRunner.class)
@DataNeo4jTest
public class WidgetRepositoryTest
@Autowired
private WidgetRepository repository;
private Widget widget;
@Before
public void setUp()
widget = WidgetTestData.builder().build();
@Test
public void itShouldSaveAndRetrieve()
final Widget saved = repository.save(widget);
assertThat(saved.getId()).isNotNull();
assertThat(saved.getName()).isEqualTo(widget.getName());
final Optional<Widget> found = repository.findById(saved.getId());
assertThat(found).hasValueSatisfying(w->
assertThat(w.getId()).isEqualTo(saved.getId());
assertThat(w.getName()).isEqualTo(saved.getName());
);
我的 Maven POM 中与 Neo4J 相关的依赖项:
<dependency>
<groupId>org.neo4j.test</groupId>
<artifactId>neo4j-harness</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-ogm-embedded-driver</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-neo4j</artifactId>
</dependency>
【讨论】:
以上是关于使用 Spring Boot 和嵌入式驱动程序测试 Neo4j的主要内容,如果未能解决你的问题,请参考以下文章
带有集成测试的 Spring Boot 应用程序的 Jenkins 作业