mirror of
https://github.com/zhigang1992/react-native-firebase.git
synced 2026-05-11 23:48:56 +08:00
103 lines
3.8 KiB
JavaScript
103 lines
3.8 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.
|
|
*
|
|
*/
|
|
|
|
describe('firebase', () => {
|
|
it('it should allow read the default app from native', () => {
|
|
// app is created in tests app before all hook
|
|
should.equal(firebase.app()._nativeInitialized, true);
|
|
should.equal(firebase.app().name, '[DEFAULT]');
|
|
});
|
|
|
|
it('it should create js apps for natively initialized apps', () => {
|
|
should.equal(firebase.app('secondaryFromNative')._nativeInitialized, true);
|
|
should.equal(firebase.app('secondaryFromNative').name, 'secondaryFromNative');
|
|
});
|
|
|
|
it('natively initialized apps should have options available in js', () => {
|
|
const platformAppConfig = FirebaseHelpers.app.config();
|
|
should.equal(firebase.app().options.apiKey, platformAppConfig.apiKey);
|
|
should.equal(firebase.app().options.appId, platformAppConfig.appId);
|
|
should.equal(firebase.app().options.databaseURL, platformAppConfig.databaseURL);
|
|
should.equal(firebase.app().options.messagingSenderId, platformAppConfig.messagingSenderId);
|
|
should.equal(firebase.app().options.projectId, platformAppConfig.projectId);
|
|
should.equal(firebase.app().options.storageBucket, platformAppConfig.storageBucket);
|
|
});
|
|
|
|
it('it should initialize dynamic apps', () => {
|
|
const name = `testscoreapp${FirebaseHelpers.id}`;
|
|
const platformAppConfig = FirebaseHelpers.app.config();
|
|
return firebase.initializeApp(platformAppConfig, name).then(newApp => {
|
|
newApp.name.should.equal(name);
|
|
newApp.toString().should.equal(name);
|
|
newApp.options.apiKey.should.equal(platformAppConfig.apiKey);
|
|
return newApp.delete();
|
|
});
|
|
});
|
|
|
|
it('SDK_VERSION should return a string version', () => {
|
|
firebase.SDK_VERSION.should.be.a.String();
|
|
});
|
|
});
|
|
|
|
describe('firebase -> X', () => {
|
|
it('apps should provide an array of apps', () => {
|
|
should.equal(!!firebase.apps.length, true);
|
|
should.equal(firebase.apps.includes(firebase.app('[DEFAULT]')), true);
|
|
return Promise.resolve();
|
|
});
|
|
|
|
it('apps can get and set data collection', async () => {
|
|
firebase.app().automaticDataCollectionEnabled = false;
|
|
should.equal(firebase.app().automaticDataCollectionEnabled, false);
|
|
});
|
|
|
|
it('apps can be deleted', async () => {
|
|
const name = `testscoreapp${FirebaseHelpers.id}`;
|
|
const platformAppConfig = FirebaseHelpers.app.config();
|
|
const newApp = await firebase.initializeApp(platformAppConfig, name);
|
|
|
|
newApp.name.should.equal(name);
|
|
newApp.toString().should.equal(name);
|
|
newApp.options.apiKey.should.equal(platformAppConfig.apiKey);
|
|
|
|
await newApp.delete();
|
|
|
|
(() => {
|
|
newApp.delete();
|
|
}).should.throw(`Firebase App named '${name}' already deleted`);
|
|
|
|
(() => {
|
|
firebase.app(name);
|
|
}).should.throw(`No Firebase App '${name}' has been created - call firebase.initializeApp()`);
|
|
});
|
|
|
|
it('prevents the default app from being deleted', async () => {
|
|
firebase
|
|
.app()
|
|
.delete()
|
|
.should.be.rejectedWith('Unable to delete the default native firebase app instance.');
|
|
});
|
|
|
|
it('extendApp should provide additional functionality', () => {
|
|
const extension = {};
|
|
firebase.app().extendApp({
|
|
extension,
|
|
});
|
|
firebase.app().extension.should.equal(extension);
|
|
});
|
|
});
|