serverless
Version:
Serverless Framework - Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more
138 lines (124 loc) • 5.41 kB
JavaScript
;
const path = require('path');
const { expect } = require('chai');
const { getTmpDirPath, readYamlFile, writeYamlFile } = require('../../utils/fs');
const { confirmCloudWatchLogs } = require('../../utils/misc');
const { createEventBus, putEvents, deleteEventBus } = require('../../utils/eventBridge');
const { createTestService, deployService, removeService } = require('../../utils/integration');
const { getMarkers } = require('../shared/utils');
describe('AWS - Event Bridge Integration Test', function() {
this.timeout(1000 * 60 * 10); // Involves time-taking deploys
let serviceName;
let stackName;
let tmpDirPath;
let namedEventBusName;
let arnEventBusName;
let arnEventBusArn;
const eventSource = 'serverless.test';
const stage = 'dev';
const putEventEntries = [
{
Source: eventSource,
DetailType: 'ServerlessDetailType',
Detail: '{"Key1":"Value1"}',
},
];
before(async () => {
tmpDirPath = getTmpDirPath();
console.info(`Temporary path: ${tmpDirPath}`);
const serverlessConfig = await createTestService(tmpDirPath, {
templateDir: path.join(__dirname, 'service'),
filesToAdd: [path.join(__dirname, '..', 'shared')],
serverlessConfigHook:
// Ensure unique event bus names for each test (to avoid collision among concurrent CI runs)
config => {
namedEventBusName = `${config.service}-named-event-bus`;
arnEventBusName = `${config.service}-arn-event-bus`;
config.functions.eventBusCustom.events[0].eventBridge.eventBus = namedEventBusName;
},
});
serviceName = serverlessConfig.service;
stackName = `${serviceName}-${stage}`;
// create an external Event Bus
// NOTE: deployment can only be done once the Event Bus is created
console.info(`Creating Event Bus "${arnEventBusName}"...`);
return createEventBus(arnEventBusName).then(data => {
arnEventBusArn = data.EventBusArn;
// update the YAML file with the arn
console.info(`Updating serverless.yml with Event Bus arn "${arnEventBusArn}"`);
const serverlessFilePath = path.join(tmpDirPath, 'serverless.yml');
const config = readYamlFile(serverlessFilePath);
config.functions.eventBusArn.events[0].eventBridge.eventBus = arnEventBusArn;
writeYamlFile(serverlessFilePath, config);
// deploy the service
console.info(`Deploying "${stackName}" service...`);
return deployService(tmpDirPath);
});
});
after(async () => {
console.info('Removing service...');
await removeService(tmpDirPath);
console.info(`Deleting Event Bus "${arnEventBusName}"...`);
return deleteEventBus(arnEventBusName);
});
describe('Default Event Bus', () => {
it('should invoke function when an event is sent to the event bus', () => {
const functionName = 'eventBusDefault';
const markers = getMarkers(functionName);
return confirmCloudWatchLogs(
`/aws/lambda/${stackName}-${functionName}`,
() => putEvents('default', putEventEntries),
{
checkIsComplete: events =>
events.find(event => event.message.includes(markers.start)) &&
events.find(event => event.message.includes(markers.end)),
}
).then(events => {
const logs = events.map(event => event.message).join('\n');
expect(logs).to.include(`"source":"${eventSource}"`);
expect(logs).to.include(`"detail-type":"${putEventEntries[0].DetailType}"`);
expect(logs).to.include(`"detail":${putEventEntries[0].Detail}`);
});
});
});
describe('Custom Event Bus', () => {
it('should invoke function when an event is sent to the event bus', () => {
const functionName = 'eventBusCustom';
const markers = getMarkers(functionName);
return confirmCloudWatchLogs(
`/aws/lambda/${stackName}-${functionName}`,
() => putEvents(namedEventBusName, putEventEntries),
{
checkIsComplete: events =>
events.find(event => event.message.includes(markers.start)) &&
events.find(event => event.message.includes(markers.end)),
}
).then(events => {
const logs = events.map(event => event.message).join('\n');
expect(logs).to.include(`"source":"${eventSource}"`);
expect(logs).to.include(`"detail-type":"${putEventEntries[0].DetailType}"`);
expect(logs).to.include(`"detail":${putEventEntries[0].Detail}`);
});
});
});
describe('Arn Event Bus', () => {
it('should invoke function when an event is sent to the event bus', () => {
const functionName = 'eventBusArn';
const markers = getMarkers(functionName);
return confirmCloudWatchLogs(
`/aws/lambda/${stackName}-${functionName}`,
() => putEvents(arnEventBusName, putEventEntries),
{
checkIsComplete: events =>
events.find(event => event.message.includes(markers.start)) &&
events.find(event => event.message.includes(markers.end)),
}
).then(events => {
const logs = events.map(event => event.message).join('\n');
expect(logs).to.include(`"source":"${eventSource}"`);
expect(logs).to.include(`"detail-type":"${putEventEntries[0].DetailType}"`);
expect(logs).to.include(`"detail":${putEventEntries[0].Detail}`);
});
});
});
});