使用NoSQLUnit测试Spring Data Neo4j应用程序

Spring Data Neo4jSpring Data项目中的项目,它提供了Spring编程模型的扩展,用于编写使用Neo4j作为图形数据库的应用程序。 要使用NoSQLUnitSpring Data Neo4j应用程序编写测试,除了考虑Spring Data Neo4j在图形节点和关系中使用一种称为type的特殊属性(用于存储该实体的完全合格的类名)之外,您不需要做任何其他事情。

除了节点/关系级别的type属性,我们还需要为节点创建一个索引,为关系创建一个索引。 对于节点, types索引名称是必需的,而rel_types则需要rel_types 。 在这两种情况下,我们都必须将键值设置为className并将值设置为完全合格的类名。

类型映射

IndexingNodeTypeRepresentationStrategyIndexingRelationshipTypeRepresentationStrategy用作默认类型映射实现,但您也可以使用SubReferenceNodeTypeRepresentationStrategy ,该实体将实体类型存储在表示类型和接口层次结构的图中的树中,或者您可以通过实现NodeTypeRepresentationStrategy接口进行更多自定义。

动手工作

应用

Starfleet已要求我们开发一个应用程序,用于存储所有starfleet成员及其与其他starfleet成员的关系以及他们所服务的船舶。 实现此要求的最佳方法是使用Neo4j数据库作为后端系统。 此外, Spring Data Neo4j用于持久层。 该应用程序被建模为两个Java类,一个用于成员,另一个用于星际飞船。 请注意,对于此示例,关系中没有属性,因此仅对节点进行建模。

会员等级

@NodeEntity
public class Member {private static final String COMMANDS = "COMMANDS";@GraphId Long nodeId;private String name;private Starship assignedStarship;public Member() {super();}public Member(String name) {this.name = name;}@Fetch @RelatedTo(type=COMMANDS, direction=Direction.OUTGOING)private Set<Member> commands;public void command(Member member) {this.commands.add(member);}public Set<Member> commands() {return this.commands;}public Starship getAssignedStarship() {return assignedStarship;}public String getName() {return name;}public void assignedIn(Starship starship) {this.assignedStarship = starship;}//Equals and Hash methods
}

星际飞船类

@NodeEntity
public class Starship {private static final String ASSIGNED = "assignedStarship";@GraphId Long nodeId;private String starship;public Starship() {super();}public Starship(String starship) {this.starship = starship;}@RelatedTo(type = ASSIGNED, direction=Direction.INCOMING)private Set<Member> crew;public String getStarship() {return starship;}public void setStarship(String starship) {this.starship = starship;}//Equals and Hash methods
}

除了模型类之外,我们还需要两个存储库来实现CRUD操作和spring上下文 xml文件。 Spring Data Neo4j使用Spring Data Commons基础结构,使我们能够创建基于接口的存储库组合,为某些操作提供默认实现。

MemberRepository类

public interface MemberRepository extends GraphRepository<Member>,RelationshipOperationsRepository<Member> {Member findByName(String name);}

