File tree Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,19 @@ The testapp performs the following:
13
13
- Gets a pointer to firebase::Auth, and signs in anonymously. This allows the
14
14
testapp to access a Firebase Firestore instance with authentication rules
15
15
enabled.
16
- - TODO(varconst): describe the Firestore-specific logic
16
+ - Initializes a Firestore instance, and sets its logging level to
17
+ ` kLogLevelDebug ` in order to see debug messages in the logs.
18
+ - Tests that it can create Timestamp, SnapshotMetadata, and GeoPoint objects.
19
+ - Creates a collection, and a document inside that collection.
20
+ - Writes initial data to the document (` Set ` ), updates the document content
21
+ (` Update ` ), reads the document back (` Get ` ), and checks that the contents
22
+ match our expectation.
23
+ - Deletes the document.
24
+ - Performs a batch write to two documents.
25
+ - Performs a Transaction containing three operations (` Update ` , ` Delete ` , and
26
+ ` Set ` ) on three different documents.
27
+ - Queries documents in the collection that match a certain condition. Ensures
28
+ the documents returned via the query match our expectation.
17
29
18
30
Introduction
19
31
------------
@@ -220,11 +232,6 @@ Building and Running the testapp
220
232
- The testapp has no user interface, but the output can be viewed via the
221
233
console.
222
234
223
- Known issues
224
- ------------
225
-
226
- TODO(varconst)
227
-
228
235
Support
229
236
-------
230
237
You can’t perform that action at this time.
0 commit comments