Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Container Engine hello world sample #93

Merged
merged 1 commit into from
Apr 4, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions containerengine/hello-world/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Copyright 2016, Google, Inc.
# 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.

FROM node:4
EXPOSE 8080
COPY server.js .
CMD node server.js
24 changes: 24 additions & 0 deletions containerengine/hello-world/server.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// Copyright 2016, Google, Inc.
// 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.

'use strict';

// [START all]
var http = require('http');
var handleRequest = function(request, response) {
response.writeHead(200);
response.end('Hello Kubernetes!');
};
var www = http.createServer(handleRequest);
www.listen(process.env.PORT || 8080);
// [END all]
66 changes: 36 additions & 30 deletions test/appengine/all.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ var cwd = process.cwd();
var projectId = process.env.GCLOUD_PROJECT;

function getPath(dir) {
return path.join(cwd, '/../../appengine/', dir);
return path.join(cwd, '/../../', dir);
}

function changeScaling(dir) {
Expand All @@ -42,38 +42,38 @@ function changeScaling(dir) {

var sampleTests = [
{
dir: 'analytics',
dir: 'appengine/analytics',
cmd: 'node',
args: ['app.js'],
msg: 'Event tracked.'
},
{
dir: 'bower',
dir: 'appengine/bower',
cmd: 'node',
args: ['server.js'],
msg: 'Express.js + Bower on Google App Engine.'
},
{
dir: 'cloudsql',
dir: 'appengine/cloudsql',
cmd: 'node',
args: ['app.js'],
msg: 'Last 10 visits:',
TRAVIS: true
},
{
dir: 'datastore',
dir: 'appengine/datastore',
cmd: 'node',
args: ['app.js'],
msg: 'Last 10 visits:'
},
{
dir: 'disk',
dir: 'appengine/disk',
cmd: 'node',
args: ['app.js'],
msg: 'Instance:'
},
{
dir: 'express',
dir: 'appengine/express',
deploy: true,
promote: true,
cmd: 'node',
Expand All @@ -82,75 +82,75 @@ var sampleTests = [
TRAVIS_NODE_VERSION: '0.10'
},
{
dir: 'express-memcached-session',
dir: 'appengine/express-memcached-session',
cmd: 'node',
args: ['server.js'],
msg: 'Viewed',
TRAVIS_NODE_VERSION: '0.10'
},
{
dir: 'geddy',
dir: 'appengine/geddy',
cmd: 'node',
args: ['node_modules/geddy/bin/cli.js'],
msg: 'Hello, World! Geddy.js on Google App Engine.',
TRAVIS_NODE_VERSION: 'stable'
},
{
dir: 'grunt',
dir: 'appengine/grunt',
deploy: true,
cmd: 'node',
args: ['./src/bin/www'],
msg: 'Hello World! Express.js + Grunt.js on Google App Engine.',
TRAVIS_NODE_VERSION: '0.12'
},
{
dir: 'hello-world',
dir: 'appengine/hello-world',
cmd: 'node',
args: ['app.js'],
msg: 'Hello, world!'
},
{
dir: 'kraken',
dir: 'appengine/kraken',
cmd: 'node',
args: ['server.js'],
msg: 'Hello World! Kraken.js on Google App Engine.',
code: 304
},
{
dir: 'logging',
dir: 'appengine/logging',
cmd: 'node',
args: ['app.js'],
msg: 'Logged'
},
{
dir: 'loopback',
dir: 'appengine/loopback',
cmd: 'node',
args: ['server/server.js'],
msg: 'LoopBack.js on Google App Engine.',
code: 304
},
{
dir: 'mailgun',
dir: 'appengine/mailgun',
cmd: 'node',
args: ['app.js'],
msg: 'Express.js + Mailgun on Google App Engine.'
},
{
dir: 'memcached',
dir: 'appengine/memcached',
cmd: 'node',
args: ['app.js'],
msg: 'Value:',
test: /Value: \d\.\d+/
},
{
dir: 'mongodb',
dir: 'appengine/mongodb',
cmd: 'node',
args: ['server.js'],
msg: 'IPs:',
TRAVIS: true
},
{
dir: 'pubsub',
dir: 'appengine/pubsub',
cmd: 'node',
args: ['app.js'],
msg: 'Messages received by this instance:',
Expand All @@ -160,31 +160,31 @@ var sampleTests = [
}
},
{
dir: 'redis',
dir: 'appengine/redis',
cmd: 'node',
args: ['server.js'],
msg: '127.0.0.1'
},
{
dir: 'restify',
dir: 'appengine/restify',
cmd: 'node',
args: ['server.js'],
msg: 'Hello World! Restify.js on Google App Engine.'
},
{
dir: 'sendgrid',
dir: 'appengine/sendgrid',
cmd: 'node',
args: ['app.js'],
msg: 'Express.js + Sendgrid on Google App Engine.'
},
{
dir: 'static-files',
dir: 'appengine/static-files',
cmd: 'node',
args: ['app.js'],
msg: 'This is a static file serving example.'
},
{
dir: 'storage',
dir: 'appengine/storage',
cmd: 'node',
args: ['app.js'],
msg: '<title>Static Files</title>',
Expand All @@ -193,24 +193,30 @@ var sampleTests = [
}
},
{
dir: 'webpack',
dir: 'appengine/webpack',
cmd: 'node',
args: ['server.js'],
msg: 'Express.js + Webpack on Google App Engine.'
},
{
dir: 'websockets',
dir: 'appengine/websockets',
cmd: 'node',
args: ['app.js'],
msg: 'Echo demo'
},
{
dir: 'containerengine/hello-world',
cmd: 'node',
args: ['server.js'],
msg: 'Hello Kubernetes!'
}
];

if (process.env.TRAVIS_NODE_VERSION === '0.10') {
// For some reason the "npm install" step for the Sails sample doesn't work on
// Travis when using Node.js stable. It works locally, however.
sampleTests.push({
dir: 'sails',
dir: 'appengine/sails',
cmd: 'node',
args: ['app.js'],
msg: 'Hello World! Sails.js on Google App Engine.',
Expand All @@ -220,22 +226,22 @@ if (process.env.TRAVIS_NODE_VERSION === '0.10') {

if (process.env.TRAVIS_NODE_VERSION === 'stable') {
sampleTests.push({
dir: 'hapi',
dir: 'appengine/hapi',
cmd: 'node',
args: ['index.js'],
msg: 'Hello World! Hapi.js on Google App Engine.',
TRAVIS_NODE_VERSION: 'stable'
});
sampleTests.push({
dir: 'koa',
dir: 'appengine/koa',
deploy: true,
cmd: 'node',
args: ['--harmony', 'app.js'],
msg: 'Hello World! Koa.js on Google App Engine.',
TRAVIS_NODE_VERSION: 'stable'
});
sampleTests.push({
dir: 'parse-server',
dir: 'appengine/parse-server',
cmd: 'node',
args: ['server.js'],
msg: 'Hello, world!',
Expand Down Expand Up @@ -293,7 +299,7 @@ var port = 8080;
sampleTests.forEach(function (sample) {
sample.env = sample.env || {};
sample.env.PORT = port;
if (sample.dir === 'parse-server') {
if (sample.dir === 'appengine/parse-server') {
sample.env.SERVER_URL = sample.env.SERVER_URL + port + '/parse';
}
port++;
Expand Down