mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
99 lines
3.8 KiB
JavaScript
99 lines
3.8 KiB
JavaScript
'use strict';
|
|
|
|
const fs = require('fs');
|
|
const expect = require('chai').expect;
|
|
const path = require('path');
|
|
const fse = require('fs-extra');
|
|
const BbPromise = require('bluebird');
|
|
const execSync = require('child_process').execSync;
|
|
const AWS = require('aws-sdk');
|
|
const testUtils = require('../utils/index');
|
|
|
|
const serverlessExec = path.join(__dirname, '..', '..', 'bin', 'serverless');
|
|
|
|
const tmpDir = testUtils.getTmpDirPath();
|
|
fse.mkdirsSync(tmpDir);
|
|
process.chdir(tmpDir);
|
|
|
|
const templateName = 'aws-nodejs';
|
|
const newServiceName = `service-${(new Date()).getTime().toString()}`;
|
|
const stackName = `${newServiceName}-dev`;
|
|
|
|
const CF = new AWS.CloudFormation({ region: 'us-east-1' });
|
|
BbPromise.promisifyAll(CF, { suffix: 'Promised' });
|
|
|
|
describe('Service Lifecyle Integration Test', () => {
|
|
it('should create service in tmp directory', () => {
|
|
execSync(`${serverlessExec} create --template ${templateName}`, { stdio: 'inherit' });
|
|
testUtils.replaceTextInFile('serverless.yml', templateName, newServiceName);
|
|
expect(fs.existsSync(path.join(tmpDir, 'serverless.yml'))).to.be.equal(true);
|
|
expect(fs.existsSync(path.join(tmpDir, 'handler.js'))).to.be.equal(true);
|
|
});
|
|
|
|
it('should deploy service to aws', () => {
|
|
execSync(`${serverlessExec} deploy`, { stdio: 'inherit' });
|
|
|
|
return CF.describeStacksPromised({ StackName: stackName })
|
|
.then(d => expect(d.Stacks[0].StackStatus).to.be.equal('UPDATE_COMPLETE'));
|
|
});
|
|
|
|
it('should invoke function from aws', () => {
|
|
const invoked = execSync(`${serverlessExec} invoke --function hello --noGreeting true`);
|
|
const result = JSON.parse(new Buffer(invoked, 'base64').toString());
|
|
// parse it once again because the body is stringified to be LAMBDA-PROXY ready
|
|
const message = JSON.parse(result.body).message;
|
|
expect(message).to.be.equal('Go Serverless v1.0! Your function executed successfully!');
|
|
});
|
|
|
|
it('should deploy updated service to aws', () => {
|
|
const newHandler =
|
|
`
|
|
'use strict';
|
|
|
|
module.exports.hello = (event, context, cb) => cb(null,
|
|
{ message: 'Service Update Succeeded' }
|
|
);
|
|
`;
|
|
|
|
fs.writeFileSync(path.join(tmpDir, 'handler.js'), newHandler);
|
|
execSync(`${serverlessExec} deploy`, { stdio: 'inherit' });
|
|
});
|
|
|
|
it('should invoke updated function from aws', () => {
|
|
const invoked = execSync(`${serverlessExec} invoke --function hello --noGreeting true`);
|
|
const result = JSON.parse(new Buffer(invoked, 'base64').toString());
|
|
expect(result.message).to.be.equal('Service Update Succeeded');
|
|
});
|
|
|
|
it('should list existing deployments and roll back to first deployment', () => {
|
|
let timestamp;
|
|
const listDeploys = execSync(`${serverlessExec} deploy list`);
|
|
const output = listDeploys.toString();
|
|
const match = output.match(new RegExp('Timestamp: (.+)'));
|
|
if (match) {
|
|
timestamp = match[1];
|
|
}
|
|
// eslint-disable-next-line no-unused-expressions
|
|
expect(timestamp).to.not.undefined;
|
|
|
|
execSync(`${serverlessExec} rollback -t ${timestamp}`);
|
|
|
|
const invoked = execSync(`${serverlessExec} invoke --function hello --noGreeting true`);
|
|
const result = JSON.parse(new Buffer(invoked, 'base64').toString());
|
|
// parse it once again because the body is stringified to be LAMBDA-PROXY ready
|
|
const message = JSON.parse(result.body).message;
|
|
expect(message).to.be.equal('Go Serverless v1.0! Your function executed successfully!');
|
|
});
|
|
|
|
it('should remove service from aws', () => {
|
|
execSync(`${serverlessExec} remove`, { stdio: 'inherit' });
|
|
|
|
return CF.describeStacksPromised({ StackName: stackName })
|
|
.then(d => expect(d.Stacks[0].StackStatus).to.be.equal('DELETE_COMPLETE'))
|
|
.catch(error => {
|
|
if (error.message.indexOf('does not exist') > -1) return BbPromise.resolve();
|
|
throw new Error(error);
|
|
});
|
|
});
|
|
});
|