MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Come testare gli indici Mongo nei test di integrazione?

In primavera

Con MongoTemplate#indexOps(String collection) puoi recuperare un elenco di IndexInfo , che rappresentano gli indici della raccolta MongoDB. Poiché questo è un elenco normale, puoi fare le tue asserzioni con una combinazione di hasItem(Matcher<? super T> itemMatcher) e 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"))))));

Se lo trovi troppo illeggibile o poco pratico, potresti stare meglio con un abbinamento Hamcrest personalizzato.