Files
react-native-firebase/packages/firestore/e2e/firestore.e2e.js
2020-06-22 14:46:46 +01:00

353 lines
12 KiB
JavaScript

/*
* Copyright (c) 2016-present Invertase Limited & Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this library 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.
*
*/
const { wipe } = require('./helpers');
describe('firestore()', () => {
before(() => wipe());
describe('namespace', () => {
it('accessible from firebase.app()', () => {
const app = firebase.app();
should.exist(app.firestore);
app.firestore().app.should.equal(app);
});
// removing as pending if module.options.hasMultiAppSupport = true
it('supports multiple apps', async () => {
firebase.firestore().app.name.should.equal('[DEFAULT]');
firebase
.firestore(firebase.app('secondaryFromNative'))
.app.name.should.equal('secondaryFromNative');
firebase
.app('secondaryFromNative')
.firestore()
.app.name.should.equal('secondaryFromNative');
});
});
describe('batch()', () => {
it('returns a new WriteBatch instance', () => {
const instance = firebase.firestore().batch();
instance.constructor.name.should.eql('FirestoreWriteBatch');
});
});
describe('clearPersistence()', () => {});
describe('collection()', () => {
it('throws if path is not a string', () => {
try {
firebase.firestore().collection(123);
return Promise.reject(new Error('Did not throw an Error.'));
} catch (error) {
error.message.should.containEql("'collectionPath' must be a string value");
return Promise.resolve();
}
});
it('throws if path is empty string', () => {
try {
firebase.firestore().collection('');
return Promise.reject(new Error('Did not throw an Error.'));
} catch (error) {
error.message.should.containEql("'collectionPath' must be a non-empty string");
return Promise.resolve();
}
});
it('throws if path does not point to a collection', () => {
try {
firebase.firestore().collection('foo/bar');
return Promise.reject(new Error('Did not throw an Error.'));
} catch (error) {
error.message.should.containEql("'collectionPath' must point to a collection");
return Promise.resolve();
}
});
it('returns a new CollectionReference', () => {
const collectionReference = firebase.firestore().collection('foo');
should.equal(collectionReference.constructor.name, 'FirestoreCollectionReference');
collectionReference.path.should.eql('foo');
});
});
describe('doc()', () => {
it('throws if path is not a string', () => {
try {
firebase.firestore().doc(123);
return Promise.reject(new Error('Did not throw an Error.'));
} catch (error) {
error.message.should.containEql("'documentPath' must be a string value");
return Promise.resolve();
}
});
it('throws if path is empty string', () => {
try {
firebase.firestore().doc('');
return Promise.reject(new Error('Did not throw an Error.'));
} catch (error) {
error.message.should.containEql("'documentPath' must be a non-empty string");
return Promise.resolve();
}
});
it('throws if path does not point to a document', () => {
try {
firebase.firestore().doc('foo/bar/baz');
return Promise.reject(new Error('Did not throw an Error.'));
} catch (error) {
error.message.should.containEql("'documentPath' must point to a document");
return Promise.resolve();
}
});
it('returns a new DocumentReference', () => {
const docRef = firebase.firestore().doc('foo/bar');
should.equal(docRef.constructor.name, 'FirestoreDocumentReference');
docRef.path.should.eql('foo/bar');
});
});
describe('collectionGroup()', () => {
it('throws if id is not a string', () => {
try {
firebase.firestore().collectionGroup(123);
return Promise.reject(new Error('Did not throw an Error.'));
} catch (error) {
error.message.should.containEql("'collectionId' must be a string value");
return Promise.resolve();
}
});
it('throws if id is empty', () => {
try {
firebase.firestore().collectionGroup('');
return Promise.reject(new Error('Did not throw an Error.'));
} catch (error) {
error.message.should.containEql("'collectionId' must be a non-empty string");
return Promise.resolve();
}
});
it('throws if id contains forward-slash', () => {
try {
firebase.firestore().collectionGroup('foo/bar');
return Promise.reject(new Error('Did not throw an Error.'));
} catch (error) {
error.message.should.containEql("'collectionId' must not contain '/'");
return Promise.resolve();
}
});
it('returns a new query instance', () => {
const query = firebase.firestore().collectionGroup('foo');
should.equal(query.constructor.name, 'FirestoreQuery');
});
it('performs a collection group query', async () => {
const docRef1 = firebase.firestore().doc('v6/collectionGroup1');
const docRef2 = firebase.firestore().doc('v6/collectionGroup2');
const docRef3 = firebase.firestore().doc('v6/collectionGroup3');
await Promise.all([
docRef1.collection('collectionGroup').add({ value: 1 }),
docRef1.collection('collectionGroup').add({ value: 2 }),
docRef2.collection('collectionGroup').add({ value: 1 }),
docRef2.collection('collectionGroup').add({ value: 2 }),
docRef3.collection('collectionGroup').add({ value: 1 }),
docRef3.collection('collectionGroup').add({ value: 2 }),
]);
const querySnapshot = await firebase
.firestore()
.collectionGroup('collectionGroup')
.where('value', '==', 2)
.get();
querySnapshot.size.should.eql(3);
querySnapshot.forEach(ds => {
ds.data().value.should.eql(2);
});
});
it('performs a collection group query with cursor queries', async () => {
const docRef = firebase.firestore().doc('v6/collectionGroupCursor');
await docRef.collection('collectionGroup').add({ value: 1 });
const startAt = await docRef.collection('collectionGroup').add({ value: 2 });
await docRef.collection('collectionGroup').add({ value: 3 });
const ds = await startAt.get();
const querySnapshot = await firebase
.firestore()
.collectionGroup('collectionGroup')
.orderBy('value')
.startAt(ds)
.get();
querySnapshot.size.should.eql(2);
querySnapshot.forEach((d, i) => {
d.data().value.should.eql(i + 2);
});
});
});
describe('disableNetwork() & enableNetwork()', () => {
it('disables and enables with no errors', async () => {
await firebase.firestore().disableNetwork();
await firebase.firestore().enableNetwork();
});
});
describe('runTransaction()', () => {
it('throws if updateFunction is not a function', () => {
try {
firebase.firestore().runTransaction('foo');
return Promise.reject(new Error('Did not throw an Error.'));
} catch (error) {
error.message.should.containEql("'updateFunction' must be a function");
return Promise.resolve();
}
});
});
describe('settings()', () => {
it('throws if settings is not an object', () => {
try {
firebase.firestore().settings('foo');
return Promise.reject(new Error('Did not throw an Error.'));
} catch (error) {
error.message.should.containEql("'settings' must be an object");
return Promise.resolve();
}
});
it('throws if passing an incorrect setting key', () => {
try {
firebase.firestore().settings({ foo: 'bar' });
return Promise.reject(new Error('Did not throw an Error.'));
} catch (error) {
error.message.should.containEql("'settings.foo' is not a valid settings field");
return Promise.resolve();
}
});
it('throws if cacheSizeBytes is not a number', () => {
try {
firebase.firestore().settings({ cacheSizeBytes: 'foo' });
return Promise.reject(new Error('Did not throw an Error.'));
} catch (error) {
error.message.should.containEql("'settings.cacheSizeBytes' must be a number value");
return Promise.resolve();
}
});
it('throws if cacheSizeBytes is less than 1MB', () => {
try {
firebase.firestore().settings({ cacheSizeBytes: 123 });
return Promise.reject(new Error('Did not throw an Error.'));
} catch (error) {
error.message.should.containEql("'settings.cacheSizeBytes' the minimum cache size");
return Promise.resolve();
}
});
it('accepts an unlimited cache size', () => {
firebase.firestore().settings({ cacheSizeBytes: firebase.firestore.CACHE_SIZE_UNLIMITED });
});
it('throws if host is not a string', () => {
try {
firebase.firestore().settings({ host: 123 });
return Promise.reject(new Error('Did not throw an Error.'));
} catch (error) {
error.message.should.containEql("'settings.host' must be a string value");
return Promise.resolve();
}
});
it('throws if host is an empty string', () => {
try {
firebase.firestore().settings({ host: '' });
return Promise.reject(new Error('Did not throw an Error.'));
} catch (error) {
error.message.should.containEql("'settings.host' must not be an empty string");
return Promise.resolve();
}
});
it('throws if persistence is not a boolean', () => {
try {
firebase.firestore().settings({ persistence: 'true' });
return Promise.reject(new Error('Did not throw an Error.'));
} catch (error) {
error.message.should.containEql("'settings.persistence' must be a boolean value");
return Promise.resolve();
}
});
it('throws if ssl is not a boolean', () => {
try {
firebase.firestore().settings({ ssl: 'true' });
return Promise.reject(new Error('Did not throw an Error.'));
} catch (error) {
error.message.should.containEql("'settings.ssl' must be a boolean value");
return Promise.resolve();
}
});
});
describe('Clear cached data persistence', () => {
it('should clear any cached data', async () => {
const db = firebase.firestore();
const id = 'foobar';
const ref = db.doc(`v6/${id}`);
await ref.set({ foo: 'bar' });
try {
await db.clearPersistence();
return Promise.reject(new Error('Did not throw an Error.'));
} catch (error) {
error.code.should.equal('firestore/failed-precondition');
}
const doc = await ref.get({ source: 'cache' });
should(doc.id).equal(id);
await db.terminate();
await db.clearPersistence();
try {
await ref.get({ source: 'cache' });
return Promise.reject(new Error('Did not throw an Error.'));
} catch (error) {
error.code.should.equal('firestore/unavailable');
return Promise.resolve();
}
});
});
});