| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- /*
- * 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/FIRQuerySnapshot.h>
- #import <XCTest/XCTest.h>
- #include <memory>
- #include <utility>
- #include <vector>
- #import "Firestore/Example/Tests/API/FSTAPIHelpers.h"
- #import "Firestore/Example/Tests/Util/FSTHelpers.h"
- #import "Firestore/Source/API/FIRDocumentChange+Internal.h"
- #import "Firestore/Source/API/FIRDocumentSnapshot+Internal.h"
- #import "Firestore/Source/API/FIRFirestore+Internal.h"
- #import "Firestore/Source/API/FIRQuerySnapshot+Internal.h"
- #import "Firestore/Source/API/FIRSnapshotMetadata+Internal.h"
- #include "Firestore/core/src/core/query.h"
- #include "Firestore/core/src/core/view_snapshot.h"
- #include "Firestore/core/src/model/document.h"
- #include "Firestore/core/src/model/document_set.h"
- #include "Firestore/core/src/util/string_apple.h"
- #include "Firestore/core/test/unit/testutil/testutil.h"
- using firebase::firestore::api::DocumentChange;
- using firebase::firestore::api::DocumentSnapshot;
- using firebase::firestore::api::Firestore;
- using firebase::firestore::api::SnapshotMetadata;
- using firebase::firestore::core::DocumentViewChange;
- using firebase::firestore::core::ViewSnapshot;
- using firebase::firestore::model::Document;
- using firebase::firestore::model::DocumentComparator;
- using firebase::firestore::model::DocumentKeySet;
- using firebase::firestore::model::DocumentSet;
- using firebase::firestore::testutil::Doc;
- using firebase::firestore::testutil::DocSet;
- using firebase::firestore::testutil::Map;
- using firebase::firestore::testutil::Query;
- NS_ASSUME_NONNULL_BEGIN
- @interface FIRQuerySnapshotTests : XCTestCase
- @end
- @implementation FIRQuerySnapshotTests
- - (void)testEquals {
- FIRQuerySnapshot *foo = FSTTestQuerySnapshot("foo", @{}, @{@"a" : @{@"a" : @1}}, true, false);
- FIRQuerySnapshot *fooDup = FSTTestQuerySnapshot("foo", @{}, @{@"a" : @{@"a" : @1}}, true, false);
- FIRQuerySnapshot *differentPath =
- FSTTestQuerySnapshot("bar", @{}, @{@"a" : @{@"a" : @1}}, true, false);
- FIRQuerySnapshot *differentDoc =
- FSTTestQuerySnapshot("foo", @{@"a" : @{@"b" : @1}}, @{}, true, false);
- FIRQuerySnapshot *noPendingWrites =
- FSTTestQuerySnapshot("foo", @{}, @{@"a" : @{@"a" : @1}}, false, false);
- FIRQuerySnapshot *fromCache =
- FSTTestQuerySnapshot("foo", @{}, @{@"a" : @{@"a" : @1}}, true, true);
- XCTAssertEqualObjects(foo, fooDup);
- XCTAssertNotEqualObjects(foo, differentPath);
- XCTAssertNotEqualObjects(foo, differentDoc);
- XCTAssertNotEqualObjects(foo, noPendingWrites);
- XCTAssertNotEqualObjects(foo, fromCache);
- XCTAssertEqual([foo hash], [fooDup hash]);
- XCTAssertNotEqual([foo hash], [differentPath hash]);
- XCTAssertNotEqual([foo hash], [differentDoc hash]);
- XCTAssertNotEqual([foo hash], [noPendingWrites hash]);
- XCTAssertNotEqual([foo hash], [fromCache hash]);
- }
- - (void)testIncludeMetadataChanges {
- Document doc1Old = Doc("foo/bar", 1, Map("a", "b")).SetHasLocalMutations();
- Document doc1New = Doc("foo/bar", 1, Map("a", "b"));
- Document doc2Old = Doc("foo/baz", 1, Map("a", "b"));
- Document doc2New = Doc("foo/baz", 1, Map("a", "c"));
- DocumentSet oldDocuments = DocSet(DocumentComparator::ByKey(), {doc1Old, doc2Old});
- DocumentSet newDocuments = DocSet(DocumentComparator::ByKey(), {doc2New, doc2New});
- std::vector<DocumentViewChange> documentChanges{
- DocumentViewChange(doc1New, DocumentViewChange::Type::Metadata),
- DocumentViewChange(doc2New, DocumentViewChange::Type::Modified),
- };
- std::shared_ptr<Firestore> firestore = FSTTestFirestore().wrapped;
- core::Query query = Query("foo");
- ViewSnapshot viewSnapshot(query, newDocuments, oldDocuments, std::move(documentChanges),
- /*mutated_keys=*/DocumentKeySet(),
- /*from_cache=*/false,
- /*sync_state_changed=*/true,
- /*excludes_metadata_changes=*/false);
- SnapshotMetadata metadata(/*pending_writes=*/false, /*from_cache=*/false);
- FIRQuerySnapshot *snapshot = [[FIRQuerySnapshot alloc] initWithFirestore:firestore
- originalQuery:query
- snapshot:std::move(viewSnapshot)
- metadata:std::move(metadata)];
- auto doc1Snap = DocumentSnapshot::FromDocument(firestore, doc1New, SnapshotMetadata());
- auto doc2Snap = DocumentSnapshot::FromDocument(firestore, doc2New, SnapshotMetadata());
- NSArray<FIRDocumentChange *> *changesWithoutMetadata = @[
- [[FIRDocumentChange alloc]
- initWithDocumentChange:DocumentChange(DocumentChange::Type::Modified, doc2Snap,
- /*old_index=*/1, /*new_index=*/1)],
- ];
- XCTAssertEqualObjects(snapshot.documentChanges, changesWithoutMetadata);
- NSArray<FIRDocumentChange *> *changesWithMetadata = @[
- [[FIRDocumentChange alloc]
- initWithDocumentChange:DocumentChange(DocumentChange::Type::Modified, doc1Snap,
- /*old_index=*/0, /*new_index=*/0)],
- [[FIRDocumentChange alloc]
- initWithDocumentChange:DocumentChange(DocumentChange::Type::Modified, doc2Snap,
- /*old_index=*/1, /*new_index=*/1)],
- ];
- XCTAssertEqualObjects([snapshot documentChangesWithIncludeMetadataChanges:YES],
- changesWithMetadata);
- }
- @end
- NS_ASSUME_NONNULL_END
|