-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathincident-response.test.ts
More file actions
416 lines (374 loc) · 12.4 KB
/
Copy pathincident-response.test.ts
File metadata and controls
416 lines (374 loc) · 12.4 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
import { describe, it, expect } from 'vitest';
import {
IncidentSeveritySchema,
IncidentCategorySchema,
IncidentStatusSchema,
IncidentResponsePhaseSchema,
IncidentNotificationRuleSchema,
IncidentNotificationMatrixSchema,
IncidentSchema,
IncidentResponsePolicySchema,
type Incident,
type IncidentResponsePhase,
type IncidentNotificationRule,
} from './incident-response.zod';
describe('IncidentSeveritySchema', () => {
it('should accept all valid severity levels', () => {
const validLevels = ['critical', 'high', 'medium', 'low'];
validLevels.forEach((level) => {
expect(() => IncidentSeveritySchema.parse(level)).not.toThrow();
});
});
it('should reject invalid severity level', () => {
expect(() => IncidentSeveritySchema.parse('extreme')).toThrow();
});
});
describe('IncidentCategorySchema', () => {
it('should accept all valid categories', () => {
const validCategories = [
'data_breach', 'malware', 'unauthorized_access', 'denial_of_service',
'social_engineering', 'insider_threat', 'physical_security',
'configuration_error', 'vulnerability_exploit', 'policy_violation', 'other',
];
validCategories.forEach((category) => {
expect(() => IncidentCategorySchema.parse(category)).not.toThrow();
});
});
it('should reject invalid category', () => {
expect(() => IncidentCategorySchema.parse('unknown_type')).toThrow();
});
});
describe('IncidentStatusSchema', () => {
it('should accept all valid statuses', () => {
const validStatuses = [
'reported', 'triaged', 'investigating', 'containing',
'eradicating', 'recovering', 'resolved', 'closed',
];
validStatuses.forEach((status) => {
expect(() => IncidentStatusSchema.parse(status)).not.toThrow();
});
});
it('should reject invalid status', () => {
expect(() => IncidentStatusSchema.parse('pending')).toThrow();
});
});
describe('IncidentResponsePhaseSchema', () => {
it('should accept valid response phase', () => {
const phase: IncidentResponsePhase = {
phase: 'containment',
description: 'Isolate affected systems',
assignedTo: 'security_team',
targetHours: 4,
};
expect(() => IncidentResponsePhaseSchema.parse(phase)).not.toThrow();
});
it('should accept all phase types', () => {
const phases = ['identification', 'containment', 'eradication', 'recovery', 'lessons_learned'];
phases.forEach((phase) => {
expect(() => IncidentResponsePhaseSchema.parse({
phase,
description: `${phase} phase`,
assignedTo: 'team',
targetHours: 2,
})).not.toThrow();
});
});
it('should accept optional fields', () => {
const phase = IncidentResponsePhaseSchema.parse({
phase: 'recovery',
description: 'Restore services',
assignedTo: 'ops_team',
targetHours: 8,
completedAt: 1704067200000,
notes: 'All systems restored successfully',
});
expect(phase.completedAt).toBe(1704067200000);
expect(phase.notes).toBe('All systems restored successfully');
});
it('should reject negative target hours', () => {
expect(() => IncidentResponsePhaseSchema.parse({
phase: 'identification',
description: 'Identify',
assignedTo: 'team',
targetHours: -1,
})).toThrow();
});
});
describe('IncidentNotificationRuleSchema', () => {
it('should accept valid notification rule', () => {
const rule: IncidentNotificationRule = {
severity: 'critical',
channels: ['email', 'pagerduty'],
recipients: ['ciso', 'security_team'],
withinMinutes: 15,
notifyRegulators: true,
regulatorDeadlineHours: 72,
};
expect(() => IncidentNotificationRuleSchema.parse(rule)).not.toThrow();
});
it('should apply defaults', () => {
const rule = IncidentNotificationRuleSchema.parse({
severity: 'low',
channels: ['email'],
recipients: ['security_team'],
withinMinutes: 60,
});
expect(rule.notifyRegulators).toBe(false);
});
it('should accept all channel types', () => {
const channels = ['email', 'sms', 'slack', 'pagerduty', 'webhook'];
expect(() => IncidentNotificationRuleSchema.parse({
severity: 'high',
channels,
recipients: ['all'],
withinMinutes: 30,
})).not.toThrow();
});
it('should reject invalid channel', () => {
expect(() => IncidentNotificationRuleSchema.parse({
severity: 'high',
channels: ['carrier_pigeon'],
recipients: ['team'],
withinMinutes: 30,
})).toThrow();
});
});
describe('IncidentNotificationMatrixSchema', () => {
it('should accept valid notification matrix with defaults', () => {
const matrix = IncidentNotificationMatrixSchema.parse({
rules: [
{
severity: 'critical',
channels: ['pagerduty', 'sms'],
recipients: ['ciso', 'security_team'],
withinMinutes: 15,
},
],
});
expect(matrix.escalationTimeoutMinutes).toBe(30);
expect(matrix.escalationChain).toEqual([]);
expect(matrix.rules).toHaveLength(1);
});
it('should accept full matrix configuration', () => {
const matrix = IncidentNotificationMatrixSchema.parse({
rules: [
{
severity: 'critical',
channels: ['pagerduty', 'sms', 'email'],
recipients: ['ciso', 'executive_team'],
withinMinutes: 15,
notifyRegulators: true,
regulatorDeadlineHours: 72,
},
{
severity: 'high',
channels: ['slack', 'email'],
recipients: ['security_team'],
withinMinutes: 30,
},
{
severity: 'low',
channels: ['email'],
recipients: ['security_team'],
withinMinutes: 120,
},
],
escalationTimeoutMinutes: 60,
escalationChain: ['security_lead', 'ciso', 'ceo'],
});
expect(matrix.rules).toHaveLength(3);
expect(matrix.escalationTimeoutMinutes).toBe(60);
expect(matrix.escalationChain).toHaveLength(3);
});
});
describe('IncidentSchema', () => {
it('should accept complete incident', () => {
const incident: Incident = {
id: 'INC-2024-001',
title: 'Unauthorized API Access Detected',
description: 'Multiple failed authentication attempts from unknown IP range',
severity: 'high',
category: 'unauthorized_access',
status: 'investigating',
reportedBy: 'monitoring_system',
reportedAt: 1704067200000,
detectedAt: 1704067100000,
affectedSystems: ['api-gateway', 'auth-service'],
affectedDataClassifications: ['pii', 'confidential'],
responsePhases: [
{
phase: 'identification',
description: 'Identify scope of unauthorized access',
assignedTo: 'security_team',
targetHours: 2,
},
{
phase: 'containment',
description: 'Block suspicious IP range',
assignedTo: 'network_team',
targetHours: 1,
},
],
rootCause: 'Compromised API key',
correctiveActions: ['Rotate all API keys', 'Implement IP allowlisting'],
lessonsLearned: 'Need to implement API key rotation policy',
relatedChangeRequestIds: ['CHG-2024-001'],
metadata: { sourceIp: '10.0.0.1' },
};
expect(() => IncidentSchema.parse(incident)).not.toThrow();
});
it('should accept minimal incident', () => {
const minimal = {
id: 'INC-2024-002',
title: 'Policy Violation',
description: 'Employee accessed restricted data',
severity: 'low',
category: 'policy_violation',
status: 'reported',
reportedBy: 'user_123',
reportedAt: Date.now(),
affectedSystems: ['hr-system'],
};
expect(() => IncidentSchema.parse(minimal)).not.toThrow();
});
it('should accept resolved incident with full lifecycle', () => {
const resolved = {
id: 'INC-2024-003',
title: 'Malware Detection',
description: 'Ransomware detected on workstation',
severity: 'critical',
category: 'malware',
status: 'closed',
reportedBy: 'endpoint_detection',
reportedAt: 1704067200000,
detectedAt: 1704067100000,
resolvedAt: 1704153600000,
affectedSystems: ['workstation-42'],
responsePhases: [
{
phase: 'identification',
description: 'Identify malware type',
assignedTo: 'security_team',
targetHours: 1,
completedAt: 1704070800000,
notes: 'Identified as known ransomware variant',
},
{
phase: 'containment',
description: 'Isolate affected workstation',
assignedTo: 'it_support',
targetHours: 0.5,
completedAt: 1704072600000,
},
{
phase: 'eradication',
description: 'Remove malware and reimage',
assignedTo: 'it_support',
targetHours: 4,
completedAt: 1704086400000,
},
{
phase: 'recovery',
description: 'Restore from backup',
assignedTo: 'it_support',
targetHours: 8,
completedAt: 1704115200000,
},
{
phase: 'lessons_learned',
description: 'Post-incident review',
assignedTo: 'security_team',
targetHours: 24,
completedAt: 1704153600000,
},
],
rootCause: 'Phishing email with malicious attachment',
correctiveActions: [
'Block malicious email domain',
'Update email filtering rules',
'Deploy additional endpoint protection',
],
lessonsLearned: 'Need enhanced phishing detection and user training',
};
expect(() => IncidentSchema.parse(resolved)).not.toThrow();
});
it('should accept all data classification values', () => {
const classifications = ['pii', 'phi', 'pci', 'financial', 'confidential', 'internal', 'public'];
const incident = {
id: 'INC-2024-004',
title: 'Data Breach',
description: 'Comprehensive data breach',
severity: 'critical',
category: 'data_breach',
status: 'reported',
reportedBy: 'system',
reportedAt: Date.now(),
affectedSystems: ['database'],
affectedDataClassifications: classifications,
};
expect(() => IncidentSchema.parse(incident)).not.toThrow();
});
it('should reject missing required fields', () => {
expect(() => IncidentSchema.parse({})).toThrow();
expect(() => IncidentSchema.parse({ id: 'INC-001' })).toThrow();
});
});
describe('IncidentResponsePolicySchema', () => {
it('should accept valid policy with defaults', () => {
const policy = IncidentResponsePolicySchema.parse({
notificationMatrix: {
rules: [
{
severity: 'critical',
channels: ['pagerduty'],
recipients: ['security_team'],
withinMinutes: 15,
},
],
},
defaultResponseTeam: 'security_team',
});
expect(policy.enabled).toBe(true);
expect(policy.triageDeadlineHours).toBe(1);
expect(policy.requirePostIncidentReview).toBe(true);
expect(policy.regulatoryNotificationThreshold).toBe('high');
expect(policy.retentionDays).toBe(2555);
});
it('should accept full policy configuration', () => {
const policy = IncidentResponsePolicySchema.parse({
enabled: true,
notificationMatrix: {
rules: [
{
severity: 'critical',
channels: ['pagerduty', 'sms', 'email'],
recipients: ['ciso', 'executive_team'],
withinMinutes: 15,
notifyRegulators: true,
regulatorDeadlineHours: 72,
},
{
severity: 'high',
channels: ['slack', 'email'],
recipients: ['security_team'],
withinMinutes: 30,
},
],
escalationTimeoutMinutes: 45,
escalationChain: ['security_lead', 'ciso'],
},
defaultResponseTeam: 'incident_response_team',
triageDeadlineHours: 2,
requirePostIncidentReview: true,
regulatoryNotificationThreshold: 'critical',
retentionDays: 3650,
});
expect(policy.triageDeadlineHours).toBe(2);
expect(policy.regulatoryNotificationThreshold).toBe('critical');
expect(policy.retentionDays).toBe(3650);
});
it('should reject missing required fields', () => {
expect(() => IncidentResponsePolicySchema.parse({})).toThrow();
expect(() => IncidentResponsePolicySchema.parse({ enabled: true })).toThrow();
});
});