203 lines
6.5 KiB
JavaScript
203 lines
6.5 KiB
JavaScript
const TEST_DATA = TestHelpers.functions.data;
|
|
|
|
describe('functions()', () => {
|
|
describe('httpsCallable(fnName)(args)', () => {
|
|
it('accepts primitive args: undefined', async () => {
|
|
const functionRunner = firebase.functions().httpsCallable('runTest');
|
|
const response = await functionRunner();
|
|
response.data.should.equal('null');
|
|
});
|
|
|
|
it('accepts primitive args: string', async () => {
|
|
const functionRunner = firebase.functions().httpsCallable('runTest');
|
|
const response = await functionRunner('hello');
|
|
response.data.should.equal('string');
|
|
});
|
|
|
|
it('accepts primitive args: number', async () => {
|
|
const functionRunner = firebase.functions().httpsCallable('runTest');
|
|
const response = await functionRunner(123);
|
|
response.data.should.equal('number');
|
|
});
|
|
|
|
it('accepts primitive args: boolean', async () => {
|
|
const functionRunner = firebase.functions().httpsCallable('runTest');
|
|
const response = await functionRunner(true);
|
|
response.data.should.equal('boolean');
|
|
});
|
|
|
|
it('accepts primitive args: null', async () => {
|
|
const functionRunner = firebase.functions().httpsCallable('runTest');
|
|
const response = await functionRunner(null);
|
|
response.data.should.equal('null');
|
|
});
|
|
|
|
it('accepts array args', async () => {
|
|
const functionRunner = firebase.functions().httpsCallable('runTest');
|
|
const response = await functionRunner([1, 2, 3, 4]);
|
|
response.data.should.equal('array');
|
|
});
|
|
|
|
it('accepts object args', async () => {
|
|
const type = 'simpleObject';
|
|
const inputData = TEST_DATA[type];
|
|
const functionRunner = firebase.functions().httpsCallable('runTest');
|
|
const { data: outputData } = await functionRunner({
|
|
type,
|
|
inputData,
|
|
});
|
|
should.deepEqual(outputData, inputData);
|
|
});
|
|
|
|
it('accepts complex nested objects', async () => {
|
|
const type = 'advancedObject';
|
|
const inputData = TEST_DATA[type];
|
|
const functionRunner = firebase.functions().httpsCallable('runTest');
|
|
const { data: outputData } = await functionRunner({
|
|
type,
|
|
inputData,
|
|
});
|
|
should.deepEqual(outputData, inputData);
|
|
});
|
|
|
|
it('accepts complex nested arrays', async () => {
|
|
const type = 'advancedArray';
|
|
const inputData = TEST_DATA[type];
|
|
const functionRunner = firebase.functions().httpsCallable('runTest');
|
|
const { data: outputData } = await functionRunner({
|
|
type,
|
|
inputData,
|
|
});
|
|
should.deepEqual(outputData, inputData);
|
|
});
|
|
});
|
|
|
|
describe('HttpsError', () => {
|
|
it('errors return instance of HttpsError', async () => {
|
|
const functionRunner = firebase.functions().httpsCallable('runTest');
|
|
try {
|
|
await functionRunner({});
|
|
return Promise.reject(new Error('Function did not reject with error.'));
|
|
} catch (e) {
|
|
should.equal(e.details, null);
|
|
e.code.should.equal('invalid-argument');
|
|
e.message.should.equal('Invalid test requested.');
|
|
}
|
|
|
|
return Promise.resolve();
|
|
});
|
|
|
|
it('HttpsError.details -> allows returning complex data', async () => {
|
|
let type = 'advancedObject';
|
|
let inputData = TEST_DATA[type];
|
|
const functionRunner = firebase.functions().httpsCallable('runTest');
|
|
try {
|
|
await functionRunner({
|
|
type,
|
|
inputData,
|
|
asError: true,
|
|
});
|
|
return Promise.reject(new Error('Function did not reject with error.'));
|
|
} catch (e) {
|
|
should.deepEqual(e.details, inputData);
|
|
e.code.should.equal('cancelled');
|
|
e.message.should.equal(
|
|
'Response data was requested to be sent as part of an Error payload, so here we are!'
|
|
);
|
|
}
|
|
|
|
type = 'advancedArray';
|
|
inputData = TEST_DATA[type];
|
|
try {
|
|
await functionRunner({
|
|
type,
|
|
inputData,
|
|
asError: true,
|
|
});
|
|
return Promise.reject(new Error('Function did not reject with error.'));
|
|
} catch (e) {
|
|
should.deepEqual(e.details, inputData);
|
|
e.code.should.equal('cancelled');
|
|
e.message.should.equal(
|
|
'Response data was requested to be sent as part of an Error payload, so here we are!'
|
|
);
|
|
}
|
|
|
|
return Promise.resolve();
|
|
});
|
|
|
|
it('HttpsError.details -> allows returning primitives', async () => {
|
|
let type = 'number';
|
|
let inputData = TEST_DATA[type];
|
|
const functionRunner = firebase.functions().httpsCallable('runTest');
|
|
try {
|
|
await functionRunner({
|
|
type,
|
|
inputData,
|
|
asError: true,
|
|
});
|
|
return Promise.reject(new Error('Function did not reject with error.'));
|
|
} catch (e) {
|
|
e.code.should.equal('cancelled');
|
|
e.message.should.equal(
|
|
'Response data was requested to be sent as part of an Error payload, so here we are!'
|
|
);
|
|
should.deepEqual(e.details, inputData);
|
|
}
|
|
|
|
type = 'string';
|
|
inputData = TEST_DATA[type];
|
|
try {
|
|
await functionRunner({
|
|
type,
|
|
inputData,
|
|
asError: true,
|
|
});
|
|
return Promise.reject(new Error('Function did not reject with error.'));
|
|
} catch (e) {
|
|
should.deepEqual(e.details, inputData);
|
|
e.code.should.equal('cancelled');
|
|
e.message.should.equal(
|
|
'Response data was requested to be sent as part of an Error payload, so here we are!'
|
|
);
|
|
}
|
|
|
|
type = 'boolean';
|
|
inputData = TEST_DATA[type];
|
|
try {
|
|
await functionRunner({
|
|
type,
|
|
inputData,
|
|
asError: true,
|
|
});
|
|
return Promise.reject(new Error('Function did not reject with error.'));
|
|
} catch (e) {
|
|
should.deepEqual(e.details, inputData);
|
|
e.code.should.equal('cancelled');
|
|
e.message.should.equal(
|
|
'Response data was requested to be sent as part of an Error payload, so here we are!'
|
|
);
|
|
}
|
|
|
|
type = 'null';
|
|
inputData = TEST_DATA[type];
|
|
try {
|
|
await functionRunner({
|
|
type,
|
|
inputData,
|
|
asError: true,
|
|
});
|
|
return Promise.reject(new Error('Function did not reject with error.'));
|
|
} catch (e) {
|
|
should.deepEqual(e.details, inputData);
|
|
e.code.should.equal('cancelled');
|
|
e.message.should.equal(
|
|
'Response data was requested to be sent as part of an Error payload, so here we are!'
|
|
);
|
|
}
|
|
|
|
return Promise.resolve();
|
|
});
|
|
});
|
|
});
|