-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add run_events_pubsub Signed-off-by: Grant Timmerman <timmerman+devrel@google.com> * fix: address PR issues Signed-off-by: Grant Timmerman <timmerman+devrel@google.com> * fix: formalize CE function response Signed-off-by: Grant Timmerman <timmerman+devrel@google.com> * fix: add base64 data Signed-off-by: Grant Timmerman <timmerman+devrel@google.com> * docs: remove bodyparser Signed-off-by: Grant Timmerman <timmerman+devrel@google.com> * docs: address comments about run events pubsub Signed-off-by: Grant Timmerman <timmerman+devrel@google.com>
- Loading branch information
Showing
8 changed files
with
232 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Dockerfile | ||
.dockerignore | ||
node_modules | ||
npm-debug.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Copyright 2020 Google LLC. All rights reserved. | ||
# Use of this source code is governed by the Apache 2.0 | ||
# license that can be found in the LICENSE file. | ||
|
||
# [START run_events_pubsub_dockerfile] | ||
|
||
# Use the official lightweight Node.js 10 image. | ||
# https://hub.docker.com/_/node | ||
FROM node:10-slim | ||
|
||
# Create and change to the app directory. | ||
WORKDIR /usr/src/app | ||
|
||
# Copy application dependency manifests to the container image. | ||
# A wildcard is used to ensure both package.json AND package-lock.json are copied. | ||
# Copying this separately prevents re-running npm install on every code change. | ||
COPY package*.json ./ | ||
|
||
# Install dependencies. | ||
# If you add a package-lock.json speed your build by switching to 'npm ci'. | ||
# RUN npm ci --only=production | ||
RUN npm install --production | ||
|
||
# Copy local code to the container image. | ||
COPY . . | ||
|
||
# Run the web service on container startup. | ||
CMD [ "npm", "start" ] | ||
|
||
# [END run_events_pubsub_dockerfile] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Events for Cloud Run – Pub/Sub tutorial | ||
|
||
This sample shows how to create a service that processes Pub/Sub messages. | ||
|
||
For more details on how to work with this sample read the [Google Cloud Run Node.js Samples README](https://github.com/GoogleCloudPlatform/nodejs-docs-samples/tree/master/run). | ||
|
||
## Dependencies | ||
|
||
* **express**: Web server framework. | ||
* **mocha**: [development] Test running framework. | ||
* **supertest**: [development] HTTP assertion test client. | ||
|
||
## Quickstart | ||
|
||
Create a Cloud Pub/Sub topic: | ||
|
||
```sh | ||
gcloud pubsub topics create my-topic | ||
``` | ||
|
||
Create a Cloud Pub/Sub trigger: | ||
|
||
```sh | ||
gcloud alpha events triggers create pubsub-trigger \ | ||
--target-service cloudrun-events-pubsub \ | ||
--type com.google.cloud.pubsub.topic.publish \ | ||
--parameters topic=my-topic | ||
``` | ||
|
||
Deploy your Cloud Run service: | ||
|
||
```sh | ||
gcloud builds submit \ | ||
--tag gcr.io/$(gcloud config get-value project)/cloudrun-events-pubsub | ||
gcloud run deploy cloudrun-events-pubsub \ | ||
--image gcr.io/$(gcloud config get-value project)/cloudrun-events-pubsub | ||
``` | ||
|
||
## Test | ||
|
||
Test your Cloud Run service by publishing a message to the topic: | ||
|
||
```sh | ||
gcloud pubsub topics publish my-topic --message="Hello there" | ||
``` | ||
|
||
You may observe the Run service receiving an event in Cloud Logging. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// Copyright 2020 Google LLC. All rights reserved. | ||
// Use of this source code is governed by the Apache 2.0 | ||
// license that can be found in the LICENSE file. | ||
|
||
// [START run_events_pubsub_server_setup] | ||
const express = require('express'); | ||
const app = express(); | ||
app.use(express.json()); | ||
|
||
// [END run_events_pubsub_server_setup] | ||
|
||
// [START run_events_pubsub_handler] | ||
app.post('/', (req, res) => { | ||
if (!req.body) { | ||
const msg = 'no Pub/Sub message received'; | ||
res.status(400).send(`Bad Request: ${msg}`); | ||
return; | ||
} | ||
if (!req.body.message) { | ||
const msg = 'invalid Pub/Sub message format'; | ||
res.status(400).send(`Bad Request: ${msg}`); | ||
return; | ||
} | ||
const pubSubMessage = req.body.message; | ||
const name = pubSubMessage.data | ||
? Buffer.from(pubSubMessage.data, 'base64').toString().trim() | ||
: 'World'; | ||
|
||
res.send(`Hello, ${name}! ID: ${req.get('ce-id') || ''}`); | ||
}); | ||
|
||
module.exports = app; | ||
// [END run_events_pubsub_handler] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// Copyright 2020 Google LLC. All rights reserved. | ||
// Use of this source code is governed by the Apache 2.0 | ||
// license that can be found in the LICENSE file. | ||
|
||
// [START run_pubsub_server] | ||
const app = require('./app.js'); | ||
const PORT = process.env.PORT || 8080; | ||
|
||
app.listen(PORT, () => | ||
console.log(`nodejs-run-events-pubsub listening on port ${PORT}`) | ||
); | ||
// [END run_pubsub_server] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"name": "cloud-run-events-pubsub", | ||
"version": "1.0.0", | ||
"private": true, | ||
"description": "Simple Events for Cloud Run – Pub/Sub sample", | ||
"main": "index.js", | ||
"author": "Google LLC", | ||
"license": "Apache-2.0", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git" | ||
}, | ||
"engines": { | ||
"node": ">= 8.0.0" | ||
}, | ||
"scripts": { | ||
"start": "node index.js", | ||
"test": "mocha test/*.test.js --check-leaks" | ||
}, | ||
"dependencies": { | ||
"express": "^4.16.4" | ||
}, | ||
"devDependencies": { | ||
"mocha": "^7.0.0", | ||
"sinon": "^9.0.0", | ||
"supertest": "^4.0.2", | ||
"uuid": "^8.0.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
// Copyright 2019, Google LLC. | ||
// 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. | ||
|
||
// NOTE: | ||
// This app can only be fully tested when deployed, because | ||
// Pub/Sub requires a live endpoint URL to hit. Nevertheless, | ||
// these tests mock it and partially test it locally. | ||
|
||
'use strict'; | ||
|
||
const assert = require('assert'); | ||
const path = require('path'); | ||
const supertest = require('supertest'); | ||
|
||
let request; | ||
|
||
describe('Unit Tests', () => { | ||
before(() => { | ||
const app = require(path.join(__dirname, '..', 'app')); | ||
request = supertest(app); | ||
}); | ||
|
||
describe('should fail', () => { | ||
it(`on a Bad Request with an empty payload`, async () => { | ||
await request.post('/').type('json').send('').expect(400); | ||
}); | ||
|
||
it(`on a Bad Request with an invalid payload`, async () => { | ||
await request | ||
.post('/') | ||
.type('json') | ||
.send({nomessage: 'invalid'}) | ||
.expect(400); | ||
}); | ||
|
||
it(`on a Bad Request with an invalid mimetype`, async () => { | ||
await request.post('/').type('text').send('{message: true}').expect(400); | ||
}); | ||
}); | ||
|
||
describe('should succeed', () => { | ||
const data = Buffer.from('World').toString(`base64`); | ||
|
||
it(`with a minimally valid Pub/Sub Message`, async () => { | ||
await request | ||
.post('/') | ||
.type('json') | ||
.send({message: {data}}) | ||
.expect((res) => { | ||
assert.equal(res.text, 'Hello, World! ID: '); | ||
}); | ||
}); | ||
|
||
it(`with CloudEvent HTTP headers`, async () => { | ||
await request | ||
.post('/') | ||
.type('json') | ||
.set('ce-id', 1234) | ||
.send({message: {data}}) | ||
.expect((res) => { | ||
assert.equal(res.text, 'Hello, World! ID: 1234'); | ||
}); | ||
}); | ||
}); | ||
}); |