Files
react-native-firebase/packages/messaging/e2e/messaging.e2e.js
2019-08-02 21:19:15 +01:00

238 lines
7.5 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('messaging()', () => {
describe('namespace', () => {
it('accessible from firebase.app()', () => {
const app = firebase.app();
should.exist(app.messaging);
app.messaging().app.should.equal(app);
});
});
describe('setAutoInitEnabled()', () => {
it('throws if enabled is not a boolean', () => {
try {
firebase.messaging().setAutoInitEnabled(123);
return Promise.reject(new Error('Did not throw Error.'));
} catch (e) {
e.message.should.containEql("'enabled' expected a boolean value");
return Promise.resolve();
}
});
});
describe('getToken()', () => {
it('throws if authorizedEntity is not a string', () => {
try {
firebase.messaging().getToken(123);
return Promise.reject(new Error('Did not throw Error.'));
} catch (e) {
e.message.should.containEql("'authorizedEntity' expected a string value");
return Promise.resolve();
}
});
it('throws if scope is not a string', () => {
try {
firebase.messaging().getToken('123', 123);
return Promise.reject(new Error('Did not throw Error.'));
} catch (e) {
e.message.should.containEql("'scope' expected a string value");
return Promise.resolve();
}
});
});
describe('deleteToken()', () => {
it('throws if authorizedEntity is not a string', () => {
try {
firebase.messaging().deleteToken(123);
return Promise.reject(new Error('Did not throw Error.'));
} catch (e) {
e.message.should.containEql("'authorizedEntity' expected a string value");
return Promise.resolve();
}
});
it('throws if scope is not a string', () => {
try {
firebase.messaging().deleteToken('123', 123);
return Promise.reject(new Error('Did not throw Error.'));
} catch (e) {
e.message.should.containEql("'scope' expected a string value");
return Promise.resolve();
}
});
});
describe('onMessage()', () => {
it('throws if listener is not a function', () => {
try {
firebase.messaging().onMessage({});
return Promise.reject(new Error('Did not throw Error.'));
} catch (e) {
e.message.should.containEql("'listener' expected a function");
return Promise.resolve();
}
});
android.it('receives messages when the app is in the foreground', async () => {
const spy = sinon.spy();
const unsubscribe = firebase.messaging().onMessage(spy);
const token = await firebase.messaging().getToken();
await TestsAPI.messaging().sendToDevice(token, {
data: {
foo: 'bar',
doop: 'boop',
},
});
await Utils.spyToBeCalledOnceAsync(spy);
unsubscribe();
spy.firstCall.args[0].should.be.an.Object();
spy.firstCall.args[0].data.should.be.an.Object();
spy.firstCall.args[0].data.foo.should.eql('bar');
});
});
describe('onTokenRefresh()', () => {
it('throws if listener is not a function', () => {
try {
firebase.messaging().onTokenRefresh({});
return Promise.reject(new Error('Did not throw Error.'));
} catch (e) {
e.message.should.containEql("'listener' expected a function");
return Promise.resolve();
}
});
});
describe('onDeletedMessages()', () => {
it('throws if listener is not a function', () => {
try {
firebase.messaging().onDeletedMessages(123);
return Promise.reject(new Error('Did not throw Error.'));
} catch (e) {
e.message.should.containEql("'listener' expected a function");
return Promise.resolve();
}
});
});
describe('onMessageSent()', () => {
it('throws if listener is not a function', () => {
try {
firebase.messaging().onMessageSent(123);
return Promise.reject(new Error('Did not throw Error.'));
} catch (e) {
e.message.should.containEql("'listener' expected a function");
return Promise.resolve();
}
});
});
describe('onSendError()', () => {
it('throws if listener is not a function', () => {
try {
firebase.messaging().onSendError('123');
return Promise.reject(new Error('Did not throw Error.'));
} catch (e) {
e.message.should.containEql("'listener' expected a function");
return Promise.resolve();
}
});
});
describe('setBackgroundMessageHandler()', () => {
it('throws if handler is not a function', () => {
try {
firebase.messaging().setBackgroundMessageHandler('123');
return Promise.reject(new Error('Did not throw Error.'));
} catch (e) {
e.message.should.containEql("'handler' expected a function");
return Promise.resolve();
}
});
android.it('receives messages when the app is in the background', async () => {
const spy = sinon.spy();
const token = await firebase.messaging().getToken();
firebase.messaging().setBackgroundMessageHandler(remoteMessage => {
spy(remoteMessage);
return Promise.resolve();
});
await device.sendToHome();
await TestsAPI.messaging().sendToDevice(token, {
data: {
foo: 'bar',
doop: 'boop',
},
});
await Utils.spyToBeCalledOnceAsync(spy);
await device.launchApp({ newInstance: false });
spy.firstCall.args[0].should.be.an.Object();
spy.firstCall.args[0].data.should.be.an.Object();
spy.firstCall.args[0].data.foo.should.eql('bar');
});
});
describe('subscribeToTopic()', () => {
it('throws if topic is not a string', () => {
try {
firebase.messaging().subscribeToTopic(123);
return Promise.reject(new Error('Did not throw Error.'));
} catch (e) {
e.message.should.containEql("'topic' expected a string value");
return Promise.resolve();
}
});
it('throws if topic contains a /', () => {
try {
firebase.messaging().subscribeToTopic('foo/bar');
return Promise.reject(new Error('Did not throw Error.'));
} catch (e) {
e.message.should.containEql('\'topic\' must not include "/"');
return Promise.resolve();
}
});
});
describe('unsubscribeFromTopic()', () => {
it('throws if topic is not a string', () => {
try {
firebase.messaging().unsubscribeFromTopic(123);
return Promise.reject(new Error('Did not throw Error.'));
} catch (e) {
e.message.should.containEql("'topic' expected a string value");
return Promise.resolve();
}
});
it('throws if topic contains a /', () => {
try {
firebase.messaging().unsubscribeFromTopic('foo/bar');
return Promise.reject(new Error('Did not throw Error.'));
} catch (e) {
e.message.should.containEql('\'topic\' must not include "/"');
return Promise.resolve();
}
});
});
});