forked from m-radzikowski/aws-sdk-client-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mockClient.test.ts
785 lines (607 loc) Β· 26.5 KB
/
mockClient.test.ts
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
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
import {AwsClientBehavior, AwsClientStub, mockClient} from '../src';
import {ListTopicsCommand, PublishCommand, SNS, SNSClient} from '@aws-sdk/client-sns';
import {MaybeSinonProxy} from '../src/sinon';
import {publishCmd1, publishCmd2, topicArn, uuid1, uuid2, uuid3} from './fixtures';
let snsMock: AwsClientStub<SNSClient>;
beforeEach(() => {
snsMock = mockClient(SNSClient);
});
afterEach(() => {
snsMock.restore();
});
describe('setting up the mock', () => {
it('returns undefined by default', async () => {
const sns = new SNSClient({});
const publish = await sns.send(publishCmd1);
expect(publish).toBeUndefined();
});
it('resets mock behavior on mock reset', async () => {
snsMock.resolves({
MessageId: uuid1,
});
const sns = new SNSClient({});
const publish1 = await sns.send(publishCmd1);
snsMock.reset();
const publish2 = await sns.send(publishCmd2);
expect(publish1.MessageId).toBe(uuid1);
expect(publish2).toBeUndefined();
});
it('restores real client', () => {
const sns = new SNSClient({});
expect((sns.send as MaybeSinonProxy).isSinonProxy).toBe(true);
snsMock.restore();
expect((sns.send as MaybeSinonProxy).isSinonProxy).toBeUndefined();
});
it('replaces existing mock', async () => {
snsMock.resolves({
MessageId: uuid1,
});
const sns1 = new SNSClient({});
const publish1 = await sns1.send(publishCmd1);
const newSnsMock = mockClient(SNSClient);
newSnsMock.resolves({
MessageId: uuid2,
});
const sns2 = new SNSClient({});
const publish2 = await sns2.send(publishCmd1);
expect(publish1.MessageId).toBe(uuid1);
expect(publish2.MessageId).toBe(uuid2);
});
it('returns a client name', () => {
expect(snsMock.clientName()).toBe('SNSClient');
});
});
describe('spying on the mock', () => {
it('allows to access underlying Sinon stub', async () => {
const sns = new SNSClient({});
await sns.send(publishCmd1);
expect(snsMock.send.callCount).toBe(1);
expect(snsMock.send.getCall(0).args[0].input).toStrictEqual(publishCmd1.input);
});
it('allows to spy on the send calls', async () => {
const sns = new SNSClient({});
await sns.send(publishCmd1);
await sns.send(publishCmd2);
expect(snsMock.calls()).toHaveLength(2);
expect(snsMock.call(0).args[0].input).toStrictEqual(publishCmd1.input);
expect(snsMock.call(1).args[0].input).toStrictEqual(publishCmd2.input);
});
it('finds calls of given command type', async () => {
snsMock.resolves({
MessageId: uuid1,
});
const sns = new SNSClient({});
await sns.send(publishCmd1);
await sns.send(new ListTopicsCommand({}));
expect(snsMock.calls()).toHaveLength(2);
expect(snsMock.commandCalls(PublishCommand)).toHaveLength(1);
expect(snsMock.commandCalls(PublishCommand)[0].args[0].input).toStrictEqual(publishCmd1.input);
expect(snsMock.commandCalls(PublishCommand)[0].returnValue).toStrictEqual(Promise.resolve({MessageId: uuid1}));
});
it('finds calls of given command type and input parameters', async () => {
const sns = new SNSClient({});
await sns.send(publishCmd1);
await sns.send(publishCmd2);
expect(snsMock.commandCalls(PublishCommand)).toHaveLength(2);
expect(snsMock.commandCalls(PublishCommand, {Message: publishCmd1.input.Message})).toHaveLength(1);
});
it('finds calls of given command type and exact input', async () => {
const sns = new SNSClient({});
await sns.send(publishCmd1);
await sns.send(publishCmd2);
expect(snsMock.commandCalls(PublishCommand)).toHaveLength(2);
expect(snsMock.commandCalls(PublishCommand, {Message: publishCmd1.input.Message}, true)).toHaveLength(0);
expect(snsMock.commandCalls(PublishCommand, {...publishCmd1.input}, true)).toHaveLength(1);
});
it('resets calls history', async () => {
const sns = new SNSClient({});
await sns.send(publishCmd1);
snsMock.resetHistory();
expect(snsMock.calls()).toHaveLength(0);
});
it('resets calls history on mock reset', async () => {
const sns = new SNSClient({});
await sns.send(publishCmd1);
snsMock.reset();
expect(snsMock.calls()).toHaveLength(0);
});
});
describe('mocking behaviors in different ways', () => {
// those tests make sure that behaviors declared on mock, any command and specific command behave in the same way
const behaviors: [string, () => AwsClientBehavior<SNSClient>][] = [
['client', () => snsMock],
['any command', () => snsMock.onAnyCommand()],
['any command with input', () => snsMock.onAnyCommand({...publishCmd1.input})],
['command', () => snsMock.on(PublishCommand)],
['command with input', () => snsMock.on(PublishCommand, {...publishCmd1.input})],
];
describe.each(behaviors)('for behavior specified for %s', (level, getBehavior) => {
let behavior: AwsClientBehavior<SNSClient>;
beforeEach(() => {
behavior = getBehavior();
});
describe('returning response', () => {
it('returns mocked response', async () => {
behavior.resolves({MessageId: uuid1});
const sns = new SNSClient({});
const publish = await sns.send(publishCmd1);
expect(publish.MessageId).toBe(uuid1);
});
it('returns mocked response once', async () => {
behavior.resolvesOnce({MessageId: uuid1});
const sns = new SNSClient({});
const publish1 = await sns.send(publishCmd1);
const publish2 = await sns.send(publishCmd1);
expect(publish1.MessageId).toBe(uuid1);
expect(publish2).toBeUndefined();
});
it('returns mocked response for multiple calls', async () => {
behavior.resolves({
MessageId: uuid1,
});
const sns = new SNSClient({});
const publish1 = await sns.send(publishCmd1);
const publish2 = await sns.send(publishCmd1);
expect(publish1.MessageId).toBe(uuid1);
expect(publish2.MessageId).toBe(uuid1);
});
it('replaces mocked response', async () => {
behavior.resolves({MessageId: uuid1});
const sns = new SNSClient({});
const publish1 = await sns.send(publishCmd1);
behavior.resolves({MessageId: uuid2});
const publish2 = await sns.send(publishCmd1);
expect(publish1.MessageId).toBe(uuid1);
expect(publish2.MessageId).toBe(uuid2);
});
it('returns resolved async response', async () => {
behavior.resolves(resolveImmediately({MessageId: uuid1}));
const sns = new SNSClient({});
const publish = await sns.send(publishCmd1);
expect(publish.MessageId).toBe(uuid1);
});
});
describe('throwing error', () => {
it('throws an error', async () => {
behavior.rejects();
const sns = new SNSClient({});
await expect(sns.send(publishCmd1)).rejects.toThrow();
});
it('throws an error once', async () => {
behavior.rejectsOnce();
const sns = new SNSClient({});
await expect(sns.send(publishCmd1)).rejects.toThrow();
const publish2 = sns.send(publishCmd1);
expect(publish2).toBeUndefined();
});
it('throws custom simple error', async () => {
behavior.rejects(new Error('Invalid parameter: TopicArn'));
const sns = new SNSClient({});
await expect(sns.send(publishCmd1)).rejects.toThrow('Invalid parameter: TopicArn');
});
it('throws a passed string as a simple error', async () => {
behavior.rejects('Invalid parameter: TopicArn');
const sns = new SNSClient({});
await expect(sns.send(publishCmd1)).rejects.toThrow('Invalid parameter: TopicArn');
});
it('throws a custom data as an error', async () => {
behavior.rejects({
message: 'Invalid parameter: TopicArn',
Type: 'Sender',
Code: 'InvalidParameter',
});
const sns = new SNSClient({});
try {
await sns.send(publishCmd1);
} catch (e) {
expect(e).toMatchObject({
message: 'Invalid parameter: TopicArn',
Type: 'Sender',
Code: 'InvalidParameter',
});
}
expect.hasAssertions();
});
});
describe('calling mock function', () => {
it('returns function result', async () => {
behavior.callsFake(() => {
return {MessageId: uuid1};
});
const sns = new SNSClient({});
const publish = await sns.send(publishCmd1);
expect(publish.MessageId).toBe(uuid1);
});
it('returns function result once', async () => {
behavior.callsFakeOnce(() => ({MessageId: uuid1}));
const sns = new SNSClient({});
const publish1 = await sns.send(publishCmd1);
const publish2 = await sns.send(publishCmd1);
expect(publish1.MessageId).toBe(uuid1);
expect(publish2).toBeUndefined();
});
it('returns async function result', async () => {
behavior.callsFake(() => {
return resolveImmediately({MessageId: uuid1});
});
const sns = new SNSClient({});
const publish1 = await sns.send(publishCmd1);
expect(publish1.MessageId).toBe(uuid1);
});
it('throws an error', async () => {
behavior.callsFake(() => {
throw new Error('Invalid parameter: TopicArn');
});
const sns = new SNSClient({});
await expect(sns.send(publishCmd1)).rejects.toThrow('Invalid parameter: TopicArn');
});
});
describe('supporting alternative send() calls', () => {
it('mocks send with options parameter', async () => {
behavior.resolves({MessageId: uuid1});
const sns = new SNSClient({});
const publish = await sns.send(publishCmd1, {});
expect(publish.MessageId).toBe(uuid1);
});
it.skip('mocks send with callback', done => {
behavior.resolves({MessageId: uuid1});
const sns = new SNSClient({});
sns.send(publishCmd1, (err, data) => {
expect(err).toBeUndefined();
expect(data).toBe(uuid1);
done();
});
});
it.skip('mocks send with options and callback', done => {
behavior.resolves({MessageId: uuid1});
const sns = new SNSClient({});
sns.send(publishCmd1, {}, (err, data) => {
expect(err).toBeUndefined();
expect(data).toBe(uuid1);
done();
});
});
});
it('supports SDK v2-style calls', async () => {
behavior.resolves({MessageId: uuid1});
const sns = new SNS({});
const publish = await sns.publish({
TopicArn: topicArn,
Message: 'mock message',
});
expect(publish.MessageId).toBe(uuid1);
});
});
});
describe('calling mock function', () => {
it('returns result based on the input', async () => {
snsMock.callsFake(input => {
if (input.Message === publishCmd1.input.Message) {
return {MessageId: uuid1};
} else if (input.Message === publishCmd2.input.Message) {
return {MessageId: uuid2};
}
throw new Error('Unexpected message in mock');
});
const sns = new SNSClient({});
const publish = await sns.send(publishCmd1);
expect(publish.MessageId).toBe(uuid1);
});
it('returns async function result based on the input', async () => {
snsMock.callsFake(input => {
if (input.Message === publishCmd1.input.Message) {
return resolveImmediately({MessageId: uuid1});
} else if (input.Message === publishCmd2.input.Message) {
return resolveImmediately({MessageId: uuid2});
}
throw new Error('Unexpected message in mock');
});
const sns = new SNSClient({});
const publish1 = await sns.send(publishCmd1);
expect(publish1.MessageId).toBe(uuid1);
});
});
describe('behavior matching', () => {
it('selects matching command', async () => {
snsMock
.on(PublishCommand).resolves({MessageId: uuid1})
.on(ListTopicsCommand).resolves({Topics: [{TopicArn: topicArn}]});
const sns = new SNSClient({});
const publish = await sns.send(publishCmd1);
const listTopics = await sns.send(new ListTopicsCommand({}));
expect(publish.MessageId).toBe(uuid1);
expect(listTopics.Topics).toHaveLength(1);
});
it('selects matching command with partial parameters', async () => {
snsMock
.on(PublishCommand, {Message: publishCmd1.input.Message}).resolves({MessageId: uuid1})
.on(PublishCommand, {Message: publishCmd2.input.Message}).resolves({MessageId: uuid2});
const sns = new SNSClient({});
const publish1 = await sns.send(publishCmd1);
const publish2 = await sns.send(publishCmd2);
expect(publish1.MessageId).toBe(uuid1);
expect(publish2.MessageId).toBe(uuid2);
});
it('selects matching command with exact parameters', async () => {
snsMock
.on(PublishCommand, {...publishCmd1.input}, true).resolves({MessageId: uuid1})
.on(PublishCommand, {...publishCmd2.input}, true).resolves({MessageId: uuid2});
const sns = new SNSClient({});
const publish1 = await sns.send(publishCmd1);
const publish2 = await sns.send(publishCmd2);
expect(publish1.MessageId).toBe(uuid1);
expect(publish2.MessageId).toBe(uuid2);
});
it('does not select command if it does not strictly match', async () => {
snsMock
.on(PublishCommand, {Message: publishCmd1.input.Message}, true).resolves({MessageId: uuid1});
const sns = new SNSClient({});
const publish = await sns.send(publishCmd1);
expect(publish).toBe(undefined);
});
it('selects default command response if parameters do not match', async () => {
snsMock
.on(PublishCommand).resolves({MessageId: uuid1})
.on(PublishCommand, {...publishCmd2.input}).resolves({MessageId: uuid2});
const sns = new SNSClient({});
const publish1 = await sns.send(publishCmd1);
const publish2 = await sns.send(publishCmd2);
expect(publish1.MessageId).toBe(uuid1);
expect(publish2.MessageId).toBe(uuid2);
});
it('selects default client response if commands do not match', async () => {
snsMock
.resolves({MessageId: uuid2})
.on(PublishCommand, {...publishCmd1.input}).resolves({MessageId: uuid1});
const sns = new SNSClient({});
const publish1 = await sns.send(publishCmd1);
const publish2 = await sns.send(publishCmd2);
expect(publish1.MessageId).toBe(uuid1);
expect(publish2.MessageId).toBe(uuid2);
});
it('selects client responses for given partial parameters', async () => {
snsMock
.onAnyCommand({Message: publishCmd1.input.Message}).resolves({MessageId: uuid1})
.onAnyCommand({Message: publishCmd2.input.Message}).resolves({MessageId: uuid2});
const sns = new SNSClient({});
const publish1 = await sns.send(publishCmd1);
const publish2 = await sns.send(publishCmd2);
expect(publish1.MessageId).toBe(uuid1);
expect(publish2.MessageId).toBe(uuid2);
});
it('selects client responses with exact parameters', async () => {
snsMock
.onAnyCommand({...publishCmd1.input}, true).resolves({MessageId: uuid1})
.onAnyCommand({...publishCmd2.input}, true).resolves({MessageId: uuid2});
const sns = new SNSClient({});
const publish1 = await sns.send(publishCmd1);
const publish2 = await sns.send(publishCmd2);
expect(publish1.MessageId).toBe(uuid1);
expect(publish2.MessageId).toBe(uuid2);
});
it('does not select client response if it does not strictly match', async () => {
snsMock
.onAnyCommand({Message: publishCmd1.input.Message}, true).resolves({MessageId: uuid1});
const sns = new SNSClient({});
const publish = await sns.send(publishCmd1);
expect(publish).toBe(undefined);
});
});
describe('behavior declaration order', () => {
it('uses more generic declaration for the Command if declared later', async () => {
snsMock
.on(PublishCommand, {...publishCmd1.input}).resolves({MessageId: uuid1})
.on(PublishCommand).resolves({MessageId: uuid2});
const sns = new SNSClient({});
const publish1 = await sns.send(publishCmd1);
const publish2 = await sns.send(publishCmd2);
expect(publish1.MessageId).toBe(uuid2);
expect(publish2.MessageId).toBe(uuid2);
});
it('uses more generic declaration for all Commands if declared later', async () => {
snsMock
.on(PublishCommand).resolves({MessageId: uuid1})
.onAnyCommand({...publishCmd1.input}).resolves({MessageId: uuid1})
.onAnyCommand().resolves({MessageId: uuid2});
const sns = new SNSClient({});
const publish1 = await sns.send(publishCmd1);
const publish2 = await sns.send(publishCmd2);
expect(publish1.MessageId).toBe(uuid2);
expect(publish2.MessageId).toBe(uuid2);
});
});
describe('chained behaviors', () => {
it('chains results', async () => {
snsMock
.resolvesOnce({MessageId: uuid1})
.resolvesOnce({MessageId: uuid2})
.resolves({MessageId: uuid3});
const sns = new SNSClient({});
const publish1 = await sns.send(publishCmd1);
const publish2 = await sns.send(publishCmd1);
const publish3 = await sns.send(publishCmd1);
expect(publish1.MessageId).toBe(uuid1);
expect(publish2.MessageId).toBe(uuid2);
expect(publish3.MessageId).toBe(uuid3);
});
it('chains results for different commands', async () => {
snsMock
.on(PublishCommand)
.resolvesOnce({MessageId: uuid1})
.resolvesOnce({MessageId: uuid2})
.resolves({MessageId: uuid3})
.on(ListTopicsCommand)
.resolvesOnce({Topics: [{TopicArn: topicArn}]});
const sns = new SNSClient({});
const publish1 = await sns.send(publishCmd1);
const publish2 = await sns.send(publishCmd1);
const publish3 = await sns.send(publishCmd1);
const listTopics1 = await sns.send(new ListTopicsCommand({}));
const listTopics2 = await sns.send(new ListTopicsCommand({}));
expect(publish1.MessageId).toBe(uuid1);
expect(publish2.MessageId).toBe(uuid2);
expect(publish3.MessageId).toBe(uuid3);
expect(listTopics1.Topics).toHaveLength(1);
expect(listTopics2).toBeUndefined();
});
it('chains results for different command after resolving once', async () => {
snsMock
.on(PublishCommand)
.resolvesOnce({MessageId: uuid1})
.on(ListTopicsCommand)
.resolvesOnce({Topics: [{TopicArn: topicArn}]});
const sns = new SNSClient({});
const publish1 = await sns.send(publishCmd1);
const publish2 = await sns.send(publishCmd1);
const listTopics1 = await sns.send(new ListTopicsCommand({}));
const listTopics2 = await sns.send(new ListTopicsCommand({}));
expect(publish1.MessageId).toBe(uuid1);
expect(publish2).toBeUndefined();
expect(listTopics1.Topics).toHaveLength(1);
expect(listTopics2).toBeUndefined();
});
it('chains results, rejects, and mock functions', async () => {
snsMock
.resolvesOnce({MessageId: uuid1})
.rejectsOnce()
.callsFakeOnce(() => ({MessageId: uuid2}));
const sns = new SNSClient({});
const publish1 = await sns.send(publishCmd1);
await expect(sns.send(publishCmd1)).rejects.toThrow();
const publish3 = await sns.send(publishCmd1);
const publish4 = await sns.send(publishCmd1);
expect(publish1.MessageId).toBe(uuid1);
expect(publish3.MessageId).toBe(uuid2);
expect(publish4).toBeUndefined();
});
it('overrides chain results for command', async () => {
snsMock
.on(PublishCommand).resolvesOnce({MessageId: uuid1})
.on(PublishCommand).resolvesOnce({MessageId: uuid2});
const sns = new SNSClient({});
const publish1 = await sns.send(publishCmd1);
const publish2 = await sns.send(publishCmd1);
expect(publish1.MessageId).toBe(uuid2);
expect(publish2).toBeUndefined();
});
it('overrides chain results for all commands', async () => {
snsMock
.on(PublishCommand).resolvesOnce({MessageId: uuid1})
.onAnyCommand().resolvesOnce({MessageId: uuid2});
const sns = new SNSClient({});
const publish1 = await sns.send(publishCmd1);
const publish2 = await sns.send(publishCmd2);
expect(publish1.MessageId).toBe(uuid2);
expect(publish2).toBeUndefined();
});
});
describe('Client configuration-dependent behavior', () => {
it('provides the Client used to send the Command', async () => {
const snsEU = new SNSClient({region: 'eu-west-1'});
const snsUS = new SNSClient({region: 'us-east-1'});
snsMock.on(PublishCommand).callsFake(async (input, getClient) => {
const client = getClient();
const region = await client.config.region();
return {MessageId: region.substring(0, 2)};
});
const outputs = await Promise.all([
snsEU.send(publishCmd1),
snsEU.send(publishCmd1),
snsUS.send(publishCmd1),
snsEU.send(publishCmd1),
]);
expect(outputs).toStrictEqual([
{MessageId: 'eu'},
{MessageId: 'eu'},
{MessageId: 'us'},
{MessageId: 'eu'},
]);
});
it('provides the Client used to send the Command once', async () => {
const snsEU = new SNSClient({region: 'eu-west-1'});
const snsUS = new SNSClient({region: 'us-east-1'});
snsMock.on(PublishCommand)
.callsFakeOnce(async (input, getClient) => {
const client = getClient();
const region = await client.config.region();
return {MessageId: region.substring(0, 2)};
})
.callsFakeOnce(async (input, getClient) => {
const client = getClient();
const region = await client.config.region();
return {MessageId: region.substring(0, 2).toUpperCase()};
});
const outputs = await Promise.all([
snsEU.send(publishCmd1),
snsUS.send(publishCmd1),
]);
expect(outputs).toStrictEqual([
{MessageId: 'eu'},
{MessageId: 'US'},
]);
});
it('provides the Client used to send any Command', async () => {
const snsEU = new SNSClient({region: 'eu-west-1'});
const snsUS = new SNSClient({region: 'us-east-1'});
snsMock
.onAnyCommand()
.callsFake(async (input, getClient) => {
const client = getClient();
const region = await client.config.region();
return {MessageId: region.substring(0, 2)};
});
const outputs = await Promise.all([
snsEU.send(publishCmd1),
snsUS.send(publishCmd1),
]);
expect(outputs).toStrictEqual([
{MessageId: 'eu'},
{MessageId: 'us'},
]);
});
it('provides the Client to the default behavior', async () => {
const snsEU = new SNSClient({region: 'eu-west-1'});
const snsUS = new SNSClient({region: 'us-east-1'});
snsMock
.callsFake(async (input, getClient) => {
const client = getClient();
const region = await client.config.region();
return {MessageId: region.substring(0, 2)};
});
const outputs = await Promise.all([
snsEU.send(publishCmd1),
snsUS.send(publishCmd1),
]);
expect(outputs).toStrictEqual([
{MessageId: 'eu'},
{MessageId: 'us'},
]);
});
it('provides correct Client among multiple calls', async () => {
const snsEU = new SNSClient({region: 'eu-west-1'});
const snsUS = new SNSClient({region: 'us-east-1'});
snsMock
.on(PublishCommand, publishCmd1.input).resolves({MessageId: uuid1})
.on(PublishCommand, publishCmd2.input)
.callsFake(async (input, getClient) => {
const client = getClient();
const region = await client.config.region();
return {MessageId: region.substring(0, 2)};
});
const outputs = await Promise.all([
snsEU.send(publishCmd1),
snsEU.send(publishCmd2),
snsUS.send(publishCmd2),
]);
expect(outputs).toStrictEqual([
{MessageId: uuid1},
{MessageId: 'eu'},
{MessageId: 'us'},
]);
});
});
const resolveImmediately = <T>(x: T): Promise<T> => new Promise(resolve => {
setTimeout(() => {
resolve(x);
}, 0);
});