-
Notifications
You must be signed in to change notification settings - Fork 927
Add explicit tests for Compat #5870
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
packages/firestore-compat/.idea/runConfigurations/Integration_Tests__Emulator_.xml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/** | ||
* @license | ||
* Copyright 2022 Google LLC | ||
* | ||
* 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. | ||
*/ | ||
|
||
require('@babel/register')({ extensions: ['.js', '.ts'] }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Copied |
||
"presets": [ | ||
"@babel/preset-typescript", | ||
["@babel/preset-env", {"targets": {"node": "10"}, "modules": "cjs"}] | ||
], | ||
"plugins": ["babel-plugin-transform-import-meta"] | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
240 changes: 240 additions & 0 deletions
240
packages/firestore-compat/test/array_transforms.test.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,240 @@ | ||
/** | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Copied |
||
* @license | ||
* Copyright 2022 Google LLC | ||
* | ||
* 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 * as firestore from '@firebase/firestore-types'; | ||
import { expect } from 'chai'; | ||
|
||
import { addEqualityMatcher } from './util/equality_matcher'; | ||
import { EventsAccumulator } from './util/events_accumulator'; | ||
import * as firebaseExport from './util/firebase_export'; | ||
import { apiDescribe, withTestDb, withTestDoc } from './util/helpers'; | ||
|
||
addEqualityMatcher(); | ||
|
||
const FieldValue = firebaseExport.FieldValue; | ||
|
||
/** | ||
* Note: Transforms are tested pretty thoroughly in server_timestamp.test.ts | ||
* (via set, update, transactions, nested in documents, multiple transforms | ||
* together, etc.) and so these tests mostly focus on the array transform | ||
* semantics. | ||
*/ | ||
apiDescribe('Array Transforms:', (persistence: boolean) => { | ||
// A document reference to read and write to. | ||
let docRef: firestore.DocumentReference; | ||
|
||
// Accumulator used to capture events during the test. | ||
let accumulator: EventsAccumulator<firestore.DocumentSnapshot>; | ||
|
||
// Listener registration for a listener maintained during the course of the | ||
// test. | ||
let unsubscribe: () => void; | ||
|
||
/** Writes some initialData and consumes the events generated. */ | ||
async function writeInitialData( | ||
initialData: firestore.DocumentData | ||
): Promise<void> { | ||
await docRef.set(initialData); | ||
await accumulator.awaitLocalEvent(); | ||
const snapshot = await accumulator.awaitRemoteEvent(); | ||
expect(snapshot.data()).to.deep.equal(initialData); | ||
} | ||
|
||
async function expectLocalAndRemoteEvent( | ||
expected: firestore.DocumentData | ||
): Promise<void> { | ||
const localSnap = await accumulator.awaitLocalEvent(); | ||
expect(localSnap.data()).to.deep.equal(expected); | ||
const remoteSnap = await accumulator.awaitRemoteEvent(); | ||
expect(remoteSnap.data()).to.deep.equal(expected); | ||
} | ||
|
||
/** | ||
* Wraps a test, getting a docRef and event accumulator, and cleaning them | ||
* up when done. | ||
*/ | ||
async function withTestSetup<T>(test: () => Promise<T>): Promise<void> { | ||
await withTestDoc(persistence, async doc => { | ||
docRef = doc; | ||
accumulator = new EventsAccumulator<firestore.DocumentSnapshot>(); | ||
unsubscribe = docRef.onSnapshot( | ||
{ includeMetadataChanges: true }, | ||
accumulator.storeEvent | ||
); | ||
|
||
// wait for initial null snapshot to avoid potential races. | ||
const snapshot = await accumulator.awaitRemoteEvent(); | ||
expect(snapshot.exists).to.be.false; | ||
await test(); | ||
unsubscribe(); | ||
}); | ||
} | ||
|
||
it('create document with arrayUnion()', async () => { | ||
await withTestSetup(async () => { | ||
await docRef.set({ array: FieldValue.arrayUnion(1, 2) }); | ||
await expectLocalAndRemoteEvent({ array: [1, 2] }); | ||
}); | ||
}); | ||
|
||
it('append to array via update()', async () => { | ||
await withTestSetup(async () => { | ||
await writeInitialData({ array: [1, 3] }); | ||
await docRef.update({ array: FieldValue.arrayUnion(2, 1, 4) }); | ||
await expectLocalAndRemoteEvent({ array: [1, 3, 2, 4] }); | ||
}); | ||
}); | ||
|
||
it('append to array via set(..., {merge: true})', async () => { | ||
await withTestSetup(async () => { | ||
await writeInitialData({ array: [1, 3] }); | ||
await docRef.set( | ||
{ array: FieldValue.arrayUnion(2, 1, 4) }, | ||
{ merge: true } | ||
); | ||
await expectLocalAndRemoteEvent({ array: [1, 3, 2, 4] }); | ||
}); | ||
}); | ||
|
||
it('append object to array via update()', async () => { | ||
await withTestSetup(async () => { | ||
await writeInitialData({ array: [{ a: 'hi' }] }); | ||
await docRef.update({ | ||
array: FieldValue.arrayUnion({ a: 'hi' }, { a: 'bye' }) | ||
}); | ||
await expectLocalAndRemoteEvent({ array: [{ a: 'hi' }, { a: 'bye' }] }); | ||
}); | ||
}); | ||
|
||
it('remove from array via update()', async () => { | ||
await withTestSetup(async () => { | ||
await writeInitialData({ array: [1, 3, 1, 3] }); | ||
await docRef.update({ array: FieldValue.arrayRemove(1, 4) }); | ||
await expectLocalAndRemoteEvent({ array: [3, 3] }); | ||
}); | ||
}); | ||
|
||
it('remove from array via set(..., {merge: true})', async () => { | ||
await withTestSetup(async () => { | ||
await writeInitialData({ array: [1, 3, 1, 3] }); | ||
await docRef.set( | ||
{ array: FieldValue.arrayRemove(1, 4) }, | ||
{ merge: true } | ||
); | ||
await expectLocalAndRemoteEvent({ array: [3, 3] }); | ||
}); | ||
}); | ||
|
||
it('remove object from array via update()', async () => { | ||
await withTestSetup(async () => { | ||
await writeInitialData({ array: [{ a: 'hi' }, { a: 'bye' }] }); | ||
await docRef.update({ array: FieldValue.arrayRemove({ a: 'hi' }) }); | ||
await expectLocalAndRemoteEvent({ array: [{ a: 'bye' }] }); | ||
}); | ||
}); | ||
|
||
it('arrayUnion() supports DocumentReference', async () => { | ||
await withTestSetup(async () => { | ||
await docRef.set({ array: FieldValue.arrayUnion(docRef) }); | ||
await expectLocalAndRemoteEvent({ array: [docRef] }); | ||
}); | ||
}); | ||
|
||
/** | ||
* Unlike the withTestSetup() tests above, these tests intentionally avoid | ||
* having any ongoing listeners so that we can test what gets stored in the | ||
* offline cache based purely on the write acknowledgement (without receiving | ||
* an updated document via watch). As such they also rely on persistence | ||
* being enabled so documents remain in the cache after the write. | ||
*/ | ||
// eslint-disable-next-line no-restricted-properties | ||
(persistence ? describe : describe.skip)('Server Application: ', () => { | ||
it('set() with no cached base doc', async () => { | ||
await withTestDoc(persistence, async docRef => { | ||
await docRef.set({ array: FieldValue.arrayUnion(1, 2) }); | ||
const snapshot = await docRef.get({ source: 'cache' }); | ||
expect(snapshot.data()).to.deep.equal({ array: [1, 2] }); | ||
}); | ||
}); | ||
|
||
it('update() with no cached base doc', async () => { | ||
let path: string | null = null; | ||
// Write an initial document in an isolated Firestore instance so it's not | ||
// stored in our cache | ||
await withTestDoc(persistence, async docRef => { | ||
path = docRef.path; | ||
await docRef.set({ array: [42] }); | ||
}); | ||
|
||
await withTestDb(persistence, async db => { | ||
const docRef = db.doc(path!); | ||
await docRef.update({ array: FieldValue.arrayUnion(1, 2) }); | ||
|
||
// Nothing should be cached since it was an update and we had no base | ||
// doc. | ||
let errCaught = false; | ||
try { | ||
await docRef.get({ source: 'cache' }); | ||
} catch (err) { | ||
expect(err.code).to.equal('unavailable'); | ||
errCaught = true; | ||
} | ||
expect(errCaught).to.be.true; | ||
}); | ||
}); | ||
|
||
it('set(..., {merge}) with no cached based doc', async () => { | ||
let path: string | null = null; | ||
// Write an initial document in an isolated Firestore instance so it's not | ||
// stored in our cache | ||
await withTestDoc(persistence, async docRef => { | ||
path = docRef.path; | ||
await docRef.set({ array: [42] }); | ||
}); | ||
|
||
await withTestDb(persistence, async db => { | ||
const docRef = db.doc(path!); | ||
await docRef.set( | ||
{ array: FieldValue.arrayUnion(1, 2) }, | ||
{ merge: true } | ||
); | ||
|
||
// Document will be cached but we'll be missing 42. | ||
const snapshot = await docRef.get({ source: 'cache' }); | ||
expect(snapshot.data()).to.deep.equal({ array: [1, 2] }); | ||
}); | ||
}); | ||
|
||
it('update() with cached base doc using arrayUnion()', async () => { | ||
await withTestDoc(persistence, async docRef => { | ||
await docRef.set({ array: [42] }); | ||
await docRef.update({ array: FieldValue.arrayUnion(1, 2) }); | ||
const snapshot = await docRef.get({ source: 'cache' }); | ||
expect(snapshot.data()).to.deep.equal({ array: [42, 1, 2] }); | ||
}); | ||
}); | ||
|
||
it('update() with cached base doc using arrayRemove()', async () => { | ||
await withTestDoc(persistence, async docRef => { | ||
await docRef.set({ array: [42, 1, 2] }); | ||
await docRef.update({ array: FieldValue.arrayRemove(1, 2) }); | ||
const snapshot = await docRef.get({ source: 'cache' }); | ||
expect(snapshot.data()).to.deep.equal({ array: [42] }); | ||
}); | ||
}); | ||
}); | ||
}); |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copied