| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474 |
- /*
- * 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 "Firestore/Example/Tests/Util/FSTHelpers.h"
- #import <FirebaseFirestore/FIRFieldPath.h>
- #import <FirebaseFirestore/FIRGeoPoint.h>
- #import <FirebaseFirestore/FIRTimestamp.h>
- #include <cinttypes>
- #include <list>
- #include <set>
- #include <unordered_map>
- #include <utility>
- #include <vector>
- #import "Firestore/Source/API/FIRFieldPath+Internal.h"
- #import "Firestore/Source/API/FSTUserDataConverter.h"
- #import "Firestore/Source/Core/FSTQuery.h"
- #import "Firestore/Source/Core/FSTView.h"
- #import "Firestore/Source/Core/FSTViewSnapshot.h"
- #import "Firestore/Source/Local/FSTLocalViewChanges.h"
- #import "Firestore/Source/Local/FSTQueryData.h"
- #import "Firestore/Source/Model/FSTDocument.h"
- #import "Firestore/Source/Model/FSTDocumentSet.h"
- #import "Firestore/Source/Model/FSTFieldValue.h"
- #import "Firestore/Source/Model/FSTMutation.h"
- #import "Firestore/Source/Remote/FSTRemoteEvent.h"
- #import "Firestore/Source/Remote/FSTWatchChange.h"
- #include "Firestore/core/src/firebase/firestore/model/database_id.h"
- #include "Firestore/core/src/firebase/firestore/model/document_key.h"
- #include "Firestore/core/src/firebase/firestore/model/document_key_set.h"
- #include "Firestore/core/src/firebase/firestore/model/field_mask.h"
- #include "Firestore/core/src/firebase/firestore/model/field_transform.h"
- #include "Firestore/core/src/firebase/firestore/model/field_value.h"
- #include "Firestore/core/src/firebase/firestore/model/precondition.h"
- #include "Firestore/core/src/firebase/firestore/model/resource_path.h"
- #include "Firestore/core/src/firebase/firestore/model/transform_operations.h"
- #include "Firestore/core/src/firebase/firestore/util/string_apple.h"
- #include "Firestore/core/test/firebase/firestore/testutil/testutil.h"
- #include "absl/memory/memory.h"
- namespace testutil = firebase::firestore::testutil;
- namespace util = firebase::firestore::util;
- using firebase::firestore::core::ParsedUpdateData;
- using firebase::firestore::model::DatabaseId;
- using firebase::firestore::model::DocumentKey;
- using firebase::firestore::model::DocumentKeySet;
- using firebase::firestore::model::FieldMask;
- using firebase::firestore::model::FieldPath;
- using firebase::firestore::model::FieldTransform;
- using firebase::firestore::model::FieldValue;
- using firebase::firestore::model::MaybeDocumentMap;
- using firebase::firestore::model::Precondition;
- using firebase::firestore::model::ResourcePath;
- using firebase::firestore::model::ServerTimestampTransform;
- using firebase::firestore::model::SnapshotVersion;
- using firebase::firestore::model::TargetId;
- using firebase::firestore::model::TransformOperation;
- NS_ASSUME_NONNULL_BEGIN
- /** A string sentinel that can be used with FSTTestPatchMutation() to mark a field for deletion. */
- static NSString *const kDeleteSentinel = @"<DELETE>";
- FIRTimestamp *FSTTestTimestamp(int year, int month, int day, int hour, int minute, int second) {
- NSDate *date = FSTTestDate(year, month, day, hour, minute, second);
- return [FIRTimestamp timestampWithDate:date];
- }
- NSDate *FSTTestDate(int year, int month, int day, int hour, int minute, int second) {
- NSDateComponents *comps = FSTTestDateComponents(year, month, day, hour, minute, second);
- return [[NSCalendar currentCalendar] dateFromComponents:comps];
- }
- NSData *FSTTestData(int bytes, ...) {
- va_list args;
- va_start(args, bytes); /* Initialize the argument list. */
- NSMutableData *data = [NSMutableData data];
- int next = bytes;
- while (next >= 0) {
- uint8_t byte = (uint8_t)next;
- [data appendBytes:&byte length:1];
- next = va_arg(args, int);
- }
- va_end(args);
- return [data copy];
- }
- FIRGeoPoint *FSTTestGeoPoint(double latitude, double longitude) {
- return [[FIRGeoPoint alloc] initWithLatitude:latitude longitude:longitude];
- }
- NSDateComponents *FSTTestDateComponents(
- int year, int month, int day, int hour, int minute, int second) {
- NSDateComponents *comps = [[NSDateComponents alloc] init];
- comps.year = year;
- comps.month = month;
- comps.day = day;
- comps.hour = hour;
- comps.minute = minute;
- comps.second = second;
- // Force time zone to UTC to avoid these values changing due to daylight saving.
- comps.timeZone = [NSTimeZone timeZoneForSecondsFromGMT:0];
- return comps;
- }
- FSTUserDataConverter *FSTTestUserDataConverter() {
- // This owns the DatabaseIds since we do not have FirestoreClient instance to own them.
- static DatabaseId database_id{"project", DatabaseId::kDefault};
- FSTUserDataConverter *converter =
- [[FSTUserDataConverter alloc] initWithDatabaseID:&database_id
- preConverter:^id _Nullable(id _Nullable input) {
- return input;
- }];
- return converter;
- }
- FSTFieldValue *FSTTestFieldValue(id _Nullable value) {
- FSTUserDataConverter *converter = FSTTestUserDataConverter();
- // HACK: We use parsedQueryValue: since it accepts scalars as well as arrays / objects, and
- // our tests currently use FSTTestFieldValue() pretty generically so we don't know the intent.
- return [converter parsedQueryValue:value];
- }
- FSTObjectValue *FSTTestObjectValue(NSDictionary<NSString *, id> *data) {
- FSTFieldValue *wrapped = FSTTestFieldValue(data);
- HARD_ASSERT([wrapped isKindOfClass:[FSTObjectValue class]], "Unsupported value: %s", data);
- return (FSTObjectValue *)wrapped;
- }
- DocumentKey FSTTestDocKey(NSString *path) {
- return DocumentKey::FromPathString(util::MakeString(path));
- }
- FSTDocument *FSTTestDoc(const absl::string_view path,
- FSTTestSnapshotVersion version,
- NSDictionary<NSString *, id> *data,
- FSTDocumentState documentState) {
- DocumentKey key = testutil::Key(path);
- return [FSTDocument documentWithData:FSTTestObjectValue(data)
- key:key
- version:testutil::Version(version)
- state:documentState];
- }
- FSTDeletedDocument *FSTTestDeletedDoc(const absl::string_view path,
- FSTTestSnapshotVersion version,
- BOOL hasCommittedMutations) {
- DocumentKey key = testutil::Key(path);
- return [FSTDeletedDocument documentWithKey:key
- version:testutil::Version(version)
- hasCommittedMutations:hasCommittedMutations];
- }
- FSTUnknownDocument *FSTTestUnknownDoc(const absl::string_view path,
- FSTTestSnapshotVersion version) {
- DocumentKey key = testutil::Key(path);
- return [FSTUnknownDocument documentWithKey:key version:testutil::Version(version)];
- }
- FSTDocumentKeyReference *FSTTestRef(std::string projectID, std::string database, NSString *path) {
- // This owns the DatabaseIds since we do not have FirestoreClient instance to own them.
- static std::list<DatabaseId> database_ids;
- database_ids.emplace_back(std::move(projectID), std::move(database));
- return [[FSTDocumentKeyReference alloc] initWithKey:FSTTestDocKey(path)
- databaseID:&database_ids.back()];
- }
- FSTQuery *FSTTestQuery(const absl::string_view path) {
- return [FSTQuery queryWithPath:testutil::Resource(path)];
- }
- FSTFilter *FSTTestFilter(const absl::string_view field, NSString *opString, id value) {
- const FieldPath path = testutil::Field(field);
- FSTRelationFilterOperator op;
- if ([opString isEqualToString:@"<"]) {
- op = FSTRelationFilterOperatorLessThan;
- } else if ([opString isEqualToString:@"<="]) {
- op = FSTRelationFilterOperatorLessThanOrEqual;
- } else if ([opString isEqualToString:@"=="]) {
- op = FSTRelationFilterOperatorEqual;
- } else if ([opString isEqualToString:@">="]) {
- op = FSTRelationFilterOperatorGreaterThanOrEqual;
- } else if ([opString isEqualToString:@">"]) {
- op = FSTRelationFilterOperatorGreaterThan;
- } else if ([opString isEqualToString:@"array_contains"]) {
- op = FSTRelationFilterOperatorArrayContains;
- } else {
- HARD_FAIL("Unsupported operator type: %s", opString);
- }
- FSTFieldValue *data = FSTTestFieldValue(value);
- return [FSTFilter filterWithField:path filterOperator:op value:data];
- }
- FSTSortOrder *FSTTestOrderBy(const absl::string_view field, NSString *direction) {
- const FieldPath path = testutil::Field(field);
- BOOL ascending;
- if ([direction isEqualToString:@"asc"]) {
- ascending = YES;
- } else if ([direction isEqualToString:@"desc"]) {
- ascending = NO;
- } else {
- HARD_FAIL("Unsupported direction: %s", direction);
- }
- return [FSTSortOrder sortOrderWithFieldPath:path ascending:ascending];
- }
- NSComparator FSTTestDocComparator(const absl::string_view fieldPath) {
- FSTQuery *query = [FSTTestQuery("docs")
- queryByAddingSortOrder:[FSTSortOrder sortOrderWithFieldPath:testutil::Field(fieldPath)
- ascending:YES]];
- return [query comparator];
- }
- FSTDocumentSet *FSTTestDocSet(NSComparator comp, NSArray<FSTDocument *> *docs) {
- FSTDocumentSet *docSet = [FSTDocumentSet documentSetWithComparator:comp];
- for (FSTDocument *doc in docs) {
- docSet = [docSet documentSetByAddingDocument:doc];
- }
- return docSet;
- }
- FSTSetMutation *FSTTestSetMutation(NSString *path, NSDictionary<NSString *, id> *values) {
- return [[FSTSetMutation alloc] initWithKey:FSTTestDocKey(path)
- value:FSTTestObjectValue(values)
- precondition:Precondition::None()];
- }
- FSTPatchMutation *FSTTestPatchMutation(const absl::string_view path,
- NSDictionary<NSString *, id> *values,
- const std::vector<FieldPath> &updateMask) {
- BOOL merge = !updateMask.empty();
- __block FSTObjectValue *objectValue = [FSTObjectValue objectValue];
- __block std::set<FieldPath> fieldMaskPaths;
- [values enumerateKeysAndObjectsUsingBlock:^(NSString *key, id value, BOOL *stop) {
- const FieldPath path = testutil::Field(util::MakeString(key));
- fieldMaskPaths.insert(path);
- if (![value isEqual:kDeleteSentinel]) {
- FSTFieldValue *parsedValue = FSTTestFieldValue(value);
- objectValue = [objectValue objectBySettingValue:parsedValue forPath:path];
- }
- }];
- DocumentKey key = testutil::Key(path);
- FieldMask mask(merge ? std::set<FieldPath>(updateMask.begin(), updateMask.end())
- : fieldMaskPaths);
- return [[FSTPatchMutation alloc] initWithKey:key
- fieldMask:mask
- value:objectValue
- precondition:Precondition::Exists(true)];
- }
- FSTTransformMutation *FSTTestTransformMutation(NSString *path, NSDictionary<NSString *, id> *data) {
- DocumentKey key{testutil::Resource(util::MakeString(path))};
- FSTUserDataConverter *converter = FSTTestUserDataConverter();
- ParsedUpdateData result = [converter parsedUpdateData:data];
- HARD_ASSERT(result.data().value.count == 0,
- "FSTTestTransformMutation() only expects transforms; no other data");
- return [[FSTTransformMutation alloc] initWithKey:key fieldTransforms:result.field_transforms()];
- }
- FSTDeleteMutation *FSTTestDeleteMutation(NSString *path) {
- return [[FSTDeleteMutation alloc] initWithKey:FSTTestDocKey(path)
- precondition:Precondition::None()];
- }
- MaybeDocumentMap FSTTestDocUpdates(NSArray<FSTMaybeDocument *> *docs) {
- MaybeDocumentMap updates;
- for (FSTMaybeDocument *doc in docs) {
- updates = updates.insert(doc.key, doc);
- }
- return updates;
- }
- FSTViewSnapshot *_Nullable FSTTestApplyChanges(FSTView *view,
- NSArray<FSTMaybeDocument *> *docs,
- FSTTargetChange *_Nullable targetChange) {
- return [view applyChangesToDocuments:[view computeChangesWithDocuments:FSTTestDocUpdates(docs)]
- targetChange:targetChange]
- .snapshot;
- }
- @implementation FSTTestTargetMetadataProvider {
- std::unordered_map<TargetId, DocumentKeySet> _syncedKeys;
- std::unordered_map<TargetId, FSTQueryData *> _queryData;
- }
- + (instancetype)providerWithSingleResultForKey:(DocumentKey)documentKey
- listenTargets:(NSArray<FSTBoxedTargetID *> *)listenTargets
- limboTargets:(NSArray<FSTBoxedTargetID *> *)limboTargets {
- FSTTestTargetMetadataProvider *metadataProvider = [FSTTestTargetMetadataProvider new];
- FSTQuery *query = [FSTQuery queryWithPath:documentKey.path()];
- for (FSTBoxedTargetID *targetID in listenTargets) {
- FSTQueryData *queryData = [[FSTQueryData alloc] initWithQuery:query
- targetID:targetID.intValue
- listenSequenceNumber:0
- purpose:FSTQueryPurposeListen];
- [metadataProvider setSyncedKeys:DocumentKeySet{documentKey} forQueryData:queryData];
- }
- for (FSTBoxedTargetID *targetID in limboTargets) {
- FSTQueryData *queryData = [[FSTQueryData alloc] initWithQuery:query
- targetID:targetID.intValue
- listenSequenceNumber:0
- purpose:FSTQueryPurposeLimboResolution];
- [metadataProvider setSyncedKeys:DocumentKeySet{documentKey} forQueryData:queryData];
- }
- return metadataProvider;
- }
- + (instancetype)providerWithSingleResultForKey:(DocumentKey)documentKey
- targets:(NSArray<FSTBoxedTargetID *> *)targets {
- return [self providerWithSingleResultForKey:documentKey listenTargets:targets limboTargets:@[]];
- }
- + (instancetype)providerWithEmptyResultForKey:(DocumentKey)documentKey
- targets:(NSArray<FSTBoxedTargetID *> *)targets {
- FSTTestTargetMetadataProvider *metadataProvider = [FSTTestTargetMetadataProvider new];
- FSTQuery *query = [FSTQuery queryWithPath:documentKey.path()];
- for (FSTBoxedTargetID *targetID in targets) {
- FSTQueryData *queryData = [[FSTQueryData alloc] initWithQuery:query
- targetID:targetID.intValue
- listenSequenceNumber:0
- purpose:FSTQueryPurposeListen];
- [metadataProvider setSyncedKeys:DocumentKeySet {} forQueryData:queryData];
- }
- return metadataProvider;
- }
- - (void)setSyncedKeys:(DocumentKeySet)keys forQueryData:(FSTQueryData *)queryData {
- _syncedKeys[queryData.targetID] = keys;
- _queryData[queryData.targetID] = queryData;
- }
- - (DocumentKeySet)remoteKeysForTarget:(FSTBoxedTargetID *)targetID {
- auto it = _syncedKeys.find(targetID.intValue);
- HARD_ASSERT(it != _syncedKeys.end(), "Cannot process unknown target %s", targetID.intValue);
- return it->second;
- }
- - (nullable FSTQueryData *)queryDataForTarget:(FSTBoxedTargetID *)targetID {
- auto it = _queryData.find(targetID.intValue);
- HARD_ASSERT(it != _queryData.end(), "Cannot process unknown target %s", targetID.intValue);
- return it->second;
- }
- @end
- FSTRemoteEvent *FSTTestAddedRemoteEvent(FSTMaybeDocument *doc,
- NSArray<FSTBoxedTargetID *> *addedToTargets) {
- HARD_ASSERT(![doc isKindOfClass:[FSTDocument class]] || ![(FSTDocument *)doc hasLocalMutations],
- "Docs from remote updates shouldn't have local changes.");
- FSTDocumentWatchChange *change =
- [[FSTDocumentWatchChange alloc] initWithUpdatedTargetIDs:addedToTargets
- removedTargetIDs:{}
- documentKey:doc.key
- document:doc];
- FSTWatchChangeAggregator *aggregator = [[FSTWatchChangeAggregator alloc]
- initWithTargetMetadataProvider:[FSTTestTargetMetadataProvider
- providerWithEmptyResultForKey:doc.key
- targets:addedToTargets]];
- [aggregator handleDocumentChange:change];
- return [aggregator remoteEventAtSnapshotVersion:doc.version];
- }
- FSTTargetChange *FSTTestTargetChangeMarkCurrent() {
- return [[FSTTargetChange alloc] initWithResumeToken:[NSData data]
- current:YES
- addedDocuments:DocumentKeySet {}
- modifiedDocuments:DocumentKeySet {}
- removedDocuments:DocumentKeySet{}];
- }
- FSTTargetChange *FSTTestTargetChangeAckDocuments(DocumentKeySet docs) {
- return [[FSTTargetChange alloc] initWithResumeToken:[NSData data]
- current:YES
- addedDocuments:docs
- modifiedDocuments:DocumentKeySet {}
- removedDocuments:DocumentKeySet{}];
- }
- FSTTargetChange *FSTTestTargetChange(DocumentKeySet added,
- DocumentKeySet modified,
- DocumentKeySet removed,
- NSData *resumeToken,
- BOOL current) {
- return [[FSTTargetChange alloc] initWithResumeToken:resumeToken
- current:current
- addedDocuments:added
- modifiedDocuments:modified
- removedDocuments:removed];
- }
- FSTRemoteEvent *FSTTestUpdateRemoteEventWithLimboTargets(
- FSTMaybeDocument *doc,
- NSArray<FSTBoxedTargetID *> *updatedInTargets,
- NSArray<FSTBoxedTargetID *> *removedFromTargets,
- NSArray<FSTBoxedTargetID *> *limboTargets) {
- HARD_ASSERT(![doc isKindOfClass:[FSTDocument class]] || ![(FSTDocument *)doc hasLocalMutations],
- "Docs from remote updates shouldn't have local changes.");
- FSTDocumentWatchChange *change =
- [[FSTDocumentWatchChange alloc] initWithUpdatedTargetIDs:updatedInTargets
- removedTargetIDs:removedFromTargets
- documentKey:doc.key
- document:doc];
- NSArray<FSTBoxedTargetID *> *listens =
- [updatedInTargets arrayByAddingObjectsFromArray:removedFromTargets];
- FSTWatchChangeAggregator *aggregator = [[FSTWatchChangeAggregator alloc]
- initWithTargetMetadataProvider:[FSTTestTargetMetadataProvider
- providerWithSingleResultForKey:doc.key
- listenTargets:listens
- limboTargets:limboTargets]];
- [aggregator handleDocumentChange:change];
- return [aggregator remoteEventAtSnapshotVersion:doc.version];
- }
- FSTRemoteEvent *FSTTestUpdateRemoteEvent(FSTMaybeDocument *doc,
- NSArray<NSNumber *> *updatedInTargets,
- NSArray<NSNumber *> *removedFromTargets) {
- return FSTTestUpdateRemoteEventWithLimboTargets(doc, updatedInTargets, removedFromTargets, @[]);
- }
- /** Creates a resume token to match the given snapshot version. */
- NSData *_Nullable FSTTestResumeTokenFromSnapshotVersion(FSTTestSnapshotVersion snapshotVersion) {
- if (snapshotVersion == 0) {
- return nil;
- }
- NSString *snapshotString = [NSString stringWithFormat:@"snapshot-%" PRId64, snapshotVersion];
- return [snapshotString dataUsingEncoding:NSUTF8StringEncoding];
- }
- FSTLocalViewChanges *FSTTestViewChanges(TargetId targetID,
- NSArray<NSString *> *addedKeys,
- NSArray<NSString *> *removedKeys) {
- DocumentKeySet added;
- for (NSString *keyPath in addedKeys) {
- added = added.insert(testutil::Key(util::MakeString(keyPath)));
- }
- DocumentKeySet removed;
- for (NSString *keyPath in removedKeys) {
- removed = removed.insert(testutil::Key(util::MakeString(keyPath)));
- }
- return [FSTLocalViewChanges changesForTarget:targetID
- addedKeys:std::move(added)
- removedKeys:std::move(removed)];
- }
- NS_ASSUME_NONNULL_END
|