Au printemps
Avec MongoTemplate#indexOps(String collection)
vous pouvez récupérer une liste de IndexInfo
, représentant les index de la collection MongoDB. Puisqu'il s'agit d'une liste régulière, vous pouvez faire vos assertions avec une combinaison de hasItem(Matcher<? super T> itemMatcher)
et 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"))))));
Si vous trouvez cela trop illisible ou peu pratique, vous feriez peut-être mieux d'utiliser un matcher Hamcrest personnalisé.