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

Spring Data MongoDBSpring Data项目中的项目,它提供了Spring编程模型的扩展,用于编写使用MongoDB作为数据库的应用程序。

要使用NoSQLUnitSpring Data MongoDB应用程序编写测试,除了考虑Spring Data MongoDB使用一个名为_class的特殊属性来将类型信息存储在文档中之外,您不需要做任何其他事情。

_class属性将顶级文档以及复杂类型中的每个值的标准类名存储在文档中。

类型映射

MappingMongoConverter用作默认类型映射实现,但您可以使用@TypeAlias或实现TypeInformationMapper接口自定义更多类型。

应用

Starfleet已要求我们开发一个应用程序,用于将所有星际飞船乘员的日志存储到他们的系统中。 为了实现此要求,我们将在持久层使用MongoDB数据库作为后端系统,并使用Spring Data MongoDB
日志文档具有下一个json格式:

日志文件示例

{"_class" : "com.lordofthejars.nosqlunit.springdata.mongodb.log.Log" ,"_id" : 1 ,"owner" : "Captain" ,"stardate" : {"century" : 4 ,"season" : 3 ,"sequence" : 125 ,"day" : 8} ,"messages" : ["We have entered a spectacular binary star system in the Kavis Alpha sector on a most critical mission of astrophysical research. Our eminent guest, Dr. Paul Stubbs, will attempt to study the decay of neutronium expelled at relativistic speeds from a massive stellar explosion which will occur here in a matter of hours." ,"Our computer core has clearly been tampered with and yet there is no sign of a breach of security on board. We have engines back and will attempt to complete our mission. But without a reliable computer, Dr. Stubbs' experiment is in serious jeopardy."]
}

该文档被建模为两个Java类,一个用于整个文档,另一个用于stardate部分。

星际约会

@Document
public class Stardate {private int century;private int season;private int sequence;private int day;public static final Stardate createStardate(int century, int season, int sequence, int day) {Stardate stardate = new Stardate();stardate.setCentury(century);stardate.setSeason(season);stardate.setSequence(sequence);stardate.setDay(day);return stardate;}//Getters and Setters
}

日志类别

@Document
public class Log {@Idprivate int logId;private String owner;private Stardate stardate;private List<String> messages = new ArrayList<String>();//Getters and Setters
}

除了模型类,我们还需要DAO类来实现CRUD操作和spring应用程序上下文文件。

MongoLogManager类

@Repository
public class MongoLogManager implements LogManager {private MongoTemplate mongoTemplate;public void create(Log log) {this.mongoTemplate.insert(log);}public List<Log> findAll() {return this.mongoTemplate.findAll(Log.class);}@Autowiredpublic void setMongoTemplate(MongoTemplate mongoTemplate) {this.mongoTemplate = mongoTemplate;}}

应用程序上下文文件

<?xml version="1.0" encoding="UTF-8"?>
<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"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.xsd"><context:component-scan base-package="com.lordofthejars.nosqlunit.springdata.mongodb"/><context:annotation-config/></beans>

对于此示例,我们使用MongoTemplate类访问MongoDB来创建一个不复杂的示例,但是在更大的项目中,我建议通过在管理器类上实现CrudRepository接口来使用Spring Data Repository方法。

测试中

如前所述,除了正确使用class属性之外,您无需执行任何其他特殊操作。 让我们看看通过为日志数据库播种_log集合来测试findAll方法的数据集。

所有日志文件

