forked from davidgf/serverless-plugin-canary-deployments
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathserverless-plugin-canary-deployments.test.js
More file actions
479 lines (429 loc) · 16.7 KB
/
serverless-plugin-canary-deployments.test.js
File metadata and controls
479 lines (429 loc) · 16.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
/* eslint-disable no-template-curly-in-string */
const fs = require('fs')
const path = require('path')
const chai = require('chai')
const _ = require('lodash/fp')
const ServerlessCanaryDeployments = require('./serverless-plugin-canary-deployments')
const Serverless = require('serverless')
const { expect } = chai
const fixturesPath = path.resolve(__dirname, 'fixtures')
describe('ServerlessCanaryDeployments', () => {
const stage = 'dev'
const options = { stage }
describe('addCanaryDeploymentResources', () => {
const testCaseFiles = fs.readdirSync(fixturesPath)
const getTestCaseName = _.pipe(_.split('.'), _.head)
const testCaseFileType = _.pipe(_.split('.'), _.get('[1]'))
const testCaseContentsFromFiles = _.reduce((acc, fileName) => {
const contents = JSON.parse(fs.readFileSync(path.resolve(fixturesPath, fileName)))
return _.set(testCaseFileType(fileName), contents, acc)
}, {})
const testCaseFilesByName = _.groupBy(getTestCaseName, testCaseFiles)
this.testCases = _.map(
(caseName) => {
const testCaseContents = testCaseContentsFromFiles(testCaseFilesByName[caseName])
return Object.assign(testCaseContents, { caseName })
},
Object.keys(testCaseFilesByName)
)
this.testCases.forEach(({ caseName, input, output, service }) => {
it(`generates the correct CloudFormation templates: test case ${caseName}`, async () => {
const serverless = new Serverless({
configuration: {
service: 'canary-deployments-test',
provider: { name: 'aws' },
configValidationMode: 'off',
plugins: []
},
commands: [],
options
})
// Initialize serverless (this automatically sets up the AWS provider)
await serverless.init()
Object.assign(serverless.service, service)
serverless.service.provider.compiledCloudFormationTemplate = input
const plugin = new ServerlessCanaryDeployments(serverless, options)
plugin.addCanaryDeploymentResources()
expect(serverless.service.provider.compiledCloudFormationTemplate).to.deep.equal(output)
})
})
})
const createMockServerless = (service) => ({
service: {
service: service.service,
getAllFunctions: () => Object.keys(service.functions),
getFunction: (name) => service.functions[name],
provider: {
compiledCloudFormationTemplate: {
Resources: {
HelloLambdaFunction: { Type: 'AWS::Lambda::Function' },
HelloLambdaVersionABC123: {
Type: 'AWS::Lambda::Version',
Properties: { FunctionName: { Ref: 'HelloLambdaFunction' } }
},
WorldLambdaFunction: { Type: 'AWS::Lambda::Function' },
WorldLambdaVersionDEF456: {
Type: 'AWS::Lambda::Version',
Properties: { FunctionName: { Ref: 'WorldLambdaFunction' } }
}
}
}
},
custom: {}
},
getProvider: () => ({
naming: {
getStackName: () => 'canary-deployments-test-dev',
normalizeNameToAlphaNumericOnly: (str) => str.replace(/[^a-zA-Z0-9]/g, ''),
getLambdaLogicalId: (name) => `${name.charAt(0).toUpperCase()}${name.slice(1)}LambdaFunction`,
getRoleLogicalId: () => 'IamRoleLambdaExecution'
},
getStage: () => 'dev'
}),
configSchemaHandler: null
})
describe('canary alarms attached to deployment groups', () => {
it('attaches composite alarm to deployment group when canaryAlarms is configured', () => {
// Given
const service = {
service: 'my-service',
functions: {
hello: {
handler: 'handler.hello',
deploymentSettings: {
type: 'Linear10PercentEvery1Minute',
alias: 'Live',
canaryAlarms: [{ preset: 'errors' }]
}
}
}
}
const serverless = createMockServerless(service)
const plugin = new ServerlessCanaryDeployments(serverless, { stage: 'dev' })
// When
plugin.addCanaryDeploymentResources()
// Then
const resources = serverless.service.provider.compiledCloudFormationTemplate.Resources
const deploymentGroup = resources.HelloLambdaFunctionDeploymentGroup
expect(deploymentGroup).to.not.equal(undefined)
expect(deploymentGroup.Properties.AlarmConfiguration).to.not.equal(undefined)
expect(deploymentGroup.Properties.AlarmConfiguration.Enabled).to.equal(true)
expect(deploymentGroup.Properties.AlarmConfiguration.Alarms).to.deep.include({
Name: { Ref: 'CanaryDeploymentCompositeAlarm' }
})
})
it('does not attach alarms to deployment group when canaryAlarms is not configured', () => {
// Given
const service = {
service: 'my-service',
functions: {
hello: {
handler: 'handler.hello',
deploymentSettings: {
type: 'Linear10PercentEvery1Minute',
alias: 'Live'
// No canaryAlarms
}
}
}
}
const serverless = createMockServerless(service)
const plugin = new ServerlessCanaryDeployments(serverless, { stage: 'dev' })
// When
plugin.addCanaryDeploymentResources()
// Then
const resources = serverless.service.provider.compiledCloudFormationTemplate.Resources
const deploymentGroup = resources.HelloLambdaFunctionDeploymentGroup
expect(deploymentGroup).to.not.equal(undefined)
expect(deploymentGroup.Properties.AlarmConfiguration).to.equal(undefined)
})
it('attaches composite alarm to all deployment groups when multiple functions have canaryAlarms', () => {
// Given
const service = {
service: 'my-service',
functions: {
hello: {
handler: 'handler.hello',
deploymentSettings: {
type: 'Linear10PercentEvery1Minute',
alias: 'Live',
canaryAlarms: [{ preset: 'errors' }]
}
},
world: {
handler: 'handler.world',
deploymentSettings: {
type: 'Linear10PercentEvery1Minute',
alias: 'Live',
canaryAlarms: [{ preset: 'errors' }]
}
}
}
}
const serverless = createMockServerless(service)
const plugin = new ServerlessCanaryDeployments(serverless, { stage: 'dev' })
// When
plugin.addCanaryDeploymentResources()
// Then
const resources = serverless.service.provider.compiledCloudFormationTemplate.Resources
const helloDeploymentGroup = resources.HelloLambdaFunctionDeploymentGroup
expect(helloDeploymentGroup.Properties.AlarmConfiguration).to.not.equal(undefined)
expect(helloDeploymentGroup.Properties.AlarmConfiguration.Alarms).to.deep.include({
Name: { Ref: 'CanaryDeploymentCompositeAlarm' }
})
const worldDeploymentGroup = resources.WorldLambdaFunctionDeploymentGroup
expect(worldDeploymentGroup.Properties.AlarmConfiguration).to.not.equal(undefined)
expect(worldDeploymentGroup.Properties.AlarmConfiguration.Alarms).to.deep.include({
Name: { Ref: 'CanaryDeploymentCompositeAlarm' }
})
})
it('only attaches composite alarm to functions with canaryAlarms, not to functions without', () => {
// Given
const service = {
service: 'my-service',
functions: {
hello: {
handler: 'handler.hello',
deploymentSettings: {
type: 'Linear10PercentEvery1Minute',
alias: 'Live',
canaryAlarms: [{ preset: 'errors' }]
}
},
world: {
handler: 'handler.world',
deploymentSettings: {
type: 'Linear10PercentEvery1Minute',
alias: 'Live'
// No canaryAlarms
}
}
}
}
const serverless = createMockServerless(service)
const plugin = new ServerlessCanaryDeployments(serverless, { stage: 'dev' })
// When
plugin.addCanaryDeploymentResources()
// Then
const resources = serverless.service.provider.compiledCloudFormationTemplate.Resources
// hello has canaryAlarms - should have AlarmConfiguration
const helloDeploymentGroup = resources.HelloLambdaFunctionDeploymentGroup
expect(helloDeploymentGroup.Properties.AlarmConfiguration).to.not.equal(undefined)
// world does not have canaryAlarms - should NOT have AlarmConfiguration
const worldDeploymentGroup = resources.WorldLambdaFunctionDeploymentGroup
expect(worldDeploymentGroup.Properties.AlarmConfiguration).to.equal(undefined)
})
it('preserves existing alarms when canaryAlarms is also configured', () => {
// Given
const service = {
service: 'my-service',
functions: {
hello: {
handler: 'handler.hello',
deploymentSettings: {
type: 'Linear10PercentEvery1Minute',
alias: 'Live',
alarms: ['ExistingAlarm1', { name: 'ExistingAlarm2' }],
canaryAlarms: [{ preset: 'errors' }]
}
}
}
}
const serverless = createMockServerless(service)
const plugin = new ServerlessCanaryDeployments(serverless, { stage: 'dev' })
// When
plugin.addCanaryDeploymentResources()
// Then
const resources = serverless.service.provider.compiledCloudFormationTemplate.Resources
const deploymentGroup = resources.HelloLambdaFunctionDeploymentGroup
const alarms = deploymentGroup.Properties.AlarmConfiguration.Alarms
// Should have existing alarms
expect(alarms).to.deep.include({ Name: { Ref: 'ExistingAlarm1' } })
expect(alarms).to.deep.include({ Name: 'ExistingAlarm2' })
// Should also have the composite alarm
expect(alarms).to.deep.include({ Name: { Ref: 'CanaryDeploymentCompositeAlarm' } })
})
})
describe('buildCanaryAlarmResources', () => {
it('returns correct logical IDs for canary alarms', () => {
// Given
const service = {
service: 'my-service',
functions: {
hello: {
handler: 'handler.hello',
deploymentSettings: {
type: 'Linear10PercentEvery1Minute',
alias: 'Live',
canaryAlarms: [{ preset: 'errors' }]
}
}
}
}
const serverless = createMockServerless(service)
const plugin = new ServerlessCanaryDeployments(serverless, { stage: 'dev' })
// When
const resources = plugin.buildCanaryAlarmResources()
// Then
const logicalIds = resources.map(r => Object.keys(r)[0])
expect(logicalIds).to.include('HelloLambdaFunctionCanaryErrorsAlarm')
expect(logicalIds).to.include('CanaryDeploymentCompositeAlarm')
})
it('uses predictable naming for composite alarm (${service}-${stage}-canary-composite)', () => {
// Given
const service = {
service: 'my-service',
functions: {
hello: {
handler: 'handler.hello',
deploymentSettings: {
type: 'Linear10PercentEvery1Minute',
alias: 'Live',
canaryAlarms: [{ preset: 'errors' }]
}
}
}
}
const serverless = createMockServerless(service)
const plugin = new ServerlessCanaryDeployments(serverless, { stage: 'dev' })
// When
const resources = plugin.buildCanaryAlarmResources()
// Then
const compositeResource = resources.find(r => Object.keys(r)[0] === 'CanaryDeploymentCompositeAlarm')
const composite = compositeResource.CanaryDeploymentCompositeAlarm
expect(composite.Properties.AlarmName).to.deep.equal({
'Fn::Sub': 'my-service-dev-canary-composite'
})
})
it('does not include functions without canaryAlarms in composite', () => {
// Given
const service = {
service: 'my-service',
functions: {
hello: {
handler: 'handler.hello',
deploymentSettings: {
type: 'Linear10PercentEvery1Minute',
alias: 'Live',
canaryAlarms: [{ preset: 'errors' }]
}
},
world: {
handler: 'handler.world',
deploymentSettings: {
type: 'Linear10PercentEvery1Minute',
alias: 'Live'
// No canaryAlarms
}
}
}
}
const serverless = createMockServerless(service)
const plugin = new ServerlessCanaryDeployments(serverless, { stage: 'dev' })
// When
const resources = plugin.buildCanaryAlarmResources()
// Then
expect(resources).to.have.length(2) // hello's alarm + composite
const logicalIds = resources.map(r => Object.keys(r)[0])
expect(logicalIds).to.include('HelloLambdaFunctionCanaryErrorsAlarm')
expect(logicalIds).to.not.include('WorldLambdaFunctionCanaryErrorsAlarm')
const compositeResource = resources.find(r => Object.keys(r)[0] === 'CanaryDeploymentCompositeAlarm')
const alarmRule = compositeResource.CanaryDeploymentCompositeAlarm.Properties.AlarmRule['Fn::Sub']
expect(alarmRule).to.include('HelloLambdaFunctionCanaryErrorsAlarm')
expect(alarmRule).to.not.include('World')
})
it('returns correct logical ID for metric math alarm with name', () => {
// Given
const service = {
service: 'my-service',
functions: {
hello: {
handler: 'handler.hello',
deploymentSettings: {
type: 'Linear10PercentEvery1Minute',
alias: 'Live',
canaryAlarms: [{
name: 'durationcheck',
metrics: [
{ id: 'errors', metric: 'Errors', statistic: 'Sum' },
{ id: 'invocations', metric: 'Invocations', statistic: 'Sum' }
],
expression: 'errors / invocations',
threshold: 0.05
}]
}
}
}
}
const serverless = createMockServerless(service)
const plugin = new ServerlessCanaryDeployments(serverless, { stage: 'dev' })
// When
const resources = plugin.buildCanaryAlarmResources()
// Then
const logicalIds = resources.map(r => Object.keys(r)[0])
expect(logicalIds).to.include('HelloLambdaFunctionCanaryDurationcheckAlarm')
expect(logicalIds).to.include('CanaryDeploymentCompositeAlarm')
})
it('returns fallback logical ID for metric math alarm without name', () => {
// Given
const service = {
service: 'my-service',
functions: {
hello: {
handler: 'handler.hello',
deploymentSettings: {
type: 'Linear10PercentEvery1Minute',
alias: 'Live',
canaryAlarms: [{
metrics: [
{ id: 'errors', metric: 'Errors', statistic: 'Sum' }
],
expression: 'errors',
threshold: 1
}]
}
}
}
}
const serverless = createMockServerless(service)
const plugin = new ServerlessCanaryDeployments(serverless, { stage: 'dev' })
// When
const resources = plugin.buildCanaryAlarmResources()
// Then
const logicalIds = resources.map(r => Object.keys(r)[0])
expect(logicalIds).to.include('HelloLambdaFunctionCanaryUnknownAlarm')
})
it('includes metric math alarm in composite alarm rule', () => {
// Given
const service = {
service: 'my-service',
functions: {
hello: {
handler: 'handler.hello',
deploymentSettings: {
type: 'Linear10PercentEvery1Minute',
alias: 'Live',
canaryAlarms: [{
name: 'durationcheck',
metrics: [
{ id: 'errors', metric: 'Errors', statistic: 'Sum' },
{ id: 'invocations', metric: 'Invocations', statistic: 'Sum' }
],
expression: 'errors / invocations',
threshold: 0.05
}]
}
}
}
}
const serverless = createMockServerless(service)
const plugin = new ServerlessCanaryDeployments(serverless, { stage: 'dev' })
// When
const resources = plugin.buildCanaryAlarmResources()
// Then
const compositeResource = resources.find(r => Object.keys(r)[0] === 'CanaryDeploymentCompositeAlarm')
const alarmRule = compositeResource.CanaryDeploymentCompositeAlarm.Properties.AlarmRule['Fn::Sub']
expect(alarmRule).to.include('HelloLambdaFunctionCanaryDurationcheckAlarm')
})
})
})