MongoDB
 sql >> Baza danych >  >> NoSQL >> MongoDB

Jak testować indeksy Mongo w testach integracyjnych?

Wiosną

Z MongoTemplate#indexOps(String collection) możesz pobrać listę IndexInfo , reprezentujący indeksy kolekcji MongoDB. Ponieważ jest to zwykła lista, możesz wykonać swoje asercje za pomocą kombinacji hasItem(Matcher<? super T> itemMatcher) i 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"))))));

Jeśli uznasz to za zbyt nieczytelne lub nieprzydatne, może być lepiej, jeśli skorzystasz z niestandardowego dopasowywania Hamcrest.




  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Zapytanie MongoDB na n-tym elemencie (indeksie zmiennej) tablicy poddokumentów

  2. Grupuj według stanu w MongoDB

  3. find_by_sql odpowiednik dla mongoid?

  4. Instalacja Mongodb nie powiodła się z homebrew i Xcode 8.1.1

  5. MongoDB pobiera tylko pasujące dokumenty podrzędne z dokumentu za pomocą c#