| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309 |
- /*
- * 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 <Foundation/Foundation.h>
- #include <map>
- #include <unordered_map>
- #include <vector>
- #include "Firestore/core/src/firebase/firestore/auth/user.h"
- #include "Firestore/core/src/firebase/firestore/core/view_snapshot.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/snapshot_version.h"
- #include "Firestore/core/src/firebase/firestore/model/types.h"
- #include "Firestore/core/src/firebase/firestore/remote/watch_change.h"
- #include "Firestore/core/src/firebase/firestore/util/async_queue.h"
- @class FSTMutation;
- @class FSTMutationResult;
- @class FSTQuery;
- @class FSTQueryData;
- @protocol FSTPersistence;
- NS_ASSUME_NONNULL_BEGIN
- /**
- * Interface used for object that contain exactly one of either a view snapshot or an error for the
- * given query.
- */
- @interface FSTQueryEvent : NSObject
- @property(nonatomic, strong) FSTQuery *query;
- @property(nonatomic, strong, nullable) NSError *error;
- - (const absl::optional<firebase::firestore::core::ViewSnapshot> &)viewSnapshot;
- - (void)setViewSnapshot:(absl::optional<firebase::firestore::core::ViewSnapshot>)snapshot;
- @end
- /** Holds an outstanding write and its result. */
- @interface FSTOutstandingWrite : NSObject
- /** The write that is outstanding. */
- @property(nonatomic, strong, readwrite) FSTMutation *write;
- /** Whether this write is done (regardless of whether it was successful or not). */
- @property(nonatomic, assign, readwrite) BOOL done;
- /** The error - if any - of this write. */
- @property(nonatomic, strong, nullable, readwrite) NSError *error;
- @end
- /** Mapping of user => array of FSTMutations for that user. */
- typedef std::unordered_map<firebase::firestore::auth::User,
- NSMutableArray<FSTOutstandingWrite *> *,
- firebase::firestore::auth::HashUser>
- FSTOutstandingWriteQueues;
- /**
- * A test driver for FSTSyncEngine that allows simulated event delivery and capture. As much as
- * possible, all sources of nondeterminism are removed so that test execution is consistent and
- * reliable.
- *
- * FSTSyncEngineTestDriver:
- *
- * + constructs an FSTSyncEngine using a mocked Datastore for the backend;
- * + allows the caller to trigger events (user API calls and incoming Datastore messages);
- * + performs sequencing validation internally (e.g. that when a user mutation is initiated, the
- * FSTSyncEngine correctly sends it to the remote store); and
- * + exposes the set of FSTQueryEvents generated for the caller to verify.
- *
- * Events come in three major flavors:
- *
- * + user events: simulate user API calls
- * + watch events: simulate RPC interactions with the Watch backend
- * + write events: simulate RPC interactions with the Streaming Write backend
- *
- * Each method on the driver injects a different event into the system.
- */
- @interface FSTSyncEngineTestDriver : NSObject
- /**
- * Initializes the underlying FSTSyncEngine with the given local persistence implementation and
- * garbage collection policy.
- */
- - (instancetype)initWithPersistence:(id<FSTPersistence>)persistence;
- /**
- * Initializes the underlying FSTSyncEngine with the given local persistence implementation and
- * a set of existing outstandingWrites (useful when your FSTPersistence object has
- * persisted mutation queues).
- */
- - (instancetype)initWithPersistence:(id<FSTPersistence>)persistence
- initialUser:(const firebase::firestore::auth::User &)initialUser
- outstandingWrites:(const FSTOutstandingWriteQueues &)outstandingWrites
- NS_DESIGNATED_INITIALIZER;
- - (instancetype)init NS_UNAVAILABLE;
- /** Starts the FSTSyncEngine and its underlying components. */
- - (void)start;
- /** Validates that the API has been used correctly after a test is complete. */
- - (void)validateUsage;
- /** Shuts the FSTSyncEngine down. */
- - (void)shutdown;
- /**
- * Adds a listener to the FSTSyncEngine as if the user had initiated a new listen for the given
- * query.
- *
- * Resulting events are captured and made available via the capturedEventsSinceLastCall method.
- *
- * @param query A valid query to execute against the backend.
- * @return The target ID assigned by the system to track the query.
- */
- - (firebase::firestore::model::TargetId)addUserListenerWithQuery:(FSTQuery *)query;
- /**
- * Removes a listener from the FSTSyncEngine as if the user had removed a listener corresponding
- * to the given query.
- *
- * Resulting events are captured and made available via the capturedEventsSinceLastCall method.
- *
- * @param query An identical query corresponding to one passed to -addUserListenerWithQuery.
- */
- - (void)removeUserListenerWithQuery:(FSTQuery *)query;
- /**
- * Delivers a WatchChange RPC to the FSTSyncEngine as if it were received from the backend watch
- * service, either in response to addUserListener: or removeUserListener calls or because the
- * simulated backend has new data.
- *
- * Resulting events are captured and made available via the capturedEventsSinceLastCall method.
- *
- * @param change Any type of watch change
- * @param snapshot A snapshot version to attach, if applicable. This should be sent when
- * simulating the server having sent a complete snapshot.
- */
- - (void)receiveWatchChange:(const firebase::firestore::remote::WatchChange &)change
- snapshotVersion:(const firebase::firestore::model::SnapshotVersion &)snapshot;
- /**
- * Delivers a watch stream error as if the Streaming Watch backend has generated some kind of error.
- *
- * @param errorCode A FIRFirestoreErrorCode value, from FIRFirestoreErrors.h
- * @param userInfo Any additional details that the server might have sent along with the error.
- * For the moment this is effectively unused, but is logged.
- */
- - (void)receiveWatchStreamError:(int)errorCode userInfo:(NSDictionary<NSString *, id> *)userInfo;
- /**
- * Performs a mutation against the FSTSyncEngine as if the user had written the mutation through
- * the API.
- *
- * Also retains the mutation so that the driver can validate that the sync engine sent the mutation
- * to the remote store before receiveWatchChange:snapshotVersion: and receiveWriteError:userInfo:
- * events are processed.
- *
- * @param mutation Any type of valid mutation.
- */
- - (void)writeUserMutation:(FSTMutation *)mutation;
- /**
- * Delivers a write error as if the Streaming Write backend has generated some kind of error.
- *
- * For the moment write errors are usually must be in response to a mutation that has been written
- * with writeUserMutation:. Spontaneously errors due to idle timeout, server restart, or credential
- * expiration aren't yet supported.
- *
- * @param errorCode A FIRFirestoreErrorCode value, from FIRFirestoreErrors.h
- * @param userInfo Any additional details that the server might have sent along with the error.
- * For the moment this is effectively unused, but is logged.
- * @param keepInQueue Whether to keep the write in the write queue as it will be retried.
- */
- - (FSTOutstandingWrite *)receiveWriteError:(int)errorCode
- userInfo:(NSDictionary<NSString *, id> *)userInfo
- keepInQueue:(BOOL)keepInQueue;
- /**
- * Delivers a write acknowledgement as if the Streaming Write backend has acknowledged a write with
- * the snapshot version at which the write was committed.
- *
- * @param commitVersion The snapshot version at which the simulated server has committed
- * the mutation. Snapshot versions must be monotonically increasing.
- * @param mutationResults The mutation results for the write that is being acked.
- */
- - (FSTOutstandingWrite *)
- receiveWriteAckWithVersion:(const firebase::firestore::model::SnapshotVersion &)commitVersion
- mutationResults:(std::vector<FSTMutationResult *>)mutationResults;
- /**
- * A count of the mutations written to the write stream by the FSTSyncEngine, but not yet
- * acknowledged via receiveWriteError: or receiveWriteAckWithVersion:mutationResults.
- */
- @property(nonatomic, readonly) int sentWritesCount;
- /**
- * A count of the total number of requests sent to the write stream since the beginning of the test
- * case.
- */
- @property(nonatomic, readonly) int writeStreamRequestCount;
- /**
- * A count of the total number of requests sent to the watch stream since the beginning of the test
- * case.
- */
- @property(nonatomic, readonly) int watchStreamRequestCount;
- /**
- * Disables RemoteStore's network connection and shuts down all streams.
- */
- - (void)disableNetwork;
- /**
- * Enables RemoteStore's network connection.
- */
- - (void)enableNetwork;
- /**
- * Runs a pending timer callback on the worker queue.
- */
- - (void)runTimer:(firebase::firestore::util::TimerId)timerID;
- /**
- * Switches the FSTSyncEngine to a new user. The test driver tracks the outstanding mutations for
- * each user, so future receiveWriteAck/Error operations will validate the write sent to the mock
- * datastore matches the next outstanding write for that user.
- */
- - (void)changeUser:(const firebase::firestore::auth::User &)user;
- /**
- * Drains the client's dispatch queue.
- */
- - (void)drainQueue;
- /**
- * Returns all query events generated by the FSTSyncEngine in response to the event injection
- * methods called previously. The events are cleared after each invocation of this method.
- */
- - (NSArray<FSTQueryEvent *> *)capturedEventsSinceLastCall;
- /**
- * Returns the names of the documents that the client acknowledged since the last call to this
- * method. The keys are cleared after each invocation of this method.
- */
- - (NSArray<NSString *> *)capturedAcknowledgedWritesSinceLastCall;
- /**
- * Returns the names of the documents that the client rejected since the last call to this
- * method. The keys are cleared after each invocation of this method.
- */
- - (NSArray<NSString *> *)capturedRejectedWritesSinceLastCall;
- /** The current set of documents in limbo. */
- - (std::map<firebase::firestore::model::DocumentKey, firebase::firestore::model::TargetId>)
- currentLimboDocuments;
- /** The expected set of documents in limbo. */
- - (const firebase::firestore::model::DocumentKeySet &)expectedLimboDocuments;
- /** Sets the expected set of documents in limbo. */
- - (void)setExpectedLimboDocuments:(firebase::firestore::model::DocumentKeySet)docs;
- /**
- * The writes that have been sent to the FSTSyncEngine via writeUserMutation: but not yet
- * acknowledged by calling receiveWriteAck/Error:. They are tracked per-user.
- *
- * It is mostly an implementation detail used internally to validate that the writes sent to the
- * mock backend by the FSTSyncEngine match the user mutations that initiated them.
- *
- * It is exposed specifically for use with the
- * initWithPersistence:GCEnabled:outstandingWrites: initializer to test persistence
- * scenarios where the FSTSyncEngine is restarted while the FSTPersistence implementation still has
- * outstanding persisted mutations.
- *
- * Note: The size of the list for the current user will generally be the same as
- * sentWritesCount, but not necessarily, since the `RemoteStore` limits the number of
- * outstanding writes to the backend at a given time.
- */
- @property(nonatomic, assign, readonly) const FSTOutstandingWriteQueues &outstandingWrites;
- /** The current user for the FSTSyncEngine; determines which mutation queue is active. */
- @property(nonatomic, assign, readonly) const firebase::firestore::auth::User ¤tUser;
- /** The set of active targets as observed on the watch stream. */
- - (const std::unordered_map<firebase::firestore::model::TargetId, FSTQueryData *> &)activeTargets;
- /** The expected set of active targets, keyed by target ID. */
- - (const std::unordered_map<firebase::firestore::model::TargetId, FSTQueryData *> &)
- expectedActiveTargets;
- - (void)setExpectedActiveTargets:
- (const std::unordered_map<firebase::firestore::model::TargetId, FSTQueryData *> &)targets;
- @end
- NS_ASSUME_NONNULL_END
|