看到除了GrapRepository接口提供的操作(如savefindAllfindById ,我们还定义了一种查询方法,也称为findByNameSpring Data Neo4j存储库(以及大多数Spring Data项目)提供了一种机制,该机制使用已知的Ruby on Rails方法定义查找程序查询来定义查询。

StarshipRepository类

public interface StarshipRepository extends GraphRepository<Starship>,RelationshipOperationsRepository<Starship> {
}

应用程序上下文文件

<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:context="http://www.springframework.org/schema/context"xmlns:neo4j="http://www.springframework.org/schema/data/neo4j"xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-3.1.xsdhttp://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context-3.1.xsdhttp://www.springframework.org/schema/data/neo4jhttp://www.springframework.org/schema/data/neo4j/spring-neo4j.xsd"><context:component-scan base-package="com.lordofthejars.nosqlunit.springdata.neo4j"/><context:annotation-config/><neo4j:repositories base-package="com.lordofthejars.nosqlunit.springdata.repository"/></beans>

测试中

单元测试

如前所述,为Spring Data Neo4j编写数据集,除了正确地创建节点和关系属性以及定义所需的索引外,我们无需执行任何其他操作。 让我们看看通过播种来测试findByName方法的数据集
Neo4j数据库。

star-trek-TNG-dataset.xml文件

<?xml version="1.0" ?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd"><key id="name" for="node" attr.name="name" attr.type="string"></key><key id="__type__" for="node" attr.name="__type__" attr.type="string"></key><key id="starship" for="node" attr.name="starship" attr.type="string"></key><graph id="G" edgedefault="directed"><node id="3"><data key="__type__">com.lordofthejars.nosqlunit.springdata.neo4j.Member</data><data key="name">Jean-Luc Picard</data><index name="__types__" key="className">com.lordofthejars.nosqlunit.springdata.neo4j.Member</index></node><node id="1"><data key="__type__">com.lordofthejars.nosqlunit.springdata.neo4j.Member</data><data key="name">William Riker</data><index name="__types__" key="className">com.lordofthejars.nosqlunit.springdata.neo4j.Member</index></node><node id="4"><data key="__type__">com.lordofthejars.nosqlunit.springdata.neo4j.Starship</data><data key="starship">NCC-1701-E</data><index name="__types__" key="className">com.lordofthejars.nosqlunit.springdata.neo4j.Starship</index></node><edge id="11" source="3" target="4" label="assignedStarship"></edge><edge id="12" source="1" target="4" label="assignedStarship"></edge><edge id="13" source="3" target="1" label="COMMANDS"></edge></graph>
</graphml>

看到每个节点至少具有一个具有完全限定类名的type属性,以及一个具有名称types ,键className和完全限定类名作为值的索引。 下一步是配置单元测试的应用程序上下文。 application-context-embedded-neo4j.xml

<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:context="http://www.springframework.org/schema/context"xmlns:neo4j="http://www.springframework.org/schema/data/neo4j"xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-3.1.xsdhttp://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context-3.1.xsdhttp://www.springframework.org/schema/data/neo4jhttp://www.springframework.org/schema/data/neo4j/spring-neo4j.xsd"><import resource="classpath:com/lordofthejars/nosqlunit/springdata/neo4j/application-context.xml"/><neo4j:config storeDirectory="target/config-test"/></beans>

注意,我们使用Neo4j名称空间来实例化嵌入式Neo4j数据库。 现在我们可以编写JUnit测试用例: WhenInformationAboutAMemberIsRequired

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("application-context-embedded-neo4j.xml")
public class WhenInformationAboutAMemberIsRequired {@Autowiredprivate MemberRepository memberRepository;@Autowiredprivate StarshipRepository starshipRepository;@Autowiredprivate ApplicationContext applicationContext;@Rulepublic Neo4jRule neo4jRule = newNeo4jRule().defaultSpringGraphDatabaseServiceNeo4j();@Test@UsingDataSet(locations = "star-trek-TNG-dataset.xml", loadStrategy = LoadStrategyEnum.CLEAN_INSERT)public void information_about_starship_where_serves_and_members_under_his_service_should_be_retrieved()  {Member jeanLuc = memberRepository.findByName("Jean-Luc Picard");assertThat(jeanLuc, is(createMember("Jean-Luc Picard")));assertThat(jeanLuc.commands(), containsInAnyOrder(createMember("William Riker")));Starship starship = starshipRepository.findOne(jeanLuc.getAssignedStarship().nodeId);assertThat(starship, is(createStarship("NCC-1701-E")));}private Object createStarship(String starship) {return new Starship(starship);}private static Member createMember(String memberName) {return new Member(memberName);}
}

在上一课中有一些要考虑的重点:

  1. 回想一下,我们需要使用Spring ApplicationContext对象来检索定义到Spring应用程序上下文中的嵌入式Neo4j实例。
  2. 由于数据库的生命周期由Spring Data容器管理,因此无需定义任何NoSQLUnit生命周期管理器。

整合测试

单元测试通常针对嵌入式内存实例运行,但是在生产环境中,您可能需要使用Rest连接来访问外部Neo4j服务器,或者在Spring Data Neo4j实例化SpringRestGraphDatabase类的情况下。 当您将代码与远程服务器集成时,需要编写测试以验证您的应用程序仍然可以正常工作,并且该测试通常称为集成测试。 为我们的应用程序编写集成测试就像使用SpringRestGraphDatabase定义应用程序上下文一样容易,并允许NoSQLUnit控制Neo4j数据库的生命周期。

.application-context-managed-neo4j.xml
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:context="http://www.springframework.org/schema/context"xmlns:neo4j="http://www.springframework.org/schema/data/neo4j"xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-3.1.xsdhttp://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context-3.1.xsdhttp://www.springframework.org/schema/data/neo4jhttp://www.springframework.org/schema/data/neo4j/spring-neo4j.xsd"><import resource="classpath:com/lordofthejars/nosqlunit/springdata/neo4j/application-context.xml"/><bean id="graphDatabaseService" class="org.springframework.data.neo4j.rest.SpringRestGraphDatabase"><constructor-arg index="0" value="http://localhost:7474/db/data"></constructor-arg></bean><neo4j:config graphDatabaseService="graphDatabaseService"/></beans>

请注意,我们不是配置嵌入式实例,而是配置SpringRestGraphDatabase类以连接到本地主机服务器。 让我们实施一个集成测试,以验证所有星际飞船都可以从Neo4j服务器中检索到。

何时需要有关会员的信息

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("application-context-managed-neo4j.xml")
public class WhenInformationAboutStarshipsAreRequired {@ClassRulepublic static ManagedNeoServer managedNeoServer = newManagedNeo4jServerRule().neo4jPath("/Users/alexsotobueno/Applications/neo4j-community-1.7.2").build();@Autowiredprivate StarshipRepository starshipRepository;@Autowiredprivate ApplicationContext applicationContext;@Rulepublic Neo4jRule neo4jRule = newNeo4jRule().defaultSpringGraphDatabaseServiceNeo4j();@Test@UsingDataSet(locations = "star-trek-TNG-dataset.xml", loadStrategy = LoadStrategyEnum.CLEAN_INSERT)public void information_about_starship_where_serves_and_members_under_his_service_should_be_retrieved() {EndResult<Starship> allStarship = starshipRepository.findAll();assertThat(allStarship, containsInAnyOrder(createStarship("NCC-1701-E")));}private Object createStarship(String starship) {return new Starship(starship);}}

由于defaultSpringGraphDatabaseServiceNeo4j方法将定义的GraphDatabaseService实例返回到应用程序上下文中 ,因此在我们的示例中,它将返回定义的SpringRestGraphDatabase实例。

结论

为无Spring Data Neo4j应用程序编写测试与为它们使用应用程序编写测试之间没有太大区别。 仅记住正确定义type属性并创建所需的索引。 从NoSQLUnit的角度来看,除了数据库引擎的生命周期管理之外,编写单元测试或集成测试也没有区别。 下载代码

参考:来自JCG合作伙伴 Alex Soto的NoSQLUnit使用NoSQLUnit测试Spring Data Neo4j应用程序,来自One Jar To Rule All All博客。

翻译自: https://www.javacodegeeks.com/2013/03/testing-spring-data-neo4j-applications-with-nosqlunit.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/368636.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

家用计算机历史记录,教您如何查看电脑使用记录

很多朋友想查看自己之前使用过的文件或者文档来查询资料&#xff0c;或者是想看电脑是否被人使用过&#xff0c;但是&#xff0c;如何查看电脑使用记录呢&#xff1f;下面系统之家小编教大家查看电脑使用记录小技巧&#xff0c;不用担心找不到电脑使用记录。希望对大家有所帮助…

html5 图片上传 预览

<html><body><fieldset> <legend>测试</legend> <div class"form-group"> <div class"img-preview rl"> <form id"index_form1" name"index_form1" role"form" method"p…

使用selenium前学习HTML(3)— 属性

<!--HTML标签可以拥有属性&#xff0c;属性提供元素的更多的信息&#xff1b;属性总是以名称/值对的形式出现&#xff0c;比如&#xff1a;name"value"。属性总是在 HTML 元素的开始标签中规定。 --><!DOCTYPE html> <html lang"en"> &l…

k3 Bos开发百问百答

K/3 BOS开发百问百答 &#xff08;版本&#xff1a;V1.1&#xff09; K3产品市场部 目录 一、基础资料篇__ 1 【摘要】bos基础资料的显示问题_ 1 【摘要】单据自定义无法看到bos定义的基础资料_ 1 【摘要】在调出基础资料序时簿时&#xff0c;过滤出我需要的基础资料_ 1 【摘要…

计算机架构专业排名,全国大学计算机专业排名(转贴)

4 东北大学 A 081201计算机系统结构 081200计算机科学与技术 08工学5 西安交通大学 A 081201计算机系统结构 081200计算机科学与技术08工学6 复旦大学 A 081201计算机系统结构 081200计算机科学与技术 08工学7 中国科学技术大学 A 081201计算机系统结构 081200计算机科学与技术…

Spring MVC,Ajax和JSON第2部分–服务器端代码

在上一个博客中&#xff0c;我说过我将谈论Spring&#xff0c;Ajax和JSON&#xff0c;但是没有。 原因是我想使用&#xff08;很少&#xff09;可信的购物网站场景来设置场景。 在这种情况下&#xff0c;当用户单击“电子商务”页面链接时&#xff0c;服务器应用程序将加载目录…

Python模块学习之解决selenium的“can't access dead object”错误

问题描述 在python执行过程中&#xff0c;提示selenium.common.exceptions.WebDriverException: Message: TypeError: cant access dead object 原因 原因是代码中用到了frame,获取元素前需要切换到frame才能定位到元素&#xff0c;否则无法定位到元素 解决方法 在查找元素前加…

初中生学计算机网络应用怎么样,初中生读计算机网络技术专业怎么样?小编解答...

初中生读计算机网络技术专业怎么样?可以这样说&#xff0c;计算机网络技术专业在众多专业当中来说&#xff0c;也是一个发展得比较不错的专业&#xff0c;而且现在也有很多高职学校都开设有计算机网络技术专业&#xff0c;那么初中生读计算机网络技术专业怎么样?计算机网络技…

类的无参方法和Doc注释

一:Java Doc注释: 语法: /** *AccpSchool 类 *author JadeBird *version 1.0 2018/5/26 */ Java Doc是前Sun公司提供的一种技术,它能够从程序代码中抽取类,方法,成员等的注释,形成一个和源代码配套的API帮助文档(简答地说,就是介绍该类,类的方法和成员变量的文档). 因此只要在编…

html/css学习笔记(一)

盒子模型1.background 1.1background-colorbackground-image: url("");background-repeatbackground-size: &#xff08;x轴的比例 y轴的比例&#xff09;background-positionbackground-attachment:fixed;(背景图固定不滚动)1.2 复合写法background: color iamge po…

Spring MVC,Ajax和JSON第3部分–客户端代码

如果您一直关注有关Spring&#xff0c;Ajax和JSON的简短博客系列&#xff0c;那么您会回想起我到目前为止已经创建了一个Spring MVC Web应用程序&#xff0c;该应用程序显示一个表单&#xff0c;该表单允许用户选择一堆项目并向服务器提交购买请求。 然后&#xff0c;服务器用一…

[poj] 3090 Visible Lattice Points

原题 欧拉函数 我们发现&#xff0c;对于每一个斜率来说&#xff0c;这条直线上的点&#xff0c;只有gcd(x,y)1时可行&#xff0c;所以求欧拉函数的前缀和。2*f[n]1即为答案。 #include<cstdio> #define N 1010 using namespace std; int x,y,n,f[N],m;int read() {int a…

10个必知的网页设计术语计算机与网络,计算机网络专业毕业论文-网页设计与制作(23页)-原创力文档...

安徽工业经济职业技术学院毕业论文PAGEPAGE 4-安徽工业经济职业技术学院毕业论文(设计)论文题目&#xff1a; 网页设计与制作系 部&#xff1a; 计算机科学技术系专业名称&#xff1a; 计算机网络技术论文作者&#xff1a; 李婷婷指导教师&#xff1a; 宋多琳2014年4月12日摘 要…

笔记36 Spring Web Flow——配置

Spring Web Flow是一个Web框架&#xff0c;它适用于元素按规定流程运行的程序。Spring Web Flow是Spring MVC的扩展&#xff0c;它支持开发基于流程的应用程 序。它将流程的定义与实现流程行为的类和视图分离开来。在介绍Spring Web Flow的时候&#xff0c;我们将暂时放下Spitt…

一些关于Viewport与device-width的东西~(转)

内容转自 http://www.cnblogs.com/koukouyifan/p/4066567.html 非常感谢 口口一凡 为我们提供的这篇文章&#xff0c;受益匪浅&#xff0c;特地转到自己的博客收藏起来。 以下是原文内容。 进行移动web开发已经有一年多的时间了&#xff0c;期间遇到了一些令人很困惑的东西。…

创建委托登录模块(用于JBoss EAP 6.1)

[如果只想查看代码&#xff0c;请向下滚动] 动机 在RHQ中&#xff0c;我们需要一个安全域&#xff0c;该域可用于通过容器管理的安全性来保护REST-api及其Web应用程序。 过去&#xff0c;我只是使用经典的DatabaseServerLoginModule对DatabaseServerLoginModule进行身份验证。 …

【C++】开源:FLTK图形界面库配置与使用

&#x1f60f;★,:.☆(&#xffe3;▽&#xffe3;)/$:.★ &#x1f60f; 这篇文章主要介绍FLTK图形界面库配置与使用。 无专精则不能成&#xff0c;无涉猎则不能通。——梁启超 欢迎来到我的博客&#xff0c;一起学习&#xff0c;共同进步。 喜欢的朋友可以关注一下&#xff0…

蜗牛学院:中国人,努力获得了荣誉却要压抑克制

上周&#xff0c;在取得双11三连冠的佳绩之后&#xff0c;百雀羚顺势推出了一支视频广告《你应该骄傲》。 广告内容感动了无数人&#xff0c;并在广告圈和自媒体引发了持续刷屏。&#xff08;视频见文末&#xff09; 从《一九三一》到《韩梅梅快跑》&#xff0c;百雀羚今年多次…

html 访问节点,HTML DOM 访问节点

getElementById() 和 getElementsByTagName()getElementById() 和 getElementsByTagName() 这两种方法&#xff0c;可查找整个 HTML 文档中的任何 HTML 元素。这两种方法会忽略文档的结构。假如您希望查找文档中所有的元素&#xff0c;getElementsByTagName() 会把它们全部找到…

CSS3圆圈动画放大缩小循环动画效果

代码如下&#xff1a; <!DOCTYPE html> <html> <head> <meta http-equiv"Content-Type" content"text/html; charsetutf-8" /> <title>CSS3圆圈动画放大缩小循环动画效果</title> <style>.dot { margin:150px a…