forked from aws/aws-sdk-js-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.spec.ts
More file actions
541 lines (514 loc) · 21.5 KB
/
plugin.spec.ts
File metadata and controls
541 lines (514 loc) · 21.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
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
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
import { constructStack } from "@aws-sdk/middleware-stack";
import { HttpRequest } from "@aws-sdk/protocol-http";
import { Provider, RegionInfo } from "@aws-sdk/types";
import { S3ControlResolvedConfig } from "../configurations";
import { getProcessArnablesPlugin } from "./plugin";
describe("getProcessArnablesMiddleware", () => {
type FakeOptions = {
region: string;
regionInfoProvider?: Provider<RegionInfo>;
useAccelerateEndpoint?: boolean;
useFipsEndpoint?: Provider<boolean>;
useDualstackEndpoint?: Provider<boolean>;
useArnRegion?: boolean;
};
const setupPluginOptions = (options: FakeOptions): S3ControlResolvedConfig => {
return {
useFipsEndpoint: () => Promise.resolve(false),
useDualstackEndpoint: () => Promise.resolve(false),
...options,
regionInfoProvider: options.regionInfoProvider ?? jest.fn().mockResolvedValue({ partition: "aws" }),
region: jest.fn().mockResolvedValue(options.region),
useArnRegion: jest.fn().mockResolvedValue(options.useArnRegion ?? false),
isCustomEndpoint: false,
};
};
const getStack = (baseHostname: string, options: S3ControlResolvedConfig) => {
const stack = constructStack();
stack.add(
(next) => (args) => {
args.request = new HttpRequest({
hostname: baseHostname,
});
return next(args);
},
{ step: "serialize" }
);
// Add middleware intercepting the stack and return early with the
// execution information of stack.
stack.add(
(next, context) => async (args) => {
return {
response: "" as any,
output: {
request: args.request,
context,
input: args.input,
},
};
},
{ step: "finalizeRequest" }
);
getProcessArnablesPlugin(options).applyToStack(stack);
return stack;
};
beforeEach(() => {
jest.clearAllMocks();
});
describe("Outposts Access Point Arn", () => {
it("should update endpoint, headers and context correctly", async () => {
expect.assertions(4);
const clientRegion = "us-west-2";
const options = setupPluginOptions({
region: clientRegion,
});
// Test with hostname with prefix
const stack = getStack(`123456789012.s3-control.${clientRegion}.amazonaws.com`, options);
const handler = stack.resolve((() => {}) as any, {});
const {
output: { request, context, input },
} = (await handler({
input: {
Name: "arn:aws:s3-outposts:us-west-2:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint",
},
})) as any;
expect(request.hostname).toBe("s3-outposts.us-west-2.amazonaws.com");
expect(request.headers).toMatchObject({ "x-amz-outpost-id": "op-01234567890123456" });
expect(context).toMatchObject({ signing_service: "s3-outposts" });
expect(input.AccountId).toBe("123456789012");
});
it("handle useArnRegion config", async () => {
expect.assertions(4);
const clientRegion = "us-west-2";
const options = setupPluginOptions({
region: clientRegion,
useArnRegion: true,
});
const stack = getStack(`s3-control.${clientRegion}.amazonaws.com`, options);
const handler = stack.resolve((() => {}) as any, {});
const {
output: { request, context, input },
} = (await handler({
input: {
Name: "arn:aws:s3-outposts:us-east-1:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint",
},
})) as any;
expect(request.hostname).toBe("s3-outposts.us-east-1.amazonaws.com");
expect(request.headers).toMatchObject({ "x-amz-outpost-id": "op-01234567890123456" });
expect(context).toMatchObject({ signing_service: "s3-outposts", signing_region: "us-east-1" });
expect(input.AccountId).toBe("123456789012");
});
it("should throw if region is not matched", async () => {
expect.assertions(1);
const clientRegion = "us-west-2";
const options = setupPluginOptions({
region: clientRegion,
});
const stack = getStack(`s3-control.${clientRegion}.amazonaws.com`, options);
const handler = stack.resolve((() => {}) as any, {});
try {
await handler({
input: {
Name: "arn:aws:s3-outposts:us-east-1:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint",
},
});
} catch (e) {
expect(e.message).toContain("Region in ARN is incompatible, got us-east-1 but expected us-west-2");
}
});
it("should throw if partition is not matched", async () => {
expect.assertions(1);
const clientRegion = "us-west-2";
const hostname = `s3-control.${clientRegion}.amazonaws.com`;
const options = setupPluginOptions({
region: clientRegion,
useArnRegion: true,
});
const stack = getStack(hostname, options);
const handler = stack.resolve((() => {}) as any, {});
try {
await handler({
input: {
Name: "arn:aws-cn:s3-outposts:cn-north-1:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint",
},
});
} catch (e) {
expect(e.message).toContain('Partition in ARN is incompatible, got "aws-cn" but expected "aws"');
}
});
it("should update endpoint, headers and context correctly in us gov partition", async () => {
expect.assertions(4);
const clientRegion = "us-gov-east-1";
const hostname = `s3-control.${clientRegion}.amazonaws.com`;
const options = setupPluginOptions({
region: clientRegion,
useArnRegion: true,
regionInfoProvider: () => Promise.resolve({ hostname, partition: "aws-us-gov" }),
});
const stack = getStack(hostname, options);
const handler = stack.resolve((() => {}) as any, {});
const {
output: { request, context, input },
} = (await handler({
input: {
Name: "arn:aws-us-gov:s3-outposts:us-gov-east-1:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint",
},
})) as any;
expect(request.hostname).toBe("s3-outposts.us-gov-east-1.amazonaws.com");
expect(request.headers).toMatchObject({ "x-amz-outpost-id": "op-01234567890123456" });
expect(input.AccountId).toBe("123456789012");
expect(context).toMatchObject({ signing_service: "s3-outposts", signing_region: "us-gov-east-1" });
});
it("should validate when client region is fips region", async () => {
expect.assertions(1);
const clientRegion = "fips-us-gov-east-1";
const hostname = `s3-control.${clientRegion}.amazonaws.com`;
const options = setupPluginOptions({
region: clientRegion,
regionInfoProvider: () => Promise.resolve({ hostname, partition: "aws-us-gov" }),
});
const stack = getStack(hostname, options);
const handler = stack.resolve((() => {}) as any, {});
try {
await handler({
input: {
Name: "arn:aws-us-gov:s3-outposts:us-gov-east-1:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint",
},
});
} catch (e) {
expect(e.message).toContain("FIPS region is not supported");
}
});
it("should validate when arn region is fips region", async () => {
expect.assertions(1);
const clientRegion = "fips-us-gov-east-1";
const hostname = `s3-control.${clientRegion}.amazonaws.com`;
const options = setupPluginOptions({
region: clientRegion,
regionInfoProvider: () => Promise.resolve({ hostname, partition: "aws-us-gov" }),
useArnRegion: true,
});
const stack = getStack(hostname, options);
const handler = stack.resolve((() => {}) as any, {});
try {
await handler({
input: {
Name: "arn:aws-us-gov:s3-outposts:fips-us-gov-east-1:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint",
},
});
} catch (e) {
expect(e.message).toContain("FIPS region is not supported");
}
});
it("should update endpoint, headers and context correctly if client is fips region", async () => {
expect.assertions(4);
const clientRegion = "fip-us-gov-east-1";
const hostname = `s3-control.${clientRegion}.amazonaws.com`;
const options = setupPluginOptions({
region: clientRegion,
useArnRegion: true,
regionInfoProvider: () => Promise.resolve({ hostname, partition: "aws-us-gov" }),
});
const stack = getStack(hostname, options);
const handler = stack.resolve((() => {}) as any, {});
const {
output: { request, context, input },
} = (await handler({
input: {
Name: "arn:aws-us-gov:s3-outposts:us-gov-east-1:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint",
},
})) as any;
expect(request.hostname).toBe("s3-outposts.us-gov-east-1.amazonaws.com");
expect(request.headers).toMatchObject({ "x-amz-outpost-id": "op-01234567890123456" });
expect(input.AccountId).toBe("123456789012");
expect(context).toMatchObject({ signing_service: "s3-outposts", signing_region: "us-gov-east-1" });
});
it("should validate dualstack flag", async () => {
expect.assertions(1);
const clientRegion = "us-west-2";
const options = setupPluginOptions({
region: clientRegion,
useDualstackEndpoint: () => Promise.resolve(true),
});
const stack = getStack(`s3-control.${clientRegion}.amazonaws.com`, options);
const handler = stack.resolve((() => {}) as any, {});
try {
await handler({
input: {
Name: "arn:aws:s3-outposts:us-west-2:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint",
},
});
} catch (e) {
expect(e.message).toContain("Dualstack endpoint is not supported with Outpost");
}
});
it("should validate invalid access point Arns", async () => {
const message1 = "Outpost ARN should have resource outpost/{outpostId}/accesspoint/{accesspointName}";
const message2 = "Outpost ARN should have resource outpost:{outpostId}:accesspoint:{accesspointName}";
const cases = [
{ arn: "arn:aws:s3-outposts:us-west-2:123456789012:outpost", message: message1 },
{ arn: "arn:aws:s3-outposts:us-west-2:123456789012:outpost:op-01234567890123456", message: message2 },
{ arn: "arn:aws:s3-outposts:us-west-2:123456789012:outpost:myaccesspoint", message: message2 },
];
expect.assertions(cases.length);
for (const { arn, message } of cases) {
const stack = getStack(
"s3-control.us-west-2.amazonaws.com",
setupPluginOptions({
region: "us-west-2",
})
);
const handler = stack.resolve((() => {}) as any, {});
await expect(handler({ input: { Name: arn } })).rejects.toThrow(new Error(message));
}
});
it("should handle non-Arn parameter", async () => {
const accountId = "123456789012";
const hostname = `${accountId}.s3-control.us-west-2.amazonaws.com`;
const stack = getStack(
hostname,
setupPluginOptions({
region: "us-west-2",
})
);
const handler = stack.resolve((() => {}) as any, {});
const {
output: { request, context },
} = (await handler({
input: { Name: "myaccesspoint" },
})) as any;
expect(request.hostname).toBe(hostname);
expect(context["signing_service"]).toBe(undefined); //signed by 's3'
});
it("should throw when Account ID mismatches", async () => {
const arn = "arn:aws:s3-outposts:us-west-2:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint";
const AccountId = "923456789012";
const stack = getStack("s3-control.us-west-2.amazonaws.com", setupPluginOptions({ region: "us-west-2" }));
const handler = stack.resolve((() => {}) as any, {});
await expect(handler({ input: { Name: arn, AccountId } })).rejects.toThrow(
new Error("AccountId is incompatible with account id inferred from Name")
);
});
});
describe("Outpost Bucket Arn", () => {
it("should update endpoint, headers and context correctly", async () => {
expect.assertions(4);
const clientRegion = "us-west-2";
const options = setupPluginOptions({ region: clientRegion });
const stack = getStack(`s3-control.${clientRegion}.amazonaws.com`, options);
const handler = stack.resolve((() => {}) as any, {});
const {
output: { request, context, input },
} = (await handler({
input: {
Bucket: "arn:aws:s3-outposts:us-west-2:123456789012:outpost:op-01234567890123456:bucket:mybucket",
},
})) as any;
expect(request.hostname).toBe(`s3-outposts.${clientRegion}.amazonaws.com`);
expect(request.headers).toMatchObject({ "x-amz-outpost-id": "op-01234567890123456" });
expect(input.AccountId).toBe("123456789012");
expect(context).toMatchObject({ signing_service: "s3-outposts" });
});
it("handle useArnRegion config", async () => {
expect.assertions(4);
const clientRegion = "us-west-2";
const options = setupPluginOptions({
region: clientRegion,
useArnRegion: true,
});
const stack = getStack(`s3-control.${clientRegion}.amazonaws.com`, options);
const handler = stack.resolve((() => {}) as any, {});
const {
output: { request, context, input },
} = (await handler({
input: {
Bucket: "arn:aws:s3-outposts:us-east-1:123456789012:outpost:op-01234567890123456:bucket:mybucket",
},
})) as any;
expect(request.hostname).toBe("s3-outposts.us-east-1.amazonaws.com");
expect(request.headers).toMatchObject({ "x-amz-outpost-id": "op-01234567890123456" });
expect(input.AccountId).toBe("123456789012");
expect(context).toMatchObject({ signing_service: "s3-outposts", signing_region: "us-east-1" });
});
it("should throw if region is not matched", async () => {
expect.assertions(1);
const clientRegion = "us-west-2";
const options = setupPluginOptions({ region: clientRegion });
const stack = getStack(`s3-control.${clientRegion}.amazonaws.com`, options);
const handler = stack.resolve((() => {}) as any, {});
try {
await handler({
input: {
Bucket: "arn:aws:s3-outposts:us-east-1:123456789012:outpost:op-01234567890123456:bucket:mybucket",
},
});
} catch (e) {
expect(e.message).toContain("Region in ARN is incompatible, got us-east-1 but expected us-west-2");
}
});
it("should throw if partition is not matched", async () => {
expect.assertions(1);
const clientRegion = "us-west-2";
const hostname = `s3-control.${clientRegion}.amazonaws.com`;
const options = setupPluginOptions({
region: clientRegion,
useArnRegion: true,
});
const stack = getStack(hostname, options);
const handler = stack.resolve((() => {}) as any, {});
try {
await handler({
input: {
Bucket: "arn:aws-cn:s3-outposts:cn-north-1:123456789012:outpost:op-01234567890123456:bucket:mybucket",
},
});
} catch (e) {
expect(e.message).toContain('Partition in ARN is incompatible, got "aws-cn" but expected "aws"');
}
});
it("should update endpoint, headers and context correctly in us gov partition", async () => {
expect.assertions(4);
const clientRegion = "us-gov-east-1";
const hostname = `s3-control.${clientRegion}.amazonaws.com`;
const options = setupPluginOptions({
region: clientRegion,
useArnRegion: true,
regionInfoProvider: () => Promise.resolve({ hostname, partition: "aws-us-gov" }),
});
const stack = getStack(hostname, options);
const handler = stack.resolve((() => {}) as any, {});
const {
output: { request, context, input },
} = (await handler({
input: {
Bucket: "arn:aws-us-gov:s3-outposts:us-gov-east-1:123456789012:outpost:op-01234567890123456:bucket:mybucket",
},
})) as any;
expect(request.hostname).toBe("s3-outposts.us-gov-east-1.amazonaws.com");
expect(request.headers).toMatchObject({ "x-amz-outpost-id": "op-01234567890123456" });
expect(input.AccountId).toBe("123456789012");
expect(context).toMatchObject({ signing_service: "s3-outposts", signing_region: "us-gov-east-1" });
});
it("should validate when client region is fips region", async () => {
expect.assertions(1);
const clientRegion = "fips-us-gov-east-1";
const hostname = `s3-control.${clientRegion}.amazonaws.com`;
const options = setupPluginOptions({
region: clientRegion,
regionInfoProvider: () => Promise.resolve({ hostname, partition: "aws-us-gov" }),
});
const stack = getStack(hostname, options);
const handler = stack.resolve((() => {}) as any, {});
try {
await handler({
input: {
Bucket:
"arn:aws-us-gov:s3-outposts:us-gov-east-1:123456789012:outpost:op-01234567890123456:bucket:mybucket",
},
});
} catch (e) {
expect(e.message).toContain("FIPS region is not supported");
}
});
it("should validate when arn region is fips region", async () => {
expect.assertions(1);
const clientRegion = "fips-us-gov-east-1";
const hostname = `s3-control.${clientRegion}.amazonaws.com`;
const options = setupPluginOptions({
region: clientRegion,
regionInfoProvider: () => Promise.resolve({ hostname, partition: "aws-us-gov" }),
useArnRegion: true,
});
const stack = getStack(hostname, options);
const handler = stack.resolve((() => {}) as any, {});
try {
await handler({
input: {
Bucket:
"arn:aws-us-gov:s3-outposts:fips-us-gov-east-1:123456789012:outpost:op-01234567890123456:bucket:mybucket",
},
});
} catch (e) {
expect(e.message).toContain("FIPS region is not supported");
}
});
it("should update endpoint, headers and context correctly if client is fips region", async () => {
expect.assertions(4);
const clientRegion = "fip-us-gov-east-1";
const hostname = `s3-control.${clientRegion}.amazonaws.com`;
const options = setupPluginOptions({
region: clientRegion,
useArnRegion: true,
regionInfoProvider: () => Promise.resolve({ hostname, partition: "aws-us-gov" }),
});
const stack = getStack(hostname, options);
const handler = stack.resolve((() => {}) as any, {});
const {
output: { request, context, input },
} = (await handler({
input: {
Bucket: "arn:aws-us-gov:s3-outposts:us-gov-east-1:123456789012:outpost:op-01234567890123456:bucket:mybucket",
},
})) as any;
expect(request.hostname).toBe("s3-outposts.us-gov-east-1.amazonaws.com");
expect(request.headers).toMatchObject({ "x-amz-outpost-id": "op-01234567890123456" });
expect(input.AccountId).toBe("123456789012");
expect(context).toMatchObject({ signing_service: "s3-outposts", signing_region: "us-gov-east-1" });
});
it("should validate dualstack flag", async () => {
expect.assertions(1);
const clientRegion = "us-west-2";
const options = setupPluginOptions({
region: clientRegion,
useDualstackEndpoint: () => Promise.resolve(true),
});
const stack = getStack(`s3-control.${clientRegion}.amazonaws.com`, options);
const handler = stack.resolve((() => {}) as any, {});
try {
await handler({
input: {
Bucket: "arn:aws:s3-outposts:us-west-2:123456789012:outpost:op-01234567890123456:bucket:mybucket",
},
});
} catch (e) {
expect(e.message).toContain("Dualstack endpoint is not supported with Outpost");
}
});
it("should validate invalid access point Arns", async () => {
const message = "Outpost Bucket ARN should have resource outpost:{outpostId}:bucket:{bucketName}";
const cases = [
{ arn: "arn:aws:s3-outposts:us-west-2:123456789012:outpost:bucket", message },
{ arn: "arn:aws:s3-outposts:us-west-2:123456789012:outpost:op-01234567890123456:bucket", message },
{
arn: "arn:aws:s3-outposts:us-west-2::outpost:op-01234567890123456:bucket:mybucket",
message: "Access point ARN accountID does not match regex '[0-9]{12}'",
},
];
expect.assertions(cases.length);
for (const { arn, message } of cases) {
const stack = getStack(
"s3-control.us-west-2.amazonaws.com",
setupPluginOptions({
region: "us-west-2",
})
);
const handler = stack.resolve((() => {}) as any, {});
await expect(handler({ input: { Bucket: arn } })).rejects.toThrow(new Error(message));
}
});
it("should throw when Account ID mismatches", async () => {
const arn = "arn:aws:s3-outposts:us-west-2:123456789012:outpost:op-01234567890123456:bucket:mybucket";
const AccountId = "923456789012";
const stack = getStack(
"s3-control.us-west-2.amazonaws.com",
setupPluginOptions({
region: "us-west-2",
})
);
const handler = stack.resolve((() => {}) as any, {});
await expect(handler({ input: { Bucket: arn, AccountId } })).rejects.toThrow(
new Error("AccountId is incompatible with account id inferred from Bucket")
);
});
});
});