-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcheckDestructiveChanges.test.ts
More file actions
227 lines (194 loc) · 7.17 KB
/
checkDestructiveChanges.test.ts
File metadata and controls
227 lines (194 loc) · 7.17 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
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
}
}
return {CloudFormationClient, DescribeChangeSetCommand}
})
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",
reason: "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: {
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",
reason: "Action: Remove"
}
])
})
test("ignores conditional CDK metadata replacements", () => {
const changeSet = {
Changes: [
{
ResourceChange: {
LogicalResourceId: "CDKMetadata",
PhysicalResourceId: "metadata-id",
ResourceType: "AWS::CDK::Metadata",
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)
afterEach(() => {
logSpy.mockReset()
errorSpy.mockReset()
})
test("logs success when no destructive changes are present", async () => {
mockCloudFormationSend.mockResolvedValueOnce(safeChangeSet)
await expect(checkDestructiveChangeSet("cs", "stack", "eu-west-2")).resolves.toBeUndefined()
expect(mockCloudFormationSend).toHaveBeenCalledTimes(1)
const command = mockCloudFormationSend.mock.calls[0][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 () => {
mockCloudFormationSend.mockResolvedValueOnce(destructiveChangeSet)
await expect(checkDestructiveChangeSet("cs", "stack", "eu-west-2"))
.rejects.toThrow("Change set cs contains destructive changes")
expect(mockCloudFormationSend).toHaveBeenCalledTimes(1)
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",
Action: "Remove"
}
}
]
}
mockCloudFormationSend.mockResolvedValueOnce(changeSet)
const allowedChanges: Array<AllowedDestructiveChange> = [
{
LogicalResourceId: "ResourceToRemove",
PhysicalResourceId: "physical-id",
ResourceType: "AWS::S3::Bucket",
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(1)
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",
Action: "Remove"
}
}
]
}
mockCloudFormationSend.mockResolvedValueOnce(changeSet)
const allowedChanges: Array<AllowedDestructiveChange> = [
{
LogicalResourceId: "ResourceToRemove",
PhysicalResourceId: "physical-id",
ResourceType: "AWS::S3::Bucket",
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.")
})
})