| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241 |
- /*
- * 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;
- #import <GRPCClient/GRPCCall+ChannelCredentials.h>
- #import <GRPCClient/GRPCCall+Tests.h>
- #import <XCTest/XCTest.h>
- #import "Firestore/Source/API/FIRDocumentReference+Internal.h"
- #import "Firestore/Source/API/FSTUserDataConverter.h"
- #import "Firestore/Source/Auth/FSTEmptyCredentialsProvider.h"
- #import "Firestore/Source/Core/FSTDatabaseInfo.h"
- #import "Firestore/Source/Core/FSTFirestoreClient.h"
- #import "Firestore/Source/Core/FSTQuery.h"
- #import "Firestore/Source/Core/FSTSnapshotVersion.h"
- #import "Firestore/Source/Core/FSTTimestamp.h"
- #import "Firestore/Source/Local/FSTQueryData.h"
- #import "Firestore/Source/Model/FSTDatabaseID.h"
- #import "Firestore/Source/Model/FSTDocumentKey.h"
- #import "Firestore/Source/Model/FSTFieldValue.h"
- #import "Firestore/Source/Model/FSTMutation.h"
- #import "Firestore/Source/Model/FSTMutationBatch.h"
- #import "Firestore/Source/Model/FSTPath.h"
- #import "Firestore/Source/Remote/FSTDatastore.h"
- #import "Firestore/Source/Remote/FSTRemoteEvent.h"
- #import "Firestore/Source/Remote/FSTRemoteStore.h"
- #import "Firestore/Source/Util/FSTAssert.h"
- #import "Firestore/Source/Util/FSTDispatchQueue.h"
- #import "Firestore/Example/Tests/Util/FSTIntegrationTestCase.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface FSTRemoteStore (Tests)
- - (void)commitBatch:(FSTMutationBatch *)batch;
- @end
- #pragma mark - FSTRemoteStoreEventCapture
- @interface FSTRemoteStoreEventCapture : NSObject <FSTRemoteSyncer>
- - (instancetype)init __attribute__((unavailable("Use initWithTestCase:")));
- - (instancetype)initWithTestCase:(XCTestCase *_Nullable)testCase NS_DESIGNATED_INITIALIZER;
- - (void)expectWriteEventWithDescription:(NSString *)description;
- - (void)expectListenEventWithDescription:(NSString *)description;
- @property(nonatomic, weak, nullable) XCTestCase *testCase;
- @property(nonatomic, strong) NSMutableArray<NSObject *> *writeEvents;
- @property(nonatomic, strong) NSMutableArray<NSObject *> *listenEvents;
- @property(nonatomic, strong) NSMutableArray<XCTestExpectation *> *writeEventExpectations;
- @property(nonatomic, strong) NSMutableArray<XCTestExpectation *> *listenEventExpectations;
- @end
- @implementation FSTRemoteStoreEventCapture
- - (instancetype)initWithTestCase:(XCTestCase *_Nullable)testCase {
- if (self = [super init]) {
- _writeEvents = [NSMutableArray array];
- _listenEvents = [NSMutableArray array];
- _testCase = testCase;
- _writeEventExpectations = [NSMutableArray array];
- _listenEventExpectations = [NSMutableArray array];
- }
- return self;
- }
- - (void)expectWriteEventWithDescription:(NSString *)description {
- [self.writeEventExpectations
- addObject:[self.testCase
- expectationWithDescription:[NSString
- stringWithFormat:@"write event %lu: %@",
- (unsigned long)
- self.writeEventExpectations
- .count,
- description]]];
- }
- - (void)expectListenEventWithDescription:(NSString *)description {
- [self.listenEventExpectations
- addObject:[self.testCase
- expectationWithDescription:[NSString
- stringWithFormat:@"listen event %lu: %@",
- (unsigned long)
- self.listenEventExpectations
- .count,
- description]]];
- }
- - (void)applySuccessfulWriteWithResult:(FSTMutationBatchResult *)batchResult {
- [self.writeEvents addObject:batchResult];
- XCTestExpectation *expectation = [self.writeEventExpectations objectAtIndex:0];
- [self.writeEventExpectations removeObjectAtIndex:0];
- [expectation fulfill];
- }
- - (void)rejectFailedWriteWithBatchID:(FSTBatchID)batchID error:(NSError *)error {
- FSTFail(@"Not implemented");
- }
- - (void)applyRemoteEvent:(FSTRemoteEvent *)remoteEvent {
- [self.listenEvents addObject:remoteEvent];
- XCTestExpectation *expectation = [self.listenEventExpectations objectAtIndex:0];
- [self.listenEventExpectations removeObjectAtIndex:0];
- [expectation fulfill];
- }
- - (void)rejectListenWithTargetID:(FSTBoxedTargetID *)targetID error:(NSError *)error {
- FSTFail(@"Not implemented");
- }
- @end
- #pragma mark - FSTDatastoreTests
- @interface FSTDatastoreTests : XCTestCase
- @end
- @implementation FSTDatastoreTests {
- FSTDispatchQueue *_testWorkerQueue;
- FSTLocalStore *_localStore;
- id<FSTCredentialsProvider> _credentials;
- FSTDatastore *_datastore;
- FSTRemoteStore *_remoteStore;
- }
- - (void)setUp {
- [super setUp];
- NSString *projectID = [[NSProcessInfo processInfo] environment][@"PROJECT_ID"];
- if (!projectID) {
- projectID = @"test-db";
- }
- FIRFirestoreSettings *settings = [FSTIntegrationTestCase settings];
- if (!settings.sslEnabled) {
- [GRPCCall useInsecureConnectionsForHost:settings.host];
- }
- FSTDatabaseID *databaseID =
- [FSTDatabaseID databaseIDWithProject:projectID database:kDefaultDatabaseID];
- FSTDatabaseInfo *databaseInfo = [FSTDatabaseInfo databaseInfoWithDatabaseID:databaseID
- persistenceKey:@"test-key"
- host:settings.host
- sslEnabled:settings.sslEnabled];
- _testWorkerQueue = [FSTDispatchQueue
- queueWith:dispatch_queue_create("com.google.firestore.FSTDatastoreTestsWorkerQueue",
- DISPATCH_QUEUE_SERIAL)];
- _credentials = [[FSTEmptyCredentialsProvider alloc] init];
- _datastore = [FSTDatastore datastoreWithDatabase:databaseInfo
- workerDispatchQueue:_testWorkerQueue
- credentials:_credentials];
- _remoteStore = [FSTRemoteStore remoteStoreWithLocalStore:_localStore datastore:_datastore];
- [_testWorkerQueue dispatchAsync:^() {
- [_remoteStore start];
- }];
- }
- - (void)tearDown {
- XCTestExpectation *completion = [self expectationWithDescription:@"shutdown"];
- [_testWorkerQueue dispatchAsync:^{
- [_remoteStore shutdown];
- [completion fulfill];
- }];
- [self awaitExpectations];
- [super tearDown];
- }
- - (void)testCommit {
- XCTestExpectation *expectation = [self expectationWithDescription:@"commitWithCompletion"];
- [_datastore commitMutations:@[]
- completion:^(NSError *_Nullable error) {
- XCTAssertNil(error, @"Failed to commit");
- [expectation fulfill];
- }];
- [self awaitExpectations];
- }
- - (void)testStreamingWrite {
- FSTRemoteStoreEventCapture *capture = [[FSTRemoteStoreEventCapture alloc] initWithTestCase:self];
- [capture expectWriteEventWithDescription:@"write mutations"];
- _remoteStore.syncEngine = capture;
- FSTSetMutation *mutation = [self setMutation];
- FSTMutationBatch *batch = [[FSTMutationBatch alloc] initWithBatchID:23
- localWriteTime:[FSTTimestamp timestamp]
- mutations:@[ mutation ]];
- [_testWorkerQueue dispatchAsync:^{
- [_remoteStore commitBatch:batch];
- }];
- [self awaitExpectations];
- }
- - (void)awaitExpectations {
- [self waitForExpectationsWithTimeout:4.0
- handler:^(NSError *_Nullable expectationError) {
- if (expectationError) {
- XCTFail(@"Error waiting for timeout: %@", expectationError);
- }
- }];
- }
- - (FSTSetMutation *)setMutation {
- return [[FSTSetMutation alloc]
- initWithKey:[FSTDocumentKey keyWithPathString:@"rooms/eros"]
- value:[[FSTObjectValue alloc]
- initWithDictionary:@{@"name" : [FSTStringValue stringValue:@"Eros"]}]
- precondition:[FSTPrecondition none]];
- }
- @end
- NS_ASSUME_NONNULL_END
|