| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341 |
- /*
- * Copyright 2017 Google
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #import <FirebaseFirestore/FirebaseFirestore.h>
- #import <XCTest/XCTest.h>
- #import "Firestore/Example/Tests/Util/FSTEventAccumulator.h"
- #import "Firestore/Example/Tests/Util/FSTHelpers.h"
- #import "Firestore/Example/Tests/Util/FSTIntegrationTestCase.h"
- #include "Firestore/core/test/unit/testutil/testing_hooks_util.h"
- namespace {
- NSArray<NSString *> *SortedStringsNotIn(NSSet<NSString *> *set, NSSet<NSString *> *remove) {
- NSMutableSet<NSString *> *mutableSet = [NSMutableSet setWithSet:set];
- [mutableSet minusSet:remove];
- return [mutableSet.allObjects sortedArrayUsingSelector:@selector(caseInsensitiveCompare:)];
- }
- } // namespace
- @interface FIRQueryTests : FSTIntegrationTestCase
- @end
- @implementation FIRQueryTests
- /**
- * Checks that running the query while online (against the backend/emulator) results in the same
- * documents as running the query while offline. It also checks that both online and offline
- * query result is equal to the expected documents.
- *
- * @param query The query to check.
- * @param expectedDocs Array of document keys that are expected to match the query.
- */
- - (void)checkOnlineAndOfflineQuery:(FIRQuery *)query matchesResult:(NSArray *)expectedDocs {
- FIRQuerySnapshot *docsFromServer = [self readDocumentSetForRef:query
- source:FIRFirestoreSourceServer];
- FIRQuerySnapshot *docsFromCache = [self readDocumentSetForRef:query
- source:FIRFirestoreSourceCache];
- XCTAssertEqualObjects(FIRQuerySnapshotGetIDs(docsFromServer),
- FIRQuerySnapshotGetIDs(docsFromCache));
- XCTAssertEqualObjects(FIRQuerySnapshotGetIDs(docsFromCache), expectedDocs);
- }
- - (void)testLimitQueries {
- FIRCollectionReference *collRef = [self collectionRefWithDocuments:@{
- @"a" : @{@"k" : @"a"},
- @"b" : @{@"k" : @"b"},
- @"c" : @{@"k" : @"c"}
- }];
- FIRQuerySnapshot *snapshot = [self readDocumentSetForRef:[collRef queryLimitedTo:2]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot), (@[ @{@"k" : @"a"}, @{@"k" : @"b"} ]));
- }
- - (void)testLimitQueriesWithDescendingSortOrder {
- FIRCollectionReference *collRef = [self collectionRefWithDocuments:@{
- @"a" : @{@"k" : @"a", @"sort" : @0},
- @"b" : @{@"k" : @"b", @"sort" : @1},
- @"c" : @{@"k" : @"c", @"sort" : @1},
- @"d" : @{@"k" : @"d", @"sort" : @2},
- }];
- FIRQuerySnapshot *snapshot =
- [self readDocumentSetForRef:[[collRef queryOrderedByField:@"sort"
- descending:YES] queryLimitedTo:2]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot),
- (@[ @{@"k" : @"d", @"sort" : @2}, @{@"k" : @"c", @"sort" : @1} ]));
- }
- - (void)testLimitToLastMustAlsoHaveExplicitOrderBy {
- FIRCollectionReference *collRef = [self collectionRefWithDocuments:@{}];
- FIRQuery *query = [collRef queryLimitedToLast:2];
- FSTAssertThrows([query getDocumentsWithCompletion:^(FIRQuerySnapshot *, NSError *){
- }],
- @"limit(toLast:) queries require specifying at least one OrderBy() clause.");
- }
- // Two queries that mapped to the same target ID are referred to as
- // "mirror queries". An example for a mirror query is a limitToLast()
- // query and a limit() query that share the same backend Target ID.
- // Since limitToLast() queries are sent to the backend with a modified
- // orderBy() clause, they can map to the same target representation as
- // limit() query, even if both queries appear separate to the user.
- - (void)testListenUnlistenRelistenSequenceOfMirrorQueries {
- FIRCollectionReference *collRef = [self collectionRefWithDocuments:@{
- @"a" : @{@"k" : @"a", @"sort" : @0},
- @"b" : @{@"k" : @"b", @"sort" : @1},
- @"c" : @{@"k" : @"c", @"sort" : @1},
- @"d" : @{@"k" : @"d", @"sort" : @2},
- }];
- // Setup a `limit` query.
- FIRQuery *limit = [[collRef queryOrderedByField:@"sort" descending:NO] queryLimitedTo:2];
- FSTEventAccumulator *limitAccumulator = [FSTEventAccumulator accumulatorForTest:self];
- id<FIRListenerRegistration> limitRegistration =
- [limit addSnapshotListener:limitAccumulator.valueEventHandler];
- // Setup a mirroring `limitToLast` query.
- FIRQuery *limitToLast = [[collRef queryOrderedByField:@"sort"
- descending:YES] queryLimitedToLast:2];
- FSTEventAccumulator *limitToLastAccumulator = [FSTEventAccumulator accumulatorForTest:self];
- id<FIRListenerRegistration> limitToLastRegistration =
- [limitToLast addSnapshotListener:limitToLastAccumulator.valueEventHandler];
- // Verify both queries get expected result.
- FIRQuerySnapshot *snapshot = [limitAccumulator awaitEventWithName:@"Snapshot"];
- NSArray *expected = @[ @{@"k" : @"a", @"sort" : @0}, @{@"k" : @"b", @"sort" : @1} ];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot), expected);
- snapshot = [limitToLastAccumulator awaitEventWithName:@"Snapshot"];
- expected = @[ @{@"k" : @"b", @"sort" : @1}, @{@"k" : @"a", @"sort" : @0} ];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot), expected);
- // Unlisten then re-listen limit query.
- [limitRegistration remove];
- [limit addSnapshotListener:[limitAccumulator valueEventHandler]];
- // Verify limit query still works.
- snapshot = [limitAccumulator awaitEventWithName:@"Snapshot"];
- expected = @[ @{@"k" : @"a", @"sort" : @0}, @{@"k" : @"b", @"sort" : @1} ];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot), expected);
- // Add a document that would change the result set.
- [self addDocumentRef:collRef data:@{@"k" : @"e", @"sort" : @-1}];
- // Verify both queries get expected result.
- snapshot = [limitAccumulator awaitEventWithName:@"Snapshot"];
- expected = @[ @{@"k" : @"e", @"sort" : @-1}, @{@"k" : @"a", @"sort" : @0} ];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot), expected);
- snapshot = [limitToLastAccumulator awaitEventWithName:@"Snapshot"];
- expected = @[ @{@"k" : @"a", @"sort" : @0}, @{@"k" : @"e", @"sort" : @-1} ];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot), expected);
- // Unlisten to limitToLast, update a doc, then relisten to limitToLast
- [limitToLastRegistration remove];
- [self updateDocumentRef:[collRef documentWithPath:@"a"] data:@{@"k" : @"a", @"sort" : @-2}];
- [limitToLast addSnapshotListener:[limitToLastAccumulator valueEventHandler]];
- // Verify both queries get expected result.
- snapshot = [limitAccumulator awaitEventWithName:@"Snapshot"];
- expected = @[ @{@"k" : @"a", @"sort" : @-2}, @{@"k" : @"e", @"sort" : @-1} ];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot), expected);
- snapshot = [limitToLastAccumulator awaitEventWithName:@"Snapshot"];
- expected = @[ @{@"k" : @"e", @"sort" : @-1}, @{@"k" : @"a", @"sort" : @-2} ];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot), expected);
- }
- - (void)testLimitToLastQueriesWithCursors {
- FIRCollectionReference *collRef = [self collectionRefWithDocuments:@{
- @"a" : @{@"k" : @"a", @"sort" : @0},
- @"b" : @{@"k" : @"b", @"sort" : @1},
- @"c" : @{@"k" : @"c", @"sort" : @1},
- @"d" : @{@"k" : @"d", @"sort" : @2},
- }];
- FIRQuerySnapshot *snapshot =
- [self readDocumentSetForRef:[[[collRef queryOrderedByField:@"sort"] queryLimitedToLast:3]
- queryEndingBeforeValues:@[ @2 ]]];
- XCTAssertEqualObjects(
- FIRQuerySnapshotGetData(snapshot), (@[
- @{@"k" : @"a", @"sort" : @0}, @{@"k" : @"b", @"sort" : @1}, @{@"k" : @"c", @"sort" : @1}
- ]));
- snapshot = [self readDocumentSetForRef:[[[collRef queryOrderedByField:@"sort"]
- queryLimitedToLast:3] queryEndingAtValues:@[ @1 ]]];
- XCTAssertEqualObjects(
- FIRQuerySnapshotGetData(snapshot), (@[
- @{@"k" : @"a", @"sort" : @0}, @{@"k" : @"b", @"sort" : @1}, @{@"k" : @"c", @"sort" : @1}
- ]));
- snapshot = [self readDocumentSetForRef:[[[collRef queryOrderedByField:@"sort"]
- queryLimitedToLast:3] queryStartingAtValues:@[ @2 ]]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot), (@[ @{@"k" : @"d", @"sort" : @2} ]));
- snapshot =
- [self readDocumentSetForRef:[[[collRef queryOrderedByField:@"sort"] queryLimitedToLast:3]
- queryStartingAfterValues:@[ @0 ]]];
- XCTAssertEqualObjects(
- FIRQuerySnapshotGetData(snapshot), (@[
- @{@"k" : @"b", @"sort" : @1}, @{@"k" : @"c", @"sort" : @1}, @{@"k" : @"d", @"sort" : @2}
- ]));
- snapshot =
- [self readDocumentSetForRef:[[[collRef queryOrderedByField:@"sort"] queryLimitedToLast:3]
- queryStartingAfterValues:@[ @-1 ]]];
- XCTAssertEqualObjects(
- FIRQuerySnapshotGetData(snapshot), (@[
- @{@"k" : @"b", @"sort" : @1}, @{@"k" : @"c", @"sort" : @1}, @{@"k" : @"d", @"sort" : @2}
- ]));
- }
- - (void)testKeyOrderIsDescendingForDescendingInequality {
- FIRCollectionReference *collRef = [self collectionRefWithDocuments:@{
- @"a" : @{@"foo" : @42},
- @"b" : @{@"foo" : @42.0},
- @"c" : @{@"foo" : @42},
- @"d" : @{@"foo" : @21},
- @"e" : @{@"foo" : @21.0},
- @"f" : @{@"foo" : @66},
- @"g" : @{@"foo" : @66.0},
- }];
- FIRQuerySnapshot *snapshot =
- [self readDocumentSetForRef:[[collRef queryWhereField:@"foo"
- isGreaterThan:@21] queryOrderedByField:@"foo"
- descending:YES]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetIDs(snapshot), (@[ @"g", @"f", @"c", @"b", @"a" ]));
- }
- - (void)testUnaryFilterQueries {
- FIRCollectionReference *collRef = [self collectionRefWithDocuments:@{
- @"a" : @{@"null" : [NSNull null], @"nan" : @(NAN)},
- @"b" : @{@"null" : [NSNull null], @"nan" : @0},
- @"c" : @{@"null" : @NO, @"nan" : @(NAN)}
- }];
- FIRQuerySnapshot *results =
- [self readDocumentSetForRef:[[collRef queryWhereField:@"null"
- isEqualTo:[NSNull null]] queryWhereField:@"nan"
- isEqualTo:@(NAN)]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(results),
- (@[ @{@"null" : [NSNull null], @"nan" : @(NAN)} ]));
- }
- - (void)testQueryWithFieldPaths {
- FIRCollectionReference *collRef = [self
- collectionRefWithDocuments:@{@"a" : @{@"a" : @1}, @"b" : @{@"a" : @2}, @"c" : @{@"a" : @3}}];
- FIRQuery *query = [collRef queryWhereFieldPath:[[FIRFieldPath alloc] initWithFields:@[ @"a" ]]
- isLessThan:@3];
- query = [query queryOrderedByFieldPath:[[FIRFieldPath alloc] initWithFields:@[ @"a" ]]
- descending:YES];
- FIRQuerySnapshot *snapshot = [self readDocumentSetForRef:query];
- XCTAssertEqualObjects(FIRQuerySnapshotGetIDs(snapshot), (@[ @"b", @"a" ]));
- }
- - (void)testQueryWithPredicate {
- FIRCollectionReference *collRef = [self
- collectionRefWithDocuments:@{@"a" : @{@"a" : @1}, @"b" : @{@"a" : @2}, @"c" : @{@"a" : @3}}];
- NSPredicate *predicate = [NSPredicate predicateWithFormat:@"a < 3"];
- FIRQuery *query = [collRef queryFilteredUsingPredicate:predicate];
- query = [query queryOrderedByFieldPath:[[FIRFieldPath alloc] initWithFields:@[ @"a" ]]
- descending:YES];
- FIRQuerySnapshot *snapshot = [self readDocumentSetForRef:query];
- XCTAssertEqualObjects(FIRQuerySnapshotGetIDs(snapshot), (@[ @"b", @"a" ]));
- }
- - (void)testFilterOnInfinity {
- FIRCollectionReference *collRef = [self collectionRefWithDocuments:@{
- @"a" : @{@"inf" : @(INFINITY)},
- @"b" : @{@"inf" : @(-INFINITY)}
- }];
- FIRQuerySnapshot *results = [self readDocumentSetForRef:[collRef queryWhereField:@"inf"
- isEqualTo:@(INFINITY)]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(results), (@[ @{@"inf" : @(INFINITY)} ]));
- }
- - (void)testCanExplicitlySortByDocumentID {
- NSDictionary *testDocs = @{
- @"a" : @{@"key" : @"a"},
- @"b" : @{@"key" : @"b"},
- @"c" : @{@"key" : @"c"},
- };
- FIRCollectionReference *collection = [self collectionRefWithDocuments:testDocs];
- // Ideally this would be descending to validate it's different than
- // the default, but that requires an extra index
- FIRQuerySnapshot *docs =
- [self readDocumentSetForRef:[collection queryOrderedByFieldPath:[FIRFieldPath documentID]]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(docs),
- (@[ testDocs[@"a"], testDocs[@"b"], testDocs[@"c"] ]));
- }
- - (void)testCanQueryByDocumentID {
- NSDictionary *testDocs = @{
- @"aa" : @{@"key" : @"aa"},
- @"ab" : @{@"key" : @"ab"},
- @"ba" : @{@"key" : @"ba"},
- @"bb" : @{@"key" : @"bb"},
- };
- FIRCollectionReference *collection = [self collectionRefWithDocuments:testDocs];
- FIRQuerySnapshot *docs =
- [self readDocumentSetForRef:[collection queryWhereFieldPath:[FIRFieldPath documentID]
- isEqualTo:@"ab"]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(docs), (@[ testDocs[@"ab"] ]));
- }
- - (void)testCanQueryByDocumentIDs {
- NSDictionary *testDocs = @{
- @"aa" : @{@"key" : @"aa"},
- @"ab" : @{@"key" : @"ab"},
- @"ba" : @{@"key" : @"ba"},
- @"bb" : @{@"key" : @"bb"},
- };
- FIRCollectionReference *collection = [self collectionRefWithDocuments:testDocs];
- FIRQuerySnapshot *docs =
- [self readDocumentSetForRef:[collection queryWhereFieldPath:[FIRFieldPath documentID]
- isEqualTo:@"ab"]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(docs), (@[ testDocs[@"ab"] ]));
- docs = [self readDocumentSetForRef:[[collection queryWhereFieldPath:[FIRFieldPath documentID]
- isGreaterThan:@"aa"]
- queryWhereFieldPath:[FIRFieldPath documentID]
- isLessThanOrEqualTo:@"ba"]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(docs), (@[ testDocs[@"ab"], testDocs[@"ba"] ]));
- }
- - (void)testCanQueryByDocumentIDsUsingRefs {
- NSDictionary *testDocs = @{
- @"aa" : @{@"key" : @"aa"},
- @"ab" : @{@"key" : @"ab"},
- @"ba" : @{@"key" : @"ba"},
- @"bb" : @{@"key" : @"bb"},
- };
- FIRCollectionReference *collection = [self collectionRefWithDocuments:testDocs];
- FIRQuerySnapshot *docs = [self
- readDocumentSetForRef:[collection queryWhereFieldPath:[FIRFieldPath documentID]
- isEqualTo:[collection documentWithPath:@"ab"]]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(docs), (@[ testDocs[@"ab"] ]));
- docs = [self
- readDocumentSetForRef:[[collection queryWhereFieldPath:[FIRFieldPath documentID]
- isGreaterThan:[collection documentWithPath:@"aa"]]
- queryWhereFieldPath:[FIRFieldPath documentID]
- isLessThanOrEqualTo:[collection documentWithPath:@"ba"]]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(docs), (@[ testDocs[@"ab"], testDocs[@"ba"] ]));
- }
- - (void)testWatchSurvivesNetworkDisconnect {
- XCTestExpectation *testExpectiation =
- [self expectationWithDescription:@"testWatchSurvivesNetworkDisconnect"];
- FIRCollectionReference *collectionRef = [self collectionRef];
- FIRDocumentReference *docRef = [collectionRef documentWithAutoID];
- FIRFirestore *firestore = collectionRef.firestore;
- [collectionRef
- addSnapshotListenerWithIncludeMetadataChanges:YES
- listener:^(FIRQuerySnapshot *snapshot, NSError *error) {
- XCTAssertNil(error);
- if (!snapshot.empty && !snapshot.metadata.fromCache) {
- [testExpectiation fulfill];
- }
- }];
- [firestore disableNetworkWithCompletion:^(NSError *error) {
- XCTAssertNil(error);
- [docRef setData:@{@"foo" : @"bar"}];
- [firestore enableNetworkWithCompletion:^(NSError *error) {
- XCTAssertNil(error);
- }];
- }];
- [self awaitExpectations];
- }
- - (void)testQueriesFireFromCacheWhenOffline {
- NSDictionary *testDocs = @{
- @"a" : @{@"foo" : @1},
- };
- FIRCollectionReference *collection = [self collectionRefWithDocuments:testDocs];
- id<FIRListenerRegistration> registration = [collection
- addSnapshotListenerWithIncludeMetadataChanges:YES
- listener:self.eventAccumulator.valueEventHandler];
- FIRQuerySnapshot *querySnap = [self.eventAccumulator awaitEventWithName:@"initial event"];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(querySnap), @[ @{@"foo" : @1} ]);
- XCTAssertEqual(querySnap.metadata.isFromCache, NO);
- [self disableNetwork];
- querySnap = [self.eventAccumulator awaitEventWithName:@"offline event with isFromCache=YES"];
- XCTAssertEqual(querySnap.metadata.isFromCache, YES);
- [self enableNetwork];
- querySnap = [self.eventAccumulator awaitEventWithName:@"back online event with isFromCache=NO"];
- XCTAssertEqual(querySnap.metadata.isFromCache, NO);
- [registration remove];
- }
- - (void)testQueriesCanRaiseInitialSnapshotFromCachedEmptyResults {
- FIRCollectionReference *collection = [self collectionRefWithDocuments:@{}];
- // Populate the cache with empty query result.
- FIRQuerySnapshot *querySnapshotA = [self readDocumentSetForRef:collection];
- XCTAssertFalse(querySnapshotA.metadata.fromCache);
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(querySnapshotA), @[]);
- // Add a snapshot listener whose first event should be raised from cache.
- id<FIRListenerRegistration> registration = [collection
- addSnapshotListenerWithIncludeMetadataChanges:YES
- listener:self.eventAccumulator.valueEventHandler];
- FIRQuerySnapshot *querySnapshotB = [self.eventAccumulator awaitEventWithName:@"initial event"];
- XCTAssertTrue(querySnapshotB.metadata.fromCache);
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(querySnapshotB), @[]);
- [registration remove];
- }
- - (void)testQueriesCanRaiseInitialSnapshotFromEmptyDueToDeleteCachedResults {
- NSDictionary *testDocs = @{
- @"a" : @{@"foo" : @1},
- };
- FIRCollectionReference *collection = [self collectionRefWithDocuments:testDocs];
- // Populate the cache with a single document.
- FIRQuerySnapshot *querySnapshotA = [self readDocumentSetForRef:collection];
- XCTAssertFalse(querySnapshotA.metadata.fromCache);
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(querySnapshotA), @[ @{@"foo" : @1} ]);
- // Delete the document, making the cached query result empty.
- FIRDocumentReference *docRef = [collection documentWithPath:@"a"];
- [self deleteDocumentRef:docRef];
- // Add a snapshot listener whose first event should be raised from cache.
- id<FIRListenerRegistration> registration = [collection
- addSnapshotListenerWithIncludeMetadataChanges:YES
- listener:self.eventAccumulator.valueEventHandler];
- FIRQuerySnapshot *querySnapshotB = [self.eventAccumulator awaitEventWithName:@"initial event"];
- XCTAssertTrue(querySnapshotB.metadata.fromCache);
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(querySnapshotB), @[]);
- [registration remove];
- }
- - (void)testDocumentChangesUseNSNotFound {
- NSDictionary *testDocs = @{
- @"a" : @{@"foo" : @1},
- };
- FIRCollectionReference *collection = [self collectionRefWithDocuments:testDocs];
- id<FIRListenerRegistration> registration =
- [collection addSnapshotListener:self.eventAccumulator.valueEventHandler];
- FIRQuerySnapshot *querySnap = [self.eventAccumulator awaitEventWithName:@"initial event"];
- XCTAssertEqual(querySnap.documentChanges.count, 1ul);
- FIRDocumentChange *change = querySnap.documentChanges[0];
- XCTAssertEqual(change.oldIndex, NSNotFound);
- XCTAssertEqual(change.newIndex, 0ul);
- FIRDocumentReference *doc = change.document.reference;
- [self deleteDocumentRef:doc];
- querySnap = [self.eventAccumulator awaitEventWithName:@"delete"];
- XCTAssertEqual(querySnap.documentChanges.count, 1ul);
- change = querySnap.documentChanges[0];
- XCTAssertEqual(change.oldIndex, 0ul);
- XCTAssertEqual(change.newIndex, NSNotFound);
- [registration remove];
- }
- - (void)testCanHaveMultipleMutationsWhileOffline {
- FIRCollectionReference *col = [self collectionRef];
- // set a few docs to known values
- NSDictionary *initialDocs = @{@"doc1" : @{@"key1" : @"value1"}, @"doc2" : @{@"key2" : @"value2"}};
- [self writeAllDocuments:initialDocs toCollection:col];
- // go offline for the rest of this test
- [self disableNetwork];
- // apply *multiple* mutations while offline
- [[col documentWithPath:@"doc1"] setData:@{@"key1b" : @"value1b"}];
- [[col documentWithPath:@"doc2"] setData:@{@"key2b" : @"value2b"}];
- FIRQuerySnapshot *result = [self readDocumentSetForRef:col];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(result), (@[
- @{@"key1b" : @"value1b"},
- @{@"key2b" : @"value2b"},
- ]));
- }
- - (void)testQueriesCanUseNotEqualFilters {
- // These documents are ordered by value in "zip" since notEquals filter is an inequality, which
- // results in documents being sorted by value.
- NSDictionary *testDocs = @{
- @"a" : @{@"zip" : @(NAN)},
- @"b" : @{@"zip" : @91102},
- @"c" : @{@"zip" : @98101},
- @"d" : @{@"zip" : @98103},
- @"e" : @{@"zip" : @[ @98101 ]},
- @"f" : @{@"zip" : @[ @98101, @98102 ]},
- @"g" : @{@"zip" : @[ @"98101", @{@"zip" : @98101} ]},
- @"h" : @{@"zip" : @{@"code" : @500}},
- @"i" : @{@"zip" : [NSNull null]},
- @"j" : @{@"code" : @500},
- };
- FIRCollectionReference *collection = [self collectionRefWithDocuments:testDocs];
- // Search for zips not matching 98101.
- FIRQuerySnapshot *snapshot = [self readDocumentSetForRef:[collection queryWhereField:@"zip"
- isNotEqualTo:@98101]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot), (@[
- testDocs[@"a"], testDocs[@"b"], testDocs[@"d"], testDocs[@"e"],
- testDocs[@"f"], testDocs[@"g"], testDocs[@"h"]
- ]));
- // With objects.
- snapshot = [self readDocumentSetForRef:[collection queryWhereField:@"zip"
- isNotEqualTo:@{@"code" : @500}]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot), (@[
- testDocs[@"a"], testDocs[@"b"], testDocs[@"c"], testDocs[@"d"],
- testDocs[@"e"], testDocs[@"f"], testDocs[@"g"]
- ]));
- // With null.
- snapshot = [self readDocumentSetForRef:[collection queryWhereField:@"zip"
- isNotEqualTo:@[ [NSNull null] ]]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot), (@[
- testDocs[@"a"], testDocs[@"b"], testDocs[@"c"], testDocs[@"d"],
- testDocs[@"e"], testDocs[@"f"], testDocs[@"g"], testDocs[@"h"]
- ]));
- // With NAN.
- snapshot = [self readDocumentSetForRef:[collection queryWhereField:@"zip" isNotEqualTo:@(NAN)]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot), (@[
- testDocs[@"b"], testDocs[@"c"], testDocs[@"d"], testDocs[@"e"],
- testDocs[@"f"], testDocs[@"g"], testDocs[@"h"]
- ]));
- }
- - (void)testQueriesCanUseNotEqualFiltersWithDocIds {
- NSDictionary *testDocs = @{
- @"aa" : @{@"key" : @"aa"},
- @"ab" : @{@"key" : @"ab"},
- @"ba" : @{@"key" : @"ba"},
- @"bb" : @{@"key" : @"bb"},
- };
- FIRCollectionReference *collection = [self collectionRefWithDocuments:testDocs];
- FIRQuerySnapshot *snapshot =
- [self readDocumentSetForRef:[collection queryWhereFieldPath:[FIRFieldPath documentID]
- isNotEqualTo:@"aa"]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot),
- (@[ testDocs[@"ab"], testDocs[@"ba"], testDocs[@"bb"] ]));
- }
- - (void)testQueriesCanUseArrayContainsFilters {
- NSDictionary *testDocs = @{
- @"a" : @{@"array" : @[ @42 ]},
- @"b" : @{@"array" : @[ @"a", @42, @"c" ]},
- @"c" : @{@"array" : @[ @41.999, @"42", @{@"a" : @[ @42 ]} ]},
- @"d" : @{@"array" : @[ @42 ], @"array2" : @[ @"bingo" ]},
- @"e" : @{@"array" : @[ [NSNull null] ]},
- @"f" : @{@"array" : @[ @(NAN) ]},
- };
- FIRCollectionReference *collection = [self collectionRefWithDocuments:testDocs];
- // Search for 42
- FIRQuerySnapshot *snapshot = [self readDocumentSetForRef:[collection queryWhereField:@"array"
- arrayContains:@42]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot),
- (@[ testDocs[@"a"], testDocs[@"b"], testDocs[@"d"] ]));
- // With null.
- snapshot = [self readDocumentSetForRef:[collection queryWhereField:@"array"
- arrayContains:[NSNull null]]];
- XCTAssertTrue(snapshot.isEmpty);
- // With NAN.
- snapshot = [self readDocumentSetForRef:[collection queryWhereField:@"array"
- arrayContains:@(NAN)]];
- XCTAssertTrue(snapshot.isEmpty);
- }
- - (void)testQueriesCanUseInFilters {
- NSDictionary *testDocs = @{
- @"a" : @{@"zip" : @98101},
- @"b" : @{@"zip" : @91102},
- @"c" : @{@"zip" : @98103},
- @"d" : @{@"zip" : @[ @98101 ]},
- @"e" : @{@"zip" : @[ @"98101", @{@"zip" : @98101} ]},
- @"f" : @{@"zip" : @{@"code" : @500}},
- @"g" : @{@"zip" : @[ @98101, @98102 ]},
- @"h" : @{@"zip" : [NSNull null]},
- @"i" : @{@"zip" : @(NAN)}
- };
- FIRCollectionReference *collection = [self collectionRefWithDocuments:testDocs];
- // Search for zips matching 98101, 98103, and [98101, 98102].
- FIRQuerySnapshot *snapshot = [self
- readDocumentSetForRef:[collection queryWhereField:@"zip"
- in:@[ @98101, @98103, @[ @98101, @98102 ] ]]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot),
- (@[ testDocs[@"a"], testDocs[@"c"], testDocs[@"g"] ]));
- // With objects
- snapshot = [self readDocumentSetForRef:[collection queryWhereField:@"zip"
- in:@[ @{@"code" : @500} ]]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot), (@[ testDocs[@"f"] ]));
- // With null.
- snapshot = [self readDocumentSetForRef:[collection queryWhereField:@"zip" in:@[ [NSNull null] ]]];
- XCTAssertTrue(snapshot.isEmpty);
- // With null and a value.
- snapshot = [self readDocumentSetForRef:[collection queryWhereField:@"zip"
- in:@[ [NSNull null], @98101 ]]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot), (@[ testDocs[@"a"] ]));
- // With NAN.
- snapshot = [self readDocumentSetForRef:[collection queryWhereField:@"zip" in:@[ @(NAN) ]]];
- XCTAssertTrue(snapshot.isEmpty);
- // With NAN and a value.
- snapshot = [self readDocumentSetForRef:[collection queryWhereField:@"zip"
- in:@[ @(NAN), @98101 ]]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot), (@[ testDocs[@"a"] ]));
- }
- - (void)testQueriesCanUseInFiltersWithDocIds {
- NSDictionary *testDocs = @{
- @"aa" : @{@"key" : @"aa"},
- @"ab" : @{@"key" : @"ab"},
- @"ba" : @{@"key" : @"ba"},
- @"bb" : @{@"key" : @"bb"},
- };
- FIRCollectionReference *collection = [self collectionRefWithDocuments:testDocs];
- FIRQuerySnapshot *snapshot =
- [self readDocumentSetForRef:[collection queryWhereFieldPath:[FIRFieldPath documentID]
- in:@[ @"aa", @"ab" ]]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot), (@[ testDocs[@"aa"], testDocs[@"ab"] ]));
- }
- - (void)testQueriesCanUseNotInFilters {
- // These documents are ordered by value in "zip" since the NOT_IN filter is an inequality, which
- // results in documents being sorted by value.
- NSDictionary *testDocs = @{
- @"a" : @{@"zip" : @(NAN)},
- @"b" : @{@"zip" : @91102},
- @"c" : @{@"zip" : @98101},
- @"d" : @{@"zip" : @98103},
- @"e" : @{@"zip" : @[ @98101 ]},
- @"f" : @{@"zip" : @[ @98101, @98102 ]},
- @"g" : @{@"zip" : @[ @"98101", @{@"zip" : @98101} ]},
- @"h" : @{@"zip" : @{@"code" : @500}},
- @"i" : @{@"zip" : [NSNull null]},
- @"j" : @{@"code" : @500},
- };
- FIRCollectionReference *collection = [self collectionRefWithDocuments:testDocs];
- // Search for zips not matching 98101, 98103, and [98101, 98102].
- FIRQuerySnapshot *snapshot = [self
- readDocumentSetForRef:[collection queryWhereField:@"zip"
- notIn:@[ @98101, @98103, @[ @98101, @98102 ] ]]];
- XCTAssertEqualObjects(
- FIRQuerySnapshotGetData(snapshot),
- (@[ testDocs[@"a"], testDocs[@"b"], testDocs[@"e"], testDocs[@"g"], testDocs[@"h"] ]));
- // With objects.
- snapshot = [self readDocumentSetForRef:[collection queryWhereField:@"zip"
- notIn:@[ @{@"code" : @500} ]]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot), (@[
- testDocs[@"a"], testDocs[@"b"], testDocs[@"c"], testDocs[@"d"],
- testDocs[@"e"], testDocs[@"f"], testDocs[@"g"]
- ]));
- // With null.
- snapshot = [self readDocumentSetForRef:[collection queryWhereField:@"zip"
- notIn:@[ [NSNull null] ]]];
- XCTAssertTrue(snapshot.isEmpty);
- // With NAN.
- snapshot = [self readDocumentSetForRef:[collection queryWhereField:@"zip" notIn:@[ @(NAN) ]]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot), (@[
- testDocs[@"b"], testDocs[@"c"], testDocs[@"d"], testDocs[@"e"],
- testDocs[@"f"], testDocs[@"g"], testDocs[@"h"]
- ]));
- // With NAN and a number.
- snapshot = [self readDocumentSetForRef:[collection queryWhereField:@"zip"
- notIn:@[ @(NAN), @98101 ]]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot), (@[
- testDocs[@"b"], testDocs[@"d"], testDocs[@"e"], testDocs[@"f"],
- testDocs[@"g"], testDocs[@"h"]
- ]));
- }
- - (void)testQueriesCanUseNotInFiltersWithDocIds {
- NSDictionary *testDocs = @{
- @"aa" : @{@"key" : @"aa"},
- @"ab" : @{@"key" : @"ab"},
- @"ba" : @{@"key" : @"ba"},
- @"bb" : @{@"key" : @"bb"},
- };
- FIRCollectionReference *collection = [self collectionRefWithDocuments:testDocs];
- FIRQuerySnapshot *snapshot =
- [self readDocumentSetForRef:[collection queryWhereFieldPath:[FIRFieldPath documentID]
- notIn:@[ @"aa", @"ab" ]]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot), (@[ testDocs[@"ba"], testDocs[@"bb"] ]));
- }
- - (void)testQueriesCanUseArrayContainsAnyFilters {
- NSDictionary *testDocs = @{
- @"a" : @{@"array" : @[ @42 ]},
- @"b" : @{@"array" : @[ @"a", @42, @"c" ]},
- @"c" : @{@"array" : @[ @41.999, @"42", @{@"a" : @[ @42 ]} ]},
- @"d" : @{@"array" : @[ @42 ], @"array2" : @[ @"bingo" ]},
- @"e" : @{@"array" : @[ @43 ]},
- @"f" : @{@"array" : @[ @{@"a" : @42} ]},
- @"g" : @{@"array" : @42},
- @"h" : @{@"array" : @[ [NSNull null] ]},
- @"i" : @{@"array" : @[ @(NAN) ]},
- };
- FIRCollectionReference *collection = [self collectionRefWithDocuments:testDocs];
- // Search for zips matching [42, 43].
- FIRQuerySnapshot *snapshot = [self
- readDocumentSetForRef:[collection queryWhereField:@"array" arrayContainsAny:@[ @42, @43 ]]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot),
- (@[ testDocs[@"a"], testDocs[@"b"], testDocs[@"d"], testDocs[@"e"] ]));
- // With objects.
- snapshot = [self readDocumentSetForRef:[collection queryWhereField:@"array"
- arrayContainsAny:@[ @{@"a" : @42} ]]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot), (@[
- testDocs[@"f"],
- ]));
- // With null.
- snapshot = [self readDocumentSetForRef:[collection queryWhereField:@"array"
- arrayContainsAny:@[ [NSNull null] ]]];
- XCTAssertTrue(snapshot.isEmpty);
- // With null and a value.
- snapshot = [self readDocumentSetForRef:[collection queryWhereField:@"array"
- arrayContainsAny:@[ [NSNull null], @43 ]]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot), (@[ testDocs[@"e"] ]));
- // With NAN.
- snapshot = [self readDocumentSetForRef:[collection queryWhereField:@"array"
- arrayContainsAny:@[ @(NAN) ]]];
- XCTAssertTrue(snapshot.isEmpty);
- // With NAN and a value.
- snapshot = [self readDocumentSetForRef:[collection queryWhereField:@"array"
- arrayContainsAny:@[ @(NAN), @43 ]]];
- XCTAssertEqualObjects(FIRQuerySnapshotGetData(snapshot), (@[ testDocs[@"e"] ]));
- }
- - (void)testCollectionGroupQueries {
- // Use .document() to get a random collection group name to use but ensure it starts with 'b'
- // for predictable ordering.
- NSString *collectionGroup = [NSString
- stringWithFormat:@"b%@", [[self.db collectionWithPath:@"foo"] documentWithAutoID].documentID];
- NSArray *docPaths = @[
- @"abc/123/${collectionGroup}/cg-doc1", @"abc/123/${collectionGroup}/cg-doc2",
- @"${collectionGroup}/cg-doc3", @"${collectionGroup}/cg-doc4",
- @"def/456/${collectionGroup}/cg-doc5", @"${collectionGroup}/virtual-doc/nested-coll/not-cg-doc",
- @"x${collectionGroup}/not-cg-doc", @"${collectionGroup}x/not-cg-doc",
- @"abc/123/${collectionGroup}x/not-cg-doc", @"abc/123/x${collectionGroup}/not-cg-doc",
- @"abc/${collectionGroup}"
- ];
- FIRWriteBatch *batch = [self.db batch];
- for (NSString *docPath in docPaths) {
- NSString *path = [docPath stringByReplacingOccurrencesOfString:@"${collectionGroup}"
- withString:collectionGroup];
- [batch setData:@{@"x" : @1} forDocument:[self.db documentWithPath:path]];
- }
- XCTestExpectation *expectation = [self expectationWithDescription:@"batch written"];
- [batch commitWithCompletion:^(NSError *error) {
- XCTAssertNil(error);
- [expectation fulfill];
- }];
- [self awaitExpectations];
- FIRQuerySnapshot *querySnapshot =
- [self readDocumentSetForRef:[self.db collectionGroupWithID:collectionGroup]];
- NSArray<NSString *> *ids = FIRQuerySnapshotGetIDs(querySnapshot);
- XCTAssertEqualObjects(ids, (@[ @"cg-doc1", @"cg-doc2", @"cg-doc3", @"cg-doc4", @"cg-doc5" ]));
- }
- - (void)testCollectionGroupQueriesWithStartAtEndAtWithArbitraryDocumentIDs {
- // Use .document() to get a random collection group name to use but ensure it starts with 'b'
- // for predictable ordering.
- NSString *collectionGroup = [NSString
- stringWithFormat:@"b%@", [[self.db collectionWithPath:@"foo"] documentWithAutoID].documentID];
- NSArray *docPaths = @[
- @"a/a/${collectionGroup}/cg-doc1", @"a/b/a/b/${collectionGroup}/cg-doc2",
- @"a/b/${collectionGroup}/cg-doc3", @"a/b/c/d/${collectionGroup}/cg-doc4",
- @"a/c/${collectionGroup}/cg-doc5", @"${collectionGroup}/cg-doc6", @"a/b/nope/nope"
- ];
- FIRWriteBatch *batch = [self.db batch];
- for (NSString *docPath in docPaths) {
- NSString *path = [docPath stringByReplacingOccurrencesOfString:@"${collectionGroup}"
- withString:collectionGroup];
- [batch setData:@{@"x" : @1} forDocument:[self.db documentWithPath:path]];
- }
- XCTestExpectation *expectation = [self expectationWithDescription:@"batch written"];
- [batch commitWithCompletion:^(NSError *error) {
- XCTAssertNil(error);
- [expectation fulfill];
- }];
- [self awaitExpectations];
- FIRQuerySnapshot *querySnapshot = [self
- readDocumentSetForRef:[[[[self.db collectionGroupWithID:collectionGroup]
- queryOrderedByFieldPath:[FIRFieldPath documentID]]
- queryStartingAfterValues:@[ @"a/b" ]]
- queryEndingBeforeValues:@[
- [NSString stringWithFormat:@"a/b/%@/cg-doc3", collectionGroup]
- ]]];
- NSArray<NSString *> *ids = FIRQuerySnapshotGetIDs(querySnapshot);
- XCTAssertEqualObjects(ids, (@[ @"cg-doc2" ]));
- }
- - (void)testCollectionGroupQueriesWithWhereFiltersOnArbitraryDocumentIDs {
- // Use .document() to get a random collection group name to use but ensure it starts with 'b'
- // for predictable ordering.
- NSString *collectionGroup = [NSString
- stringWithFormat:@"b%@", [[self.db collectionWithPath:@"foo"] documentWithAutoID].documentID];
- NSArray *docPaths = @[
- @"a/a/${collectionGroup}/cg-doc1", @"a/b/a/b/${collectionGroup}/cg-doc2",
- @"a/b/${collectionGroup}/cg-doc3", @"a/b/c/d/${collectionGroup}/cg-doc4",
- @"a/c/${collectionGroup}/cg-doc5", @"${collectionGroup}/cg-doc6", @"a/b/nope/nope"
- ];
- FIRWriteBatch *batch = [self.db batch];
- for (NSString *docPath in docPaths) {
- NSString *path = [docPath stringByReplacingOccurrencesOfString:@"${collectionGroup}"
- withString:collectionGroup];
- [batch setData:@{@"x" : @1} forDocument:[self.db documentWithPath:path]];
- }
- XCTestExpectation *expectation = [self expectationWithDescription:@"batch written"];
- [batch commitWithCompletion:^(NSError *error) {
- XCTAssertNil(error);
- [expectation fulfill];
- }];
- [self awaitExpectations];
- FIRQuerySnapshot *querySnapshot = [self
- readDocumentSetForRef:[[[self.db collectionGroupWithID:collectionGroup]
- queryWhereFieldPath:[FIRFieldPath documentID]
- isGreaterThanOrEqualTo:@"a/b"]
- queryWhereFieldPath:[FIRFieldPath documentID]
- isLessThan:[NSString stringWithFormat:@"a/b/%@/cg-doc3",
- collectionGroup]]];
- NSArray<NSString *> *ids = FIRQuerySnapshotGetIDs(querySnapshot);
- XCTAssertEqualObjects(ids, (@[ @"cg-doc2" ]));
- }
- - (void)testOrQueries {
- FIRCollectionReference *collRef = [self collectionRefWithDocuments:@{
- @"doc1" : @{@"a" : @1, @"b" : @0},
- @"doc2" : @{@"a" : @2, @"b" : @1},
- @"doc3" : @{@"a" : @3, @"b" : @2},
- @"doc4" : @{@"a" : @1, @"b" : @3},
- @"doc5" : @{@"a" : @1, @"b" : @1}
- }];
- // Two equalities: a==1 || b==1.
- FIRFilter *filter1 = [FIRFilter orFilterWithFilters:@[
- [FIRFilter filterWhereField:@"a" isEqualTo:@1], [FIRFilter filterWhereField:@"b" isEqualTo:@1]
- ]];
- [self checkOnlineAndOfflineQuery:[collRef queryWhereFilter:filter1]
- matchesResult:@[ @"doc1", @"doc2", @"doc4", @"doc5" ]];
- // (a==1 && b==0) || (a==3 && b==2)
- FIRFilter *filter2 = [FIRFilter orFilterWithFilters:@[
- [FIRFilter andFilterWithFilters:@[
- [FIRFilter filterWhereField:@"a" isEqualTo:@1], [FIRFilter filterWhereField:@"b" isEqualTo:@0]
- ]],
- [FIRFilter andFilterWithFilters:@[
- [FIRFilter filterWhereField:@"a" isEqualTo:@3], [FIRFilter filterWhereField:@"b" isEqualTo:@2]
- ]]
- ]];
- [self checkOnlineAndOfflineQuery:[collRef queryWhereFilter:filter2]
- matchesResult:@[ @"doc1", @"doc3" ]];
- // a==1 && (b==0 || b==3).
- FIRFilter *filter3 = [FIRFilter andFilterWithFilters:@[
- [FIRFilter filterWhereField:@"a" isEqualTo:@1], [FIRFilter orFilterWithFilters:@[
- [FIRFilter filterWhereField:@"b" isEqualTo:@0], [FIRFilter filterWhereField:@"b" isEqualTo:@3]
- ]]
- ]];
- [self checkOnlineAndOfflineQuery:[collRef queryWhereFilter:filter3]
- matchesResult:@[ @"doc1", @"doc4" ]];
- // (a==2 || b==2) && (a==3 || b==3)
- FIRFilter *filter4 = [FIRFilter andFilterWithFilters:@[
- [FIRFilter orFilterWithFilters:@[
- [FIRFilter filterWhereField:@"a" isEqualTo:@2], [FIRFilter filterWhereField:@"b" isEqualTo:@2]
- ]],
- [FIRFilter orFilterWithFilters:@[
- [FIRFilter filterWhereField:@"a" isEqualTo:@3], [FIRFilter filterWhereField:@"b" isEqualTo:@3]
- ]]
- ]];
- [self checkOnlineAndOfflineQuery:[collRef queryWhereFilter:filter4] matchesResult:@[ @"doc3" ]];
- // Test with limits without orderBy (the __name__ ordering is the tie breaker).
- FIRFilter *filter5 = [FIRFilter orFilterWithFilters:@[
- [FIRFilter filterWhereField:@"a" isEqualTo:@2], [FIRFilter filterWhereField:@"b" isEqualTo:@1]
- ]];
- [self checkOnlineAndOfflineQuery:[[collRef queryWhereFilter:filter5] queryLimitedTo:1]
- matchesResult:@[ @"doc2" ]];
- }
- - (void)testOrQueriesWithCompositeIndexes {
- // TODO(orquery): Enable this test against production when possible.
- XCTSkipIf(![FSTIntegrationTestCase isRunningAgainstEmulator],
- "Skip this test if running against production because order-by-equality is not "
- "supported yet.");
- FIRCollectionReference *collRef = [self collectionRefWithDocuments:@{
- @"doc1" : @{@"a" : @1, @"b" : @0},
- @"doc2" : @{@"a" : @2, @"b" : @1},
- @"doc3" : @{@"a" : @3, @"b" : @2},
- @"doc4" : @{@"a" : @1, @"b" : @3},
- @"doc5" : @{@"a" : @1, @"b" : @1}
- }];
- // with one inequality: a>2 || b==1.
- FIRFilter *filter1 = [FIRFilter orFilterWithFilters:@[
- [FIRFilter filterWhereField:@"a" isGreaterThan:@2], [FIRFilter filterWhereField:@"b"
- isEqualTo:@1]
- ]];
- [self checkOnlineAndOfflineQuery:[collRef queryWhereFilter:filter1]
- matchesResult:@[ @"doc5", @"doc2", @"doc3" ]];
- // Test with limits (implicit order by ASC): (a==1) || (b > 0) LIMIT 2
- FIRFilter *filter2 = [FIRFilter orFilterWithFilters:@[
- [FIRFilter filterWhereField:@"a" isEqualTo:@1], [FIRFilter filterWhereField:@"b"
- isGreaterThan:@0]
- ]];
- [self checkOnlineAndOfflineQuery:[[collRef queryWhereFilter:filter2] queryLimitedTo:2]
- matchesResult:@[ @"doc1", @"doc2" ]];
- // Test with limits (explicit order by): (a==1) || (b > 0) LIMIT_TO_LAST 2
- // Note: The public query API does not allow implicit ordering when limitToLast is used.
- FIRFilter *filter3 = [FIRFilter orFilterWithFilters:@[
- [FIRFilter filterWhereField:@"a" isEqualTo:@1], [FIRFilter filterWhereField:@"b"
- isGreaterThan:@0]
- ]];
- [self checkOnlineAndOfflineQuery:[[[collRef queryWhereFilter:filter3] queryLimitedToLast:2]
- queryOrderedByField:@"b"]
- matchesResult:@[ @"doc3", @"doc4" ]];
- // Test with limits (explicit order by ASC): (a==2) || (b == 1) ORDER BY a LIMIT 1
- FIRFilter *filter4 = [FIRFilter orFilterWithFilters:@[
- [FIRFilter filterWhereField:@"a" isEqualTo:@2], [FIRFilter filterWhereField:@"b" isEqualTo:@1]
- ]];
- [self checkOnlineAndOfflineQuery:[[[collRef queryWhereFilter:filter4] queryLimitedTo:1]
- queryOrderedByField:@"a"]
- matchesResult:@[ @"doc5" ]];
- // Test with limits (explicit order by DESC): (a==2) || (b == 1) ORDER BY a LIMIT_TO_LAST 1
- FIRFilter *filter5 = [FIRFilter orFilterWithFilters:@[
- [FIRFilter filterWhereField:@"a" isEqualTo:@2], [FIRFilter filterWhereField:@"b" isEqualTo:@1]
- ]];
- [self checkOnlineAndOfflineQuery:[[[collRef queryWhereFilter:filter5] queryLimitedToLast:1]
- queryOrderedByField:@"a"]
- matchesResult:@[ @"doc2" ]];
- }
- - (void)testOrQueriesWithIn {
- FIRCollectionReference *collRef = [self collectionRefWithDocuments:@{
- @"doc1" : @{@"a" : @1, @"b" : @0},
- @"doc2" : @{@"b" : @1},
- @"doc3" : @{@"a" : @3, @"b" : @2},
- @"doc4" : @{@"a" : @1, @"b" : @3},
- @"doc5" : @{@"a" : @1},
- @"doc6" : @{@"a" : @2}
- }];
- // a==2 || b in [2,3]
- FIRFilter *filter = [FIRFilter orFilterWithFilters:@[
- [FIRFilter filterWhereField:@"a" isEqualTo:@2], [FIRFilter filterWhereField:@"b" in:@[ @2, @3 ]]
- ]];
- [self checkOnlineAndOfflineQuery:[collRef queryWhereFilter:filter]
- matchesResult:@[ @"doc3", @"doc4", @"doc6" ]];
- }
- - (void)testOrQueriesWithNotIn {
- // TODO(orquery): Enable this test against production when possible.
- XCTSkipIf(![FSTIntegrationTestCase isRunningAgainstEmulator],
- "Skip this test if running against production because it results in a 'missing index' "
- "error. The Firestore Emulator, however, does serve these queries");
- FIRCollectionReference *collRef = [self collectionRefWithDocuments:@{
- @"doc1" : @{@"a" : @1, @"b" : @0},
- @"doc2" : @{@"b" : @1},
- @"doc3" : @{@"a" : @3, @"b" : @2},
- @"doc4" : @{@"a" : @1, @"b" : @3},
- @"doc5" : @{@"a" : @1},
- @"doc6" : @{@"a" : @2}
- }];
- // a==2 || b not-in [2,3]
- // Has implicit orderBy b.
- FIRFilter *filter = [FIRFilter orFilterWithFilters:@[
- [FIRFilter filterWhereField:@"a" isEqualTo:@2], [FIRFilter filterWhereField:@"b"
- notIn:@[ @2, @3 ]]
- ]];
- [self checkOnlineAndOfflineQuery:[collRef queryWhereFilter:filter]
- matchesResult:@[ @"doc1", @"doc2" ]];
- }
- - (void)testOrQueriesWithArrayMembership {
- FIRCollectionReference *collRef = [self collectionRefWithDocuments:@{
- @"doc1" : @{@"a" : @1, @"b" : @[ @0 ]},
- @"doc2" : @{@"b" : @[ @1 ]},
- @"doc3" : @{@"a" : @3, @"b" : @[ @2, @7 ]},
- @"doc4" : @{@"a" : @1, @"b" : @[ @3, @7 ]},
- @"doc5" : @{@"a" : @1},
- @"doc6" : @{@"a" : @2}
- }];
- // a==2 || b array-contains 7
- FIRFilter *filter1 = [FIRFilter orFilterWithFilters:@[
- [FIRFilter filterWhereField:@"a" isEqualTo:@2], [FIRFilter filterWhereField:@"b"
- arrayContains:@7]
- ]];
- [self checkOnlineAndOfflineQuery:[collRef queryWhereFilter:filter1]
- matchesResult:@[ @"doc3", @"doc4", @"doc6" ]];
- // a==2 || b array-contains-any [0, 3]
- FIRFilter *filter2 = [FIRFilter orFilterWithFilters:@[
- [FIRFilter filterWhereField:@"a" isEqualTo:@2], [FIRFilter filterWhereField:@"b"
- arrayContainsAny:@[ @0, @3 ]]
- ]];
- [self checkOnlineAndOfflineQuery:[collRef queryWhereFilter:filter2]
- matchesResult:@[ @"doc1", @"doc4", @"doc6" ]];
- }
- - (void)testMultipleInOps {
- // TODO(orquery): Enable this test against production when possible.
- XCTSkipIf(![FSTIntegrationTestCase isRunningAgainstEmulator],
- "Skip this test if running against production because it's not yet supported.");
- FIRCollectionReference *collRef = [self collectionRefWithDocuments:@{
- @"doc1" : @{@"a" : @1, @"b" : @0},
- @"doc2" : @{@"b" : @1},
- @"doc3" : @{@"a" : @3, @"b" : @2},
- @"doc4" : @{@"a" : @1, @"b" : @3},
- @"doc5" : @{@"a" : @1},
- @"doc6" : @{@"a" : @2}
- }];
- // Two IN operations on different fields with disjunction.
- FIRFilter *filter1 = [FIRFilter orFilterWithFilters:@[
- [FIRFilter filterWhereField:@"a" in:@[ @2, @3 ]], [FIRFilter filterWhereField:@"b"
- in:@[ @0, @2 ]]
- ]];
- [self checkOnlineAndOfflineQuery:[collRef queryWhereFilter:filter1]
- matchesResult:@[ @"doc1", @"doc3", @"doc6" ]];
- // Two IN operations on the same field with disjunction.
- // a IN [0,3] || a IN [0,2] should union them (similar to: a IN [0,2,3]).
- FIRFilter *filter2 = [FIRFilter orFilterWithFilters:@[
- [FIRFilter filterWhereField:@"a" in:@[ @0, @3 ]], [FIRFilter filterWhereField:@"a"
- in:@[ @0, @2 ]]
- ]];
- [self checkOnlineAndOfflineQuery:[collRef queryWhereFilter:filter2]
- matchesResult:@[ @"doc3", @"doc6" ]];
- }
- - (void)testUsingInWithArrayContainsAny {
- // TODO(orquery): Enable this test against production when possible.
- XCTSkipIf(![FSTIntegrationTestCase isRunningAgainstEmulator],
- "Skip this test if running against production because it's not yet supported.");
- FIRCollectionReference *collRef = [self collectionRefWithDocuments:@{
- @"doc1" : @{@"a" : @1, @"b" : @[ @0 ]},
- @"doc2" : @{@"b" : @[ @1 ]},
- @"doc3" : @{@"a" : @3, @"b" : @[ @2, @7 ], @"c" : @10},
- @"doc4" : @{@"a" : @1, @"b" : @[ @3, @7 ]},
- @"doc5" : @{@"a" : @1},
- @"doc6" : @{@"a" : @2, @"c" : @20}
- }];
- FIRFilter *filter1 = [FIRFilter orFilterWithFilters:@[
- [FIRFilter filterWhereField:@"a" in:@[ @2, @3 ]], [FIRFilter filterWhereField:@"b"
- arrayContainsAny:@[ @0, @7 ]]
- ]];
- [self checkOnlineAndOfflineQuery:[collRef queryWhereFilter:filter1]
- matchesResult:@[ @"doc1", @"doc3", @"doc4", @"doc6" ]];
- FIRFilter *filter2 = [FIRFilter orFilterWithFilters:@[
- [FIRFilter andFilterWithFilters:@[
- [FIRFilter filterWhereField:@"a" in:@[ @2, @3 ]], [FIRFilter filterWhereField:@"c"
- isEqualTo:@10]
- ]],
- [FIRFilter filterWhereField:@"b" arrayContainsAny:@[ @0, @7 ]]
- ]];
- [self checkOnlineAndOfflineQuery:[collRef queryWhereFilter:filter2]
- matchesResult:@[ @"doc1", @"doc3", @"doc4" ]];
- }
- - (void)testUseInWithArrayContains {
- FIRCollectionReference *collRef = [self collectionRefWithDocuments:@{
- @"doc1" : @{@"a" : @1, @"b" : @[ @0 ]},
- @"doc2" : @{@"b" : @[ @1 ]},
- @"doc3" : @{@"a" : @3, @"b" : @[ @2, @7 ]},
- @"doc4" : @{@"a" : @1, @"b" : @[ @3, @7 ]},
- @"doc5" : @{@"a" : @1},
- @"doc6" : @{@"a" : @2}
- }];
- FIRFilter *filter1 = [FIRFilter orFilterWithFilters:@[
- [FIRFilter filterWhereField:@"a" in:@[ @2, @3 ]], [FIRFilter filterWhereField:@"b"
- arrayContainsAny:@[ @3 ]]
- ]];
- [self checkOnlineAndOfflineQuery:[collRef queryWhereFilter:filter1]
- matchesResult:@[ @"doc3", @"doc4", @"doc6" ]];
- FIRFilter *filter2 = [FIRFilter andFilterWithFilters:@[
- [FIRFilter filterWhereField:@"a" in:@[ @2, @3 ]], [FIRFilter filterWhereField:@"b"
- arrayContains:@7]
- ]];
- [self checkOnlineAndOfflineQuery:[collRef queryWhereFilter:filter2] matchesResult:@[ @"doc3" ]];
- FIRFilter *filter3 = [FIRFilter orFilterWithFilters:@[
- [FIRFilter filterWhereField:@"a" in:@[ @2, @3 ]], [FIRFilter andFilterWithFilters:@[
- [FIRFilter filterWhereField:@"b" arrayContains:@3], [FIRFilter filterWhereField:@"a"
- isEqualTo:@1]
- ]]
- ]];
- [self checkOnlineAndOfflineQuery:[collRef queryWhereFilter:filter3]
- matchesResult:@[ @"doc3", @"doc4", @"doc6" ]];
- FIRFilter *filter4 = [FIRFilter andFilterWithFilters:@[
- [FIRFilter filterWhereField:@"a" in:@[ @2, @3 ]], [FIRFilter orFilterWithFilters:@[
- [FIRFilter filterWhereField:@"b" arrayContains:@7], [FIRFilter filterWhereField:@"a"
- isEqualTo:@1]
- ]]
- ]];
- [self checkOnlineAndOfflineQuery:[collRef queryWhereFilter:filter4] matchesResult:@[ @"doc3" ]];
- }
- - (void)testOrderByEquality {
- // TODO(orquery): Enable this test against production when possible.
- XCTSkipIf(![FSTIntegrationTestCase isRunningAgainstEmulator],
- "Skip this test if running against production because order-by-equality is not "
- "supported yet.");
- FIRCollectionReference *collRef = [self collectionRefWithDocuments:@{
- @"doc1" : @{@"a" : @1, @"b" : @[ @0 ]},
- @"doc2" : @{@"b" : @[ @1 ]},
- @"doc3" : @{@"a" : @3, @"b" : @[ @2, @7 ], @"c" : @10},
- @"doc4" : @{@"a" : @1, @"b" : @[ @3, @7 ]},
- @"doc5" : @{@"a" : @1},
- @"doc6" : @{@"a" : @2, @"c" : @20}
- }];
- [self checkOnlineAndOfflineQuery:[[collRef queryWhereFilter:[FIRFilter filterWhereField:@"a"
- isEqualTo:@1]]
- queryOrderedByField:@"a"]
- matchesResult:@[ @"doc1", @"doc4", @"doc5" ]];
- [self checkOnlineAndOfflineQuery:[[collRef
- queryWhereFilter:[FIRFilter filterWhereField:@"a"
- in:@[ @2, @3 ]]]
- queryOrderedByField:@"a"]
- matchesResult:@[ @"doc6", @"doc3" ]];
- }
- - (void)testResumingAQueryShouldUseBloomFilterToAvoidFullRequery {
- using firebase::firestore::testutil::CaptureExistenceFilterMismatches;
- using firebase::firestore::util::TestingHooks;
- // Set this test to stop when the first failure occurs because some test assertion failures make
- // the rest of the test not applicable or will even crash.
- [self setContinueAfterFailure:NO];
- // Prepare the names and contents of the 100 documents to create.
- NSMutableDictionary<NSString *, NSDictionary<NSString *, id> *> *testDocs =
- [[NSMutableDictionary alloc] init];
- for (int i = 0; i < 100; i++) {
- [testDocs setValue:@{@"key" : @42} forKey:[NSString stringWithFormat:@"doc%@", @(1000 + i)]];
- }
- // Each iteration of the "while" loop below runs a single iteration of the test. The test will
- // be run multiple times only if a bloom filter false positive occurs.
- int attemptNumber = 0;
- while (true) {
- attemptNumber++;
- // Create 100 documents in a new collection.
- FIRCollectionReference *collRef = [self collectionRefWithDocuments:testDocs];
- // Run a query to populate the local cache with the 100 documents and a resume token.
- FIRQuerySnapshot *querySnapshot1 = [self readDocumentSetForRef:collRef
- source:FIRFirestoreSourceDefault];
- XCTAssertEqual(querySnapshot1.count, 100, @"querySnapshot1.count has an unexpected value");
- NSArray<FIRDocumentReference *> *createdDocuments =
- FIRDocumentReferenceArrayFromQuerySnapshot(querySnapshot1);
- // Delete 50 of the 100 documents. Do this in a transaction, rather than
- // [FIRDocumentReference deleteDocument], to avoid affecting the local cache.
- NSSet<NSString *> *deletedDocumentIds;
- {
- NSMutableArray<NSString *> *deletedDocumentIdsAccumulator = [[NSMutableArray alloc] init];
- XCTestExpectation *expectation = [self expectationWithDescription:@"DeleteTransaction"];
- [collRef.firestore
- runTransactionWithBlock:^id _Nullable(FIRTransaction *transaction, NSError **) {
- for (decltype(createdDocuments.count) i = 0; i < createdDocuments.count; i += 2) {
- FIRDocumentReference *documentToDelete = createdDocuments[i];
- [transaction deleteDocument:documentToDelete];
- [deletedDocumentIdsAccumulator addObject:documentToDelete.documentID];
- }
- return @"document deletion successful";
- }
- completion:^(id, NSError *) {
- [expectation fulfill];
- }];
- [self awaitExpectation:expectation];
- deletedDocumentIds = [NSSet setWithArray:deletedDocumentIdsAccumulator];
- }
- XCTAssertEqual(deletedDocumentIds.count, 50u, @"deletedDocumentIds has the wrong size");
- // Wait for 10 seconds, during which Watch will stop tracking the query and will send an
- // existence filter rather than "delete" events when the query is resumed.
- [NSThread sleepForTimeInterval:10.0f];
- // Resume the query and save the resulting snapshot for verification.
- // Use some internal testing hooks to "capture" the existence filter mismatches to verify that
- // Watch sent a bloom filter, and it was used to avert a full requery.
- FIRQuerySnapshot *querySnapshot2;
- std::vector<TestingHooks::ExistenceFilterMismatchInfo> existence_filter_mismatches =
- CaptureExistenceFilterMismatches([&] {
- querySnapshot2 = [self readDocumentSetForRef:collRef source:FIRFirestoreSourceDefault];
- });
- // Verify that the snapshot from the resumed query contains the expected documents; that is,
- // that it contains the 50 documents that were _not_ deleted.
- // TODO(b/270731363): Remove the "if" condition below once the Firestore Emulator is fixed to
- // send an existence filter. At the time of writing, the Firestore emulator fails to send an
- // existence filter, resulting in the client including the deleted documents in the snapshot
- // of the resumed query.
- if (!([FSTIntegrationTestCase isRunningAgainstEmulator] && querySnapshot2.count == 100)) {
- NSSet<NSString *> *actualDocumentIds =
- [NSSet setWithArray:FIRQuerySnapshotGetIDs(querySnapshot2)];
- NSSet<NSString *> *expectedDocumentIds;
- {
- NSMutableArray<NSString *> *expectedDocumentIdsAccumulator = [[NSMutableArray alloc] init];
- for (FIRDocumentReference *documentRef in createdDocuments) {
- if (![deletedDocumentIds containsObject:documentRef.documentID]) {
- [expectedDocumentIdsAccumulator addObject:documentRef.documentID];
- }
- }
- expectedDocumentIds = [NSSet setWithArray:expectedDocumentIdsAccumulator];
- }
- if (![actualDocumentIds isEqualToSet:expectedDocumentIds]) {
- NSArray<NSString *> *unexpectedDocumentIds =
- SortedStringsNotIn(actualDocumentIds, expectedDocumentIds);
- NSArray<NSString *> *missingDocumentIds =
- SortedStringsNotIn(expectedDocumentIds, actualDocumentIds);
- XCTFail(@"querySnapshot2 contained %lu documents (expected %lu): "
- @"%lu unexpected and %lu missing; "
- @"unexpected documents: %@; missing documents: %@",
- (unsigned long)actualDocumentIds.count, (unsigned long)expectedDocumentIds.count,
- (unsigned long)unexpectedDocumentIds.count, (unsigned long)missingDocumentIds.count,
- [unexpectedDocumentIds componentsJoinedByString:@", "],
- [missingDocumentIds componentsJoinedByString:@", "]);
- }
- }
- // Skip the verification of the existence filter mismatch when testing against the Firestore
- // emulator because the Firestore emulator fails to to send an existence filter at all.
- // TODO(b/270731363): Enable the verification of the existence filter mismatch once the
- // Firestore emulator is fixed to send an existence filter.
- if ([FSTIntegrationTestCase isRunningAgainstEmulator]) {
- return;
- }
- // Verify that Watch sent an existence filter with the correct counts when the query was
- // resumed.
- XCTAssertEqual(existence_filter_mismatches.size(), size_t{1},
- @"Watch should have sent exactly 1 existence filter");
- const TestingHooks::ExistenceFilterMismatchInfo &existenceFilterMismatchInfo =
- existence_filter_mismatches[0];
- XCTAssertEqual(existenceFilterMismatchInfo.local_cache_count, 100);
- XCTAssertEqual(existenceFilterMismatchInfo.existence_filter_count, 50);
- // Verify that Watch sent a valid bloom filter.
- const absl::optional<TestingHooks::BloomFilterInfo> &bloom_filter =
- existence_filter_mismatches[0].bloom_filter;
- XCTAssertTrue(bloom_filter.has_value(),
- "Watch should have included a bloom filter in the existence filter");
- XCTAssertGreaterThan(bloom_filter->hash_count, 0);
- XCTAssertGreaterThan(bloom_filter->bitmap_length, 0);
- XCTAssertGreaterThan(bloom_filter->padding, 0);
- XCTAssertLessThan(bloom_filter->padding, 8);
- // Verify that the bloom filter was successfully used to avert a full requery. If a false
- // positive occurred then retry the entire test. Although statistically rare, false positives
- // are expected to happen occasionally. When a false positive _does_ happen, just retry the test
- // with a different set of documents. If that retry _also_ experiences a false positive, then
- // fail the test because that is so improbable that something must have gone wrong.
- if (attemptNumber == 1 && !bloom_filter->applied) {
- continue;
- }
- XCTAssertTrue(bloom_filter->applied,
- @"The bloom filter should have been successfully applied with attemptNumber=%@",
- @(attemptNumber));
- // Break out of the test loop now that the test passes.
- break;
- }
- }
- @end
|