{"log":[{"_class" : "com.lordofthejars.nosqlunit.springdata.mongodb.log.Log" ,"_id" : 1 ,"owner" : "Captain" ,"stardate" : {"century" : 4 ,"season" : 3 ,"sequence" : 125 ,"day" : 8} ,"messages" : ["We have entered a spectacular binary star system in the Kavis Alpha sector on a most critical mission of astrophysical research. Our eminent guest, Dr. Paul Stubbs, will attempt to study the decay of neutronium expelled at relativistic speeds from a massive stellar explosion which will occur here in a matter of hours." ,"Our computer core has clearly been tampered with and yet there is no sign of a breach of security on board. We have engines back and will attempt to complete our mission. But without a reliable computer, Dr. Stubbs' experiment is in serious jeopardy."]},{"_class" : "com.lordofthejars.nosqlunit.springdata.mongodb.log.Log" ,"_id" : 2 ,"owner" : "Captain" ,"stardate" : {"century" : 4 ,"season" : 3 ,"sequence" : 152 ,"day" : 4} ,"messages" : ["We are cautiously entering the Delta Rana star system three days after receiving a distress call from the Federation colony on its fourth planet. The garbled transmission reported the colony under attack from an unidentified spacecraft. Our mission is one of rescue and, if necessary, confrontation with a hostile force."]}...
}

看到_class属性设置为Log类的全限定名。

下一步是配置MongoTemplate以执行测试。

LocalhostMongoAppConfig

@Configuration
@Profile("test")
public class LocalhostMongoAppConfig {private static final String DATABASE_NAME = "logs";public @Bean Mongo mongo() throws UnknownHostException, MongoException {Mongo mongo = new Mongo("localhost");return mongo;}public @Bean MongoTemplate mongoTemplate() throws UnknownHostException, MongoException {MongoTemplate mongoTemplate = new MongoTemplate(mongo(), DATABASE_NAME);return mongoTemplate;}}

注意,仅当测试配置文件处于活动状态时,此MongoTemplate对象才会实例化。

现在我们可以编写JUnit测试用例:

当海军上将想要阅读日志时

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath:com/lordofthejars/nosqlunit/springdata/mongodb/log/application-context-test.xml")
@ActiveProfiles("test")
@UsingDataSet(locations = "all-logs.json", loadStrategy = LoadStrategyEnum.CLEAN_INSERT)
public class WhenAlmiralWantsToReadLogs {@ClassRulepublic static ManagedMongoDb managedMongoDb = newManagedMongoDbRule().mongodPath("/Users/alexsotobueno/Applications/mongodb-osx-x86_64-2.0.5").build();@Rulepublic MongoDbRule mongoDbRule = newMongoDbRule().defaultManagedMongoDb("logs");@Autowiredprivate LogManager logManager;@Testpublic void all_entries_should_be_loaded() {List<Log> allLogs = logManager.findAll();assertThat(allLogs, hasSize(3));}}

在上一课中有一些要点要看:

  1. 由于NoSQLUnit使用JUnit规则,因此您可以自由使用@RunWith(SpringJUnit4ClassRunner)
  2. 使用@ActiveProfiles我们正在加载测试配置而不是生产配置。
  3. 您可以毫无问题地使用@Autowired 类的Spring注释。

结论

为无Spring Data MongoDB编写测试和使用它的应用程序之间没有太大区别。 仅记住正确定义_class属性。

参考:在One Jar To Rule All All博客中,我们的JCG合作伙伴 Alex Soto 使用NoSQLUnit测试了Spring Data MongoDB应用程序 。

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

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

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

相关文章

20170117小测

今天再次迎来了我们的例行考试。 T1&#xff1a; 首先我们考虑那些点是可以共存的&#xff0c;我们可以枚举一个质数做他们的gcd&#xff0c;然后把这些点放在一张图里求直径。所以我们要做的就是把这些点的值分解质因数&#xff0c;对每个质因数挂一个链&#xff0c;代表有那些…

java实现红包要多少钱_java实现红包的分配算法

个人推测&#xff0c;微信红包在发出的时候已经分配好金额。比如一个10元的红包发给甲乙丙三个人&#xff0c;其实在红包发出去的时候&#xff0c;已经确定了第一个会领取多少&#xff0c;第二个会领取多少金额。而不是在领取的时候才计算的。下面贴出实现方法&#xff1a;publ…

iOS中Safari浏览器select下拉列表文字太长被截断的处理方法

网页中的select下拉列表&#xff0c;文字太长的话在iOS的Safari浏览器里会被自动截断&#xff0c;显示成下面这种&#xff1a; 安卓版的浏览器则没有这个问题。 如何让下拉列表中的文字在iOS的Safari浏览器里显示完整呢&#xff1f;答案是使用<optgroup></optgroup>…

HDU1042 N!(大整数类应用)

Problem Description Given an integer N(0 ≤ N ≤ 10000), your task is to calculate N!InputOne N in one line, process to the end of file.OutputFor each N, output N! in one line.Sample Input123Sample Output126Code&#xff1a;#include <iostream> #includ…

Java内部具有原子更新的动态热交换环境

有人可能会说上述标题可以简称为OSGi &#xff0c;我想在一开始就放弃这种思考过程。 对于OSGi而言&#xff0c;这不是一个冒犯&#xff0c;这是一个很棒的规范&#xff0c;在实现层或可用性层上都弄得一团糟&#xff0c;这就是我对OSGi的信念。 当然&#xff0c;您可以使用OS…

Css Secret 案例Demo全套

Css Secret 案例全套 github地址 案例地址 去年买了一本CSS揭秘的css专题书&#xff0c;该书揭示了 47 个鲜为人知的 CSS 技巧&#xff0c;主要内容包括背景与边框、形状、 视觉效果、字体排印、用户体验、结构与布局、过渡与动画等。去年买入时&#xff0c;就决定将里面所有…

底量超顶量超级大黑马指标源码_底量超顶量+地量买点_月线底量超顶量大牛股,底量超顶量超级大黑马,底量超顶量买入指标,后量超前量买入指标_指标公式分享交流论坛_理想论坛 - 股票论坛...

l 图形特征&#xff1a;(1) 当股价从头部滑落一段时间后&#xff0c;会有一个见底回升的过程。(2) 这个头部区间的成交量称为顶量&#xff0c;见底回升时的成交量称为底量。(3) 如果底量能大大地超过顶量&#xff0c;则较容易通过顶量造成的压力带。…

php var_export与var_dump 输出的不同

问题发现在跟踪yratings_get_targets的时候&#xff0c;error_log(var_export(yblog_mspconfiginit("ratings"),true));老是打印出yblog_mspconfiginit(“ratings”)的返回是NULL 导致我以为是无法建立和DB的连接&#xff0c;走错路了一天。最后才发现&#xff0c;这…

Servlet 开发

1. Servlet &#xff08;很久远的东西&#xff0c;但是现在学习原理&#xff09; html css js 前端页面&#xff08;静态的&#xff09; form action ".html" Servlet 允许将action属性设置为映射&#xff0c;通过映射找到相关的Servlet class 进行数据的处理。…

JAX-RS Bean验证错误消息国际化

Bean验证简介 JavaBeans验证&#xff08;Bean验证&#xff09;是一种新的验证模型&#xff0c;可作为Java EE 6平台的一部分使用。 约束条件支持Bean验证模型&#xff0c;该约束以注释的形式出现在JavaBeans组件&#xff08;例如托管Bean&#xff09;的字段&#xff0c;方法或类…

CentOS 7 Flannel的安装与配置

1. 安装前的准备 etcd 3.2.9 Docker 17.12.0-ce 三台机器10.100.97.236, 10.100.97.92, 10.100.97.81 etcd不同版本之间的差别还是挺大的&#xff0c;使用V3版本跟Flannel整合起来会有坑&#xff0c;下文详解。 2. 安装 sudo yum install -y flannel 安装后&#xff0c;版本是0…

给Ambari集群里安装基于Hive的大数据实时分析查询引擎工具Impala步骤(图文详解)...

不多说&#xff0c;直接上干货&#xff01; Impala和Hive的关系&#xff08;详解&#xff09; 扩展博客 给Clouderamanager集群里安装基于Hive的大数据实时分析查询引擎工具Impala步骤&#xff08;图文详解&#xff09; 参考 hortonworks ambari集成impala ambari hdp 集成 imp…

python调用ffmpeg合并_用ffmpeg命令处理mp4剪切与合并

1. 剪切&#xff1a;./ffmpeg -ss 00:00:06 -t 00:00:12 -i input.mp4 -vcodec copy -acodec copy output.mp4意思是从截取从6秒开始&#xff0c;时长为12秒的视频&#xff0c;格式不变&#xff0c;输入为input.mp4输出为output.mp4-vcodec copy -acodec copy : 编码格式不变2.…

html中常见的小问题(1)

问题&#xff1a;自适应高度的块级元素内添加图片后&#xff0c;其高度会比图片高度多出一块 简单代码如下&#xff1a; <!doctype html> <html><head><style>.box{width:533px;margin:100px auto;border:1px solid red;}</style></head>…

Java程序员的10个XML面试问答

XML面试问题在各种编程工作面试中非常受欢迎&#xff0c;包括针对Web开发人员的Java面试 。 XML是一项成熟的技术&#xff0c;通常用作从一个平台传输数据的标准。 XML面试问题包含来自各种XML技术的问题&#xff0c;例如XSLT&#xff0c;该技术用于转换XML文件&#xff0c; XP…

[转] Java, 使用 Reactor 进行反应式编程

https://www.ibm.com/developerworks/cn/java/j-cn-with-reactor-response-encode/index.html?lnkhmhm转载于:https://www.cnblogs.com/pekkle/p/8311749.html

JmeterAnt构建自动化测试平台

一、jmeter jmeter下载地址为&#xff1a;http://jmeter.apache.org/download_jmeter.cgi 下载完成后&#xff0c;解压文件&#xff0c; 加压后&#xff0c;到biin目录下&#xff0c;点击jmeter.bat启动jmeter(如果是linux环境&#xff0c;给jmeter.sh可执行的权限&#xff0c;…

input复选框checkbox默认样式纯css修改

修改之前的样式 修改之后的样式 html <input type"checkbox" name"btn" id"btn1"><label for"btn1">按钮1</label> css input[type"checkbox"]{width:20px;height:20px;display: inline-block;text-al…

c++word书签_「职场必备」干货!WORD办公软件快捷键,小编整理拿走不谢

小编工作时的照片&#xff0c;不上镜CtrlShiftSpacebar创建不间断空格Ctrl -(连字符)创建不间断连字符CtrlB使字符变为粗体CtrlI使字符变为斜体CtrlU为字符添加下划线CtrlShift缩小字号CtrlShift>增大字号CtrlQ删除段落格式CtrlSpacebar删除字符格式CtrlC复制所选文本或对象…

struts.xml 配置

1.ActionSupport是默认的Action类,若某个action节点没有配置class属性&#xff0c;则ActionSupport即为待执行的Action类 2.在手工完成字段验证&#xff0c;显示错误消息&#xff0c;国际化等情况下&#xff0c;推荐继承ActionSupport 3.result是action节点的子节点&#xff0c…