aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Example/Tests/Core/FSTViewSnapshotTest.mm
blob: c50368426065b3b9ff0115ff1984b2455ba9dde8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/*
 * 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/Source/Core/FSTViewSnapshot.h"

#import <XCTest/XCTest.h>

#import "Firestore/Source/Core/FSTQuery.h"
#import "Firestore/Source/Model/FSTDocument.h"
#import "Firestore/Source/Model/FSTDocumentSet.h"

#import "Firestore/Example/Tests/Util/FSTHelpers.h"

NS_ASSUME_NONNULL_BEGIN

@interface FSTViewSnapshotTests : XCTestCase
@end

@implementation FSTViewSnapshotTests

- (void)testDocumentChangeConstructor {
  FSTDocument *doc = FSTTestDoc(@"a/b", 0, @{}, NO);
  FSTDocumentViewChangeType type = FSTDocumentViewChangeTypeModified;
  FSTDocumentViewChange *change = [FSTDocumentViewChange changeWithDocument:doc type:type];
  XCTAssertEqual(change.document, doc);
  XCTAssertEqual(change.type, type);
}

- (void)testTrack {
  FSTDocumentViewChangeSet *set = [FSTDocumentViewChangeSet changeSet];

  FSTDocument *docAdded = FSTTestDoc(@"a/1", 0, @{}, NO);
  FSTDocument *docRemoved = FSTTestDoc(@"a/2", 0, @{}, NO);
  FSTDocument *docModified = FSTTestDoc(@"a/3", 0, @{}, NO);

  FSTDocument *docAddedThenModified = FSTTestDoc(@"b/1", 0, @{}, NO);
  FSTDocument *docAddedThenRemoved = FSTTestDoc(@"b/2", 0, @{}, NO);
  FSTDocument *docRemovedThenAdded = FSTTestDoc(@"b/3", 0, @{}, NO);
  FSTDocument *docModifiedThenRemoved = FSTTestDoc(@"b/4", 0, @{}, NO);
  FSTDocument *docModifiedThenModified = FSTTestDoc(@"b/5", 0, @{}, NO);

  [set addChange:[FSTDocumentViewChange changeWithDocument:docAdded
                                                      type:FSTDocumentViewChangeTypeAdded]];
  [set addChange:[FSTDocumentViewChange changeWithDocument:docRemoved
                                                      type:FSTDocumentViewChangeTypeRemoved]];
  [set addChange:[FSTDocumentViewChange changeWithDocument:docModified
                                                      type:FSTDocumentViewChangeTypeModified]];

  [set addChange:[FSTDocumentViewChange changeWithDocument:docAddedThenModified
                                                      type:FSTDocumentViewChangeTypeAdded]];
  [set addChange:[FSTDocumentViewChange changeWithDocument:docAddedThenModified
                                                      type:FSTDocumentViewChangeTypeModified]];
  [set addChange:[FSTDocumentViewChange changeWithDocument:docAddedThenRemoved
                                                      type:FSTDocumentViewChangeTypeAdded]];
  [set addChange:[FSTDocumentViewChange changeWithDocument:docAddedThenRemoved
                                                      type:FSTDocumentViewChangeTypeRemoved]];
  [set addChange:[FSTDocumentViewChange changeWithDocument:docRemovedThenAdded
                                                      type:FSTDocumentViewChangeTypeRemoved]];
  [set addChange:[FSTDocumentViewChange changeWithDocument:docRemovedThenAdded
                                                      type:FSTDocumentViewChangeTypeAdded]];
  [set addChange:[FSTDocumentViewChange changeWithDocument:docModifiedThenRemoved
                                                      type:FSTDocumentViewChangeTypeModified]];
  [set addChange:[FSTDocumentViewChange changeWithDocument:docModifiedThenRemoved
                                                      type:FSTDocumentViewChangeTypeRemoved]];
  [set addChange:[FSTDocumentViewChange changeWithDocument:docModifiedThenModified
                                                      type:FSTDocumentViewChangeTypeModified]];
  [set addChange:[FSTDocumentViewChange changeWithDocument:docModifiedThenModified
                                                      type:FSTDocumentViewChangeTypeModified]];

  NSArray<FSTDocumentViewChange *> *changes = [set changes];
  XCTAssertEqual(changes.count, 7);

  XCTAssertEqual(changes[0].document, docAdded);
  XCTAssertEqual(changes[0].type, FSTDocumentViewChangeTypeAdded);

  XCTAssertEqual(changes[1].document, docRemoved);
  XCTAssertEqual(changes[1].type, FSTDocumentViewChangeTypeRemoved);

  XCTAssertEqual(changes[2].document, docModified);
  XCTAssertEqual(changes[2].type, FSTDocumentViewChangeTypeModified);

  XCTAssertEqual(changes[3].document, docAddedThenModified);
  XCTAssertEqual(changes[3].type, FSTDocumentViewChangeTypeAdded);

  XCTAssertEqual(changes[4].document, docRemovedThenAdded);
  XCTAssertEqual(changes[4].type, FSTDocumentViewChangeTypeModified);

  XCTAssertEqual(changes[5].document, docModifiedThenRemoved);
  XCTAssertEqual(changes[5].type, FSTDocumentViewChangeTypeRemoved);

  XCTAssertEqual(changes[6].document, docModifiedThenModified);
  XCTAssertEqual(changes[6].type, FSTDocumentViewChangeTypeModified);
}

- (void)testViewSnapshotConstructor {
  FSTQuery *query = FSTTestQuery("a");
  FSTDocumentSet *documents = [FSTDocumentSet documentSetWithComparator:FSTDocumentComparatorByKey];
  FSTDocumentSet *oldDocuments = documents;
  documents = [documents documentSetByAddingDocument:FSTTestDoc(@"c/a", 1, @{}, NO)];
  NSArray<FSTDocumentViewChange *> *documentChanges =
      @[ [FSTDocumentViewChange changeWithDocument:FSTTestDoc(@"c/a", 1, @{}, NO)
                                              type:FSTDocumentViewChangeTypeAdded] ];

  BOOL fromCache = YES;
  BOOL hasPendingWrites = NO;
  BOOL syncStateChanged = YES;

  FSTViewSnapshot *snapshot = [[FSTViewSnapshot alloc] initWithQuery:query
                                                           documents:documents
                                                        oldDocuments:oldDocuments
                                                     documentChanges:documentChanges
                                                           fromCache:fromCache
                                                    hasPendingWrites:hasPendingWrites
                                                    syncStateChanged:syncStateChanged];

  XCTAssertEqual(snapshot.query, query);
  XCTAssertEqual(snapshot.documents, documents);
  XCTAssertEqual(snapshot.oldDocuments, oldDocuments);
  XCTAssertEqual(snapshot.documentChanges, documentChanges);
  XCTAssertEqual(snapshot.fromCache, fromCache);
  XCTAssertEqual(snapshot.hasPendingWrites, hasPendingWrites);
  XCTAssertEqual(snapshot.syncStateChanged, syncStateChanged);
}

@end

NS_ASSUME_NONNULL_END