如何在集成测试中测试Mongo索引?

如何在集成测试中测试Mongo索引?,第1张

如何在集成测试中测试Mongo索引? 在春天

使用,

MongoTemplate#indexOps(Stringcollection)
您可以获取的列表
IndexInfo
,代表MongoDB集合的索引。由于这是一个常规列表,因此您可以结合使用
hasItem(Matcher<?super T> itemMatcher)
和进行断言
hasProperty(String propertyName, Matcher<?>valueMatcher)

final List<IndexInfo> indexes = mongoTemplate.indexOps("myCollection").getIndexInfo();assertThat(indexes, hasSize(3));assertThat(indexes, hasItem(hasProperty("name", is("_id_"))));assertThat(indexes, hasItem(hasProperty("name", is("index1"))));assertThat(indexes, hasItem(hasProperty("name", is("index2"))));assertThat(indexes, hasItem(hasProperty("indexFields", hasItem(hasProperty("key", is("field1"))))));

如果您觉得这太难以理解或不方便使用,最好使用自定义的Hamcrest匹配器



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5565647.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存