| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- // Copyright 2018 Google
- //
- // 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.
- const assert = require('assert');
- const functionsV1 = require('firebase-functions/v1');
- const functionsV2 = require('firebase-functions/v2');
- exports.dataTest = functionsV1.https.onRequest((request, response) => {
- assert.deepEqual(request.body, {
- data: {
- bool: true,
- int: 2,
- long: {
- value: '9876543210',
- '@type': 'type.googleapis.com/google.protobuf.Int64Value',
- },
- string: 'four',
- array: [5, 6],
- 'null': null,
- }
- });
- response.send({
- data: {
- message: 'stub response',
- code: 42,
- long: {
- value: '420',
- '@type': 'type.googleapis.com/google.protobuf.Int64Value',
- },
- }
- });
- });
- exports.scalarTest = functionsV1.https.onRequest((request, response) => {
- assert.deepEqual(request.body, { data: 17 });
- response.send({ data: 76 });
- });
- exports.tokenTest = functionsV1.https.onRequest((request, response) => {
- assert.equal('Bearer token', request.get('Authorization'));
- assert.deepEqual(request.body, { data: {} });
- response.send({ data: {} });
- });
- exports.FCMTokenTest = functionsV1.https.onRequest((request, response) => {
- assert.equal(request.get('Firebase-Instance-ID-Token'), 'fakeFCMToken');
- assert.deepEqual(request.body, { data: {} });
- response.send({ data: {} });
- });
- exports.nullTest = functionsV1.https.onRequest((request, response) => {
- assert.deepEqual(request.body, { data: null });
- response.send({ data: null });
- });
- exports.missingResultTest = functionsV1.https.onRequest((request, response) => {
- assert.deepEqual(request.body, { data: null });
- response.send({});
- });
- exports.unhandledErrorTest = functionsV1.https.onRequest((request, response) => {
- // Fail in a way that the client shouldn't see.
- throw 'nope';
- });
- exports.unknownErrorTest = functionsV1.https.onRequest((request, response) => {
- // Send an http error with a body with an explicit code.
- response.status(400).send({
- error: {
- status: 'THIS_IS_NOT_VALID',
- message: 'this should be ignored',
- },
- });
- });
- exports.explicitErrorTest = functionsV1.https.onRequest((request, response) => {
- // Send an http error with a body with an explicit code.
- // Note that eventually the SDK will have a helper to automatically return
- // the appropriate http status code for an error.
- response.status(400).send({
- error: {
- status: 'OUT_OF_RANGE',
- message: 'explicit nope',
- details: {
- start: 10,
- end: 20,
- long: {
- value: '30',
- '@type': 'type.googleapis.com/google.protobuf.Int64Value',
- },
- },
- },
- });
- });
- exports.httpErrorTest = functionsV1.https.onRequest((request, response) => {
- // Send an http error with no body.
- response.status(400).send();
- });
- // Regression test for https://github.com/firebase/firebase-ios-sdk/issues/9855
- exports.throwTest = functionsV1.https.onCall((data) => {
- throw new functionsV1.https.HttpsError('invalid-argument', 'Invalid test requested.');
- });
- exports.timeoutTest = functionsV1.https.onRequest((request, response) => {
- // Wait for longer than 500ms.
- setTimeout(() => response.send({ data: true }), 500);
- });
- const streamData = ["hello", "world", "this", "is", "cool"]
- function sleep(ms) {
- return new Promise(resolve => setTimeout(resolve, ms));
- };
- async function* generateText() {
- for (const chunk of streamData) {
- yield chunk;
- await sleep(1000);
- }
- };
- exports.genStream = functionsV2.https.onCall(
- async (request, response) => {
- if (request.acceptsStreaming) {
- for await (const chunk of generateText()) {
- response.sendChunk({ chunk });
- }
- }
- return data.join(" ");
- }
- );
- exports.genStreamError = functionsV2.https.onCall(
- async (request, response) => {
- if (request.acceptsStreaming) {
- for await (const chunk of generateText()) {
- response.write({ chunk });
- }
- throw Error("BOOM")
- }
- }
- );
|