-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcheckDestructiveChanges.test.ts
More file actions
376 lines (327 loc) · 11.5 KB
/
checkDestructiveChanges.test.ts
File metadata and controls
376 lines (327 loc) · 11.5 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
import {readFileSync} from "node:fs"
import {dirname, join} from "node:path"
import {fileURLToPath} from "node:url"
import {
beforeEach,
describe,
expect,
test,
vi,
afterEach
} from "vitest"
import {
checkDestructiveChanges,
checkDestructiveChangeSet,
AllowedDestructiveChange
} from "../../src/changesets/checkDestructiveChanges"
const mockCloudFormationSend = vi.fn()
vi.mock("@aws-sdk/client-cloudformation", () => {
class CloudFormationClient {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
config: any
constructor(config: { region: string }) {
this.config = config
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any
send(command: any) {
return mockCloudFormationSend(command)
}
}
class DescribeChangeSetCommand {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
input: any
// eslint-disable-next-line @typescript-eslint/no-explicit-any
constructor(input: any) {
this.input = input
}
}
class DescribeStacksCommand {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
input: any
// eslint-disable-next-line @typescript-eslint/no-explicit-any
constructor(input: any) {
this.input = input
}
}
return {CloudFormationClient, DescribeChangeSetCommand, DescribeStacksCommand}
})
const __filename = fileURLToPath(import.meta.url)
const __dirname = dirname(__filename)
const fixturesDir = join(__dirname, "examples")
const loadChangeSet = (filePath: string) => JSON.parse(readFileSync(filePath, "utf-8"))
const destructiveChangeSet = loadChangeSet(join(fixturesDir, "destructive_changeset.json"))
const safeChangeSet = loadChangeSet(join(fixturesDir, "safe_changeset.json"))
beforeEach(() => {
mockCloudFormationSend.mockReset()
})
describe("checkDestructiveChanges", () => {
test("returns resources that require replacement", () => {
const replacements = checkDestructiveChanges(destructiveChangeSet)
expect(replacements.length).toBeGreaterThan(0)
expect(replacements).toContainEqual({
logicalId: "AlarmsAccountLambdaConcurrencyAlarm8AF49AD8",
physicalId: "monitoring-Account_Lambda_Concurrency",
resourceType: "AWS::CloudWatch::Alarm",
policyAction: "ReplaceAndDelete",
action: "Modify",
replacement: "True"
})
})
test("returns an empty array when no replacements or removals exist", () => {
const replacements = checkDestructiveChanges(safeChangeSet)
expect(replacements).toEqual([])
})
test("includes resources marked for removal", () => {
const changeSet = {
Changes: [
{
ResourceChange: {
PolicyAction: "Delete",
LogicalResourceId: "ResourceToRemove",
PhysicalResourceId: "physical-id",
ResourceType: "AWS::S3::Bucket",
Action: "Remove",
Replacement: "False"
}
}
]
}
const replacements = checkDestructiveChanges(changeSet)
expect(replacements).toEqual([
{
logicalId: "ResourceToRemove",
physicalId: "physical-id",
resourceType: "AWS::S3::Bucket",
policyAction: "Delete",
action: "Remove",
replacement: "False"
}
])
})
test("marks changes with Delete policy action as destructive even without removal", () => {
const changeSet = {
Changes: [
{
ResourceChange: {
PolicyAction: "Delete",
LogicalResourceId: "PolicyOnly",
PhysicalResourceId: "policy-only",
ResourceType: "Custom::Thing",
Action: "Modify",
Replacement: "False"
}
}
]
}
const replacements = checkDestructiveChanges(changeSet)
expect(replacements).toEqual([
{
logicalId: "PolicyOnly",
physicalId: "policy-only",
resourceType: "Custom::Thing",
policyAction: "Delete",
action: "Modify",
replacement: "False"
}
])
})
test("marks changes with ReplaceAndDelete policy action as destructive even when replacement is false", () => {
const changeSet = {
Changes: [
{
ResourceChange: {
PolicyAction: "ReplaceAndDelete",
LogicalResourceId: "PolicyReplace",
PhysicalResourceId: "policy-replace",
ResourceType: "Custom::Thing",
Action: "Modify",
Replacement: "False"
}
}
]
}
const replacements = checkDestructiveChanges(changeSet)
expect(replacements).toEqual([
{
logicalId: "PolicyReplace",
physicalId: "policy-replace",
resourceType: "Custom::Thing",
policyAction: "ReplaceAndDelete",
action: "Modify",
replacement: "False"
}
])
})
test("does not mark conditional replacements as destructive when no other indicator is present", () => {
const changeSet = {
Changes: [
{
ResourceChange: {
LogicalResourceId: "Conditional",
PhysicalResourceId: "conditional",
ResourceType: "Custom::Thing",
Action: "Modify",
Replacement: "Conditional"
}
}
]
}
const replacements = checkDestructiveChanges(changeSet)
expect(replacements).toEqual([])
})
})
describe("checkDestructiveChangeSet", () => {
const logSpy = vi.spyOn(console, "log").mockImplementation(() => undefined)
const errorSpy = vi.spyOn(console, "error").mockImplementation(() => undefined)
const mockStackExists = () => {
mockCloudFormationSend.mockResolvedValueOnce({
Stacks: [
{
StackName: "stack"
}
]
})
}
afterEach(() => {
logSpy.mockReset()
errorSpy.mockReset()
})
test("logs success when no destructive changes are present", async () => {
mockStackExists()
mockCloudFormationSend.mockResolvedValueOnce(safeChangeSet)
await expect(checkDestructiveChangeSet("cs", "stack", "eu-west-2")).resolves.toBeUndefined()
expect(mockCloudFormationSend).toHaveBeenCalledTimes(2)
const command = mockCloudFormationSend.mock.calls[1][0] as { input: { ChangeSetName: string; StackName: string } }
expect(command.input).toEqual({ChangeSetName: "cs", StackName: "stack"})
expect(logSpy).toHaveBeenCalledWith("Change set cs for stack stack has no destructive changes that are not waived.")
expect(errorSpy).not.toHaveBeenCalled()
})
test("logs details and throws when destructive changes exist", async () => {
mockStackExists()
mockCloudFormationSend.mockResolvedValueOnce(destructiveChangeSet)
await expect(checkDestructiveChangeSet("cs", "stack", "eu-west-2"))
.rejects.toThrow("Change set cs contains destructive changes")
expect(mockCloudFormationSend).toHaveBeenCalledTimes(2)
expect(logSpy).not.toHaveBeenCalled()
expect(errorSpy).toHaveBeenCalledWith("Resources that require attention:")
})
test("allows matching destructive changes when waiver is active", async () => {
const changeSet = {
CreationTime: "2026-02-20T11:54:17.083Z",
StackName: "stack",
Changes: [
{
ResourceChange: {
LogicalResourceId: "ResourceToRemove",
PhysicalResourceId: "physical-id",
ResourceType: "AWS::S3::Bucket",
PolicyAction: "Delete",
Action: "Remove"
}
}
]
}
mockStackExists()
mockCloudFormationSend.mockResolvedValueOnce(changeSet)
const allowedChanges: Array<AllowedDestructiveChange> = [
{
LogicalResourceId: "ResourceToRemove",
PhysicalResourceId: "physical-id",
ResourceType: "AWS::S3::Bucket",
PolicyAction: "Delete",
Action: "Remove",
Replacement: null,
ExpiryDate: "2026-03-01T00:00:00Z",
StackName: "stack",
AllowedReason: "Pending migration"
}
]
await expect(checkDestructiveChangeSet("cs", "stack", "eu-west-2", allowedChanges))
.resolves.toBeUndefined()
expect(mockCloudFormationSend).toHaveBeenCalledTimes(2)
expect(logSpy).toHaveBeenCalledWith(expect.stringContaining("Allowing destructive change ResourceToRemove"))
expect(logSpy).toHaveBeenCalledWith("Change set cs for stack stack has no destructive changes that are not waived.")
expect(errorSpy).not.toHaveBeenCalled()
})
test("throws when waiver expired before change set creation", async () => {
const changeSet = {
CreationTime: "2026-02-20T11:54:17.083Z",
StackName: "stack",
Changes: [
{
ResourceChange: {
LogicalResourceId: "ResourceToRemove",
PhysicalResourceId: "physical-id",
ResourceType: "AWS::S3::Bucket",
PolicyAction: "Delete",
Action: "Remove"
}
}
]
}
mockStackExists()
mockCloudFormationSend.mockResolvedValueOnce(changeSet)
const allowedChanges: Array<AllowedDestructiveChange> = [
{
LogicalResourceId: "ResourceToRemove",
PhysicalResourceId: "physical-id",
ResourceType: "AWS::S3::Bucket",
PolicyAction: "Delete",
Action: "Remove",
Replacement: null,
ExpiryDate: "2026-02-01T00:00:00Z",
StackName: "stack",
AllowedReason: "Expired waiver"
}
]
await expect(checkDestructiveChangeSet("cs", "stack", "eu-west-2", allowedChanges))
.rejects.toThrow("Change set cs contains destructive changes")
expect(errorSpy).toHaveBeenCalledWith(expect.stringContaining("Waiver for ResourceToRemove"))
expect(errorSpy).toHaveBeenCalledWith("Resources that require attention:")
expect(logSpy).not.toHaveBeenCalledWith("Change set cs for stack stack has no destructive changes.")
})
test("does not allow waivers that mismatch policy or action", async () => {
const changeSet = {
CreationTime: "2026-02-20T11:54:17.083Z",
StackName: "stack",
Changes: [
{
ResourceChange: {
LogicalResourceId: "ResourceToRemove",
PhysicalResourceId: "physical-id",
ResourceType: "AWS::S3::Bucket",
PolicyAction: "Delete",
Action: "Remove"
}
}
]
}
mockStackExists()
mockCloudFormationSend.mockResolvedValueOnce(changeSet)
const allowedChanges: Array<AllowedDestructiveChange> = [
{
LogicalResourceId: "ResourceToRemove",
PhysicalResourceId: "physical-id",
ResourceType: "AWS::S3::Bucket",
PolicyAction: "ReplaceAndDelete",
Action: "Remove",
Replacement: null,
ExpiryDate: "2026-03-01T00:00:00Z",
StackName: "stack",
AllowedReason: "Incorrect policy"
}
]
await expect(checkDestructiveChangeSet("cs", "stack", "eu-west-2", allowedChanges))
.rejects.toThrow("Change set cs contains destructive changes")
expect(errorSpy).toHaveBeenCalledWith("Resources that require attention:")
})
test("logs and exits without error when the stack does not exist", async () => {
const stackMissingError = new Error("Stack with id stack does not exist")
stackMissingError.name = "ValidationError"
mockCloudFormationSend.mockRejectedValueOnce(stackMissingError)
await expect(checkDestructiveChangeSet("cs", "stack", "eu-west-2")).resolves.toBeUndefined()
expect(mockCloudFormationSend).toHaveBeenCalledTimes(1)
expect(logSpy).toHaveBeenCalledWith("Stack stack does not exist. Skipping destructive change check.")
expect(errorSpy).not.toHaveBeenCalled()
})
})