Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 13 additions & 6 deletions firestore/testapp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,19 @@ The testapp performs the following:
- Gets a pointer to firebase::Auth, and signs in anonymously. This allows the
testapp to access a Firebase Firestore instance with authentication rules
enabled.
- TODO(varconst): describe the Firestore-specific logic
- Initializes a Firestore instance, and sets its logging level to
`kLogLevelDebug` in order to see debug messages in the logs.
- Tests that it can create Timestamp, SnapshotMetadata, and GeoPoint objects.
- Creates a collection, and a document inside that collection.
- Writes initial data to the document (`Set`), updates the document content
(`Update`), reads the document back (`Get`), and checks that the contents
match our expectation.
- Deletes the document.
- Performs a batch write to two documents.
- Performs a Transaction containing three operations (`Update`, `Delete`, and
`Set`) on three different documents.
- Queries documents in the collection that match a certain condition. Ensures
the documents returned via the query match our expectation.

Introduction
------------
Expand Down Expand Up @@ -220,11 +232,6 @@ Building and Running the testapp
- The testapp has no user interface, but the output can be viewed via the
console.

Known issues
------------

TODO(varconst)

Support
-------

Expand Down