-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathnode-client.test.js
More file actions
1294 lines (996 loc) · 38.9 KB
/
node-client.test.js
File metadata and controls
1294 lines (996 loc) · 38.9 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
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
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { Buffer } from 'buffer'
import FormData from 'form-data'
import Request from '../../src'
import { cache } from '../../src/cache'
import { registerNodeTransaction, wait } from '../helpers'
import { isBrowser, isNodeJS } from '../../src/utils'
jest.mock('../../src/utils', () => {
const originalModule = jest.requireActual('../../src/utils')
return {
__esModule: true,
...originalModule,
isNodeJS : jest.fn(() => true),
isBrowser: jest.fn(() => false),
}
})
describe('Node Client', () => {
afterEach(() => {
cache.deleteAll()
})
describe('Request Options', () => {
it('runs a basic request', async () => {
const transaction = registerNodeTransaction(JSON.stringify({ foo: 123 }))
const result = await Request.get('http://foo.bar:9898/path/to/api')
expect(result).toEqual({ foo: 123 })
expect(transaction.options).toEqual({
'headers' : {},
'host' : 'foo.bar',
'method' : 'GET',
'path' : '/path/to/api',
'port' : '9898',
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
it('runs an request without protocol', async () => {
const transaction = registerNodeTransaction(JSON.stringify({ foo: 123 }))
const result = await Request.get('foo.bar/path/to/api')
expect(result).toEqual({ foo: 123 })
expect(transaction.options).toEqual({
'headers' : {},
'host' : null,
'method' : 'GET',
'path' : 'foo.bar/path/to/api',
'port' : 80,
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
it('runs an http request without port', async () => {
const transaction = registerNodeTransaction(JSON.stringify({ foo: 123 }))
const result = await Request.get('http://foo.bar/path/to/api')
expect(result).toEqual({ foo: 123 })
expect(transaction.options).toEqual({
'headers' : {},
'host' : 'foo.bar',
'method' : 'GET',
'path' : '/path/to/api',
'port' : 80,
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
it('runs an https request without port', async () => {
const transaction = registerNodeTransaction(JSON.stringify({ foo: 123 }))
const result = await Request.get('https://foo.bar/path/to/api')
expect(result).toEqual({ foo: 123 })
expect(transaction.options).toEqual({
'headers' : {},
'host' : 'foo.bar',
'method' : 'GET',
'path' : '/path/to/api',
'port' : 443,
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
it('runs a request with a specific status', async () => {
const transaction = registerNodeTransaction(JSON.stringify({ foo: 123 }), {
statusCode: 202, statusMessage: 'Spec Status'
})
const result = await Request.get('http://foo.bar:9898/path/to/api')
expect(result).toEqual({ foo: 123 })
expect(transaction.options).toEqual({
'headers' : {},
'host' : 'foo.bar',
'method' : 'GET',
'path' : '/path/to/api',
'port' : '9898',
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
it('returns a response with invalid JSON', async () => {
const transaction = registerNodeTransaction('invalid json')
const result = await Request.get('http://foo.bar:9898/path/to/api')
expect(result).toEqual('invalid json')
expect(transaction.options).toEqual({
'headers' : {},
'host' : 'foo.bar',
'method' : 'GET',
'path' : '/path/to/api',
'port' : '9898',
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
it('fails by timeout', async () => {
registerNodeTransaction(null, {
failByTimeoutError: true
})
let error = null
try {
await Request.get('http://foo.bar:9898/path/to/api')
} catch (e) {
error = e
}
expect(error).toBeInstanceOf(Error)
expect(error.message).toEqual('Connection aborted due to timeout')
})
})
describe('Request URL', () => {
it('should not add an extra slash at the pathname end', async () => {
const transaction = registerNodeTransaction(null)
await Request.get('https://test-image-url.com')
expect(transaction.options.path).toEqual('')
})
it('should encode URL', async () => {
const transaction = registerNodeTransaction(null)
await Request.get('http://foo.bar/path/@/ /абв/')
expect(transaction.options.path).toEqual('/path/@/%20/%D0%B0%D0%B1%D0%B2/')
})
it('should keep the last slash in URL with query params', async () => {
const transaction = registerNodeTransaction(null)
await Request.get('http://foo.bar/path/?foo=bar')
expect(transaction.options.path).toEqual('/path/?foo=bar')
})
it('should keep the last slash in URL with query params #1', async () => {
const transaction = registerNodeTransaction(null)
await Request.get('http://foo.bar/path/').query({ q: "'" })
expect(transaction.options.path).toEqual('/path/?q=%27')
})
it('should keep the last slash in URL with query params #2', async () => {
const transaction = registerNodeTransaction(null)
await Request.get('http://foo.bar/path/').query({ q: 'тест' })
expect(transaction.options.path).toEqual('/path/?q=%D1%82%D0%B5%D1%81%D1%82')
})
it('should not add a slash to the URL end', async () => {
const transaction1 = registerNodeTransaction(null)
const transaction2 = registerNodeTransaction(null)
await Request.get('http://foo.bar')
await Request.get('http://foo.bar/path')
expect(transaction1.options.path).toEqual('')
expect(transaction2.options.path).toEqual('/path')
})
it('should not encode already encoded URI components with #', async () => {
const transaction1 = registerNodeTransaction(null)
await Request.get(`http://localhost:3001/foo/${encodeURIComponent('S#S##S#')}/bar`)
expect(transaction1.options.path).toEqual('/foo/S%23S%23%23S%23/bar')
})
it('should not encode already encoded URI components', async () => {
const transaction1 = registerNodeTransaction(null)
const transaction2 = registerNodeTransaction(null)
const transaction3 = registerNodeTransaction(null)
const transaction4 = registerNodeTransaction(null)
const transaction5 = registerNodeTransaction(null)
const transaction6 = registerNodeTransaction(null)
await Request.get(`http://foo.bar/path/${encodeURIComponent('@')}/${encodeURIComponent(' ')}`)
await Request.get(`http://foo.bar/path/%40/${encodeURIComponent(' ')}`)
await Request.get(`http://foo.bar/path/${encodeURIComponent('@')}/%20`)
await Request.get('http://foo.bar/path/%40/%20')
await Request.get('http://foo.bar/path/%3A')
await Request.get('http://foo.bar/path/%2F')
expect(transaction1.options.path).toEqual('/path/%40/%20')
expect(transaction2.options.path).toEqual('/path/%40/%20')
expect(transaction3.options.path).toEqual('/path/%40/%20')
expect(transaction4.options.path).toEqual('/path/%40/%20')
expect(transaction5.options.path).toEqual('/path/%3A')
expect(transaction6.options.path).toEqual('/path/%2F')
})
it('has specific URI components and keeps a slash at the url end', async () => {
const transaction1 = registerNodeTransaction(null)
const transaction2 = registerNodeTransaction(null)
const transaction3 = registerNodeTransaction(null)
const transaction4 = registerNodeTransaction(null)
await Request.get('http://foo.bar/path/with/email/valid@email.com/')
await Request.get('http://foo.bar/path/@/ /абв/')
await Request.get('http://foo.bar/path/%40/%20/%D0%B0%D0%B1%D0%B2/')
await Request.get('http://foo.bar/foo:bar/')
expect(transaction1.options.path).toEqual('/path/with/email/valid@email.com/')
expect(transaction2.options.path).toEqual('/path/@/%20/%D0%B0%D0%B1%D0%B2/')
expect(transaction3.options.path).toEqual('/path/%40/%20/%D0%B0%D0%B1%D0%B2/')
expect(transaction4.options.path).toEqual('/foo:bar/')
})
it('specific case #1', async () => {
const transaction = registerNodeTransaction(null)
await Request.get('https://docs.googleapis.com/v1/documents/10psXGc-EW3vkeGXP0qG3v66Q-uo:batchUpdate')
expect(transaction.options).toEqual({
'headers' : {},
'host' : 'docs.googleapis.com',
'method' : 'GET',
'path' : '/v1/documents/10psXGc-EW3vkeGXP0qG3v66Q-uo:batchUpdate',
'port' : 443,
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
it('exclude uri hash', async () => {
const transaction1 = registerNodeTransaction(null)
const transaction2 = registerNodeTransaction(null)
const transaction3 = registerNodeTransaction(null)
await Request.get('http://localhost:3001/foo#num=123')
await Request.get('http://localhost:3001/foo#bar=bar&str=test')
await Request.get('http://localhost:3001/foo?q=name#bar=bar&str=test')
expect(transaction1.options.path).toEqual('/foo')
expect(transaction2.options.path).toEqual('/foo')
expect(transaction3.options.path).toEqual('/foo?q=name')
})
})
describe('Request Query', () => {
it('runs a request with primitive query', async () => {
const transaction = registerNodeTransaction()
await Request.get('http://foo.bar:9898/path/to/api')
.query({
str: 'str', num1: 0, num2: 123, bool1: true, bool2: false,
})
expect(transaction.options).toEqual({
'headers' : {},
'host' : 'foo.bar',
'method' : 'GET',
'path' : '/path/to/api?str=str&num1=0&num2=123&bool1=true&bool2=false',
'port' : '9898',
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
it('runs a request with array in query', async () => {
const transaction = registerNodeTransaction()
await Request.get('http://foo.bar:9898/path/to/api')
.query({
numArr: [1, 2, 3], strArr: ['a', 'b', 'c'],
})
expect(transaction.options).toEqual({
'headers' : {},
'host' : 'foo.bar',
'method' : 'GET',
'path' : '/path/to/api?numArr=1&numArr=2&numArr=3&strArr=a&strArr=b&strArr=c',
'port' : '9898',
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
it('runs a request with spec characters in query', async () => {
const transaction = registerNodeTransaction()
await Request.get('http://foo.bar:9898/path/to/api')
.query({
str: 'абв', space: ' ', percent: '%', at: '@', strArr: ['абв', ' ', '%', '@'],
})
expect(transaction.options).toEqual({
'headers' : {},
'host' : 'foo.bar',
'method' : 'GET',
'path' : '/path/to/api?str=%D0%B0%D0%B1%D0%B2&space=%20&percent=%25&at=%40&strArr=%D0%B0%D0%B1%D0%B2&strArr=%20&strArr=%25&strArr=%40',
'port' : '9898',
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
})
describe('Request Headers', () => {
it('runs a request with headers', async () => {
const transaction = registerNodeTransaction()
await Request.get('http://foo.bar:9898/path/to/api')
.set({
header1: 'value1', header2: 'value3', header3: 'value3',
})
.set('header4', 'value4')
expect(transaction.options).toEqual({
'headers' : { 'header1': 'value1', 'header2': 'value3', 'header3': 'value3', 'header4': 'value4' },
'host' : 'foo.bar',
'method' : 'GET',
'path' : '/path/to/api',
'port' : '9898',
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
})
describe('Request Content Type', () => {
it('runs a request with headers', async () => {
const transaction = registerNodeTransaction()
await Request.get('http://foo.bar:9898/path/to/api')
.type('application/pdf')
expect(transaction.options).toEqual({
'headers' : {
'Content-Type': 'application/pdf',
},
'host' : 'foo.bar',
'method' : 'GET',
'path' : '/path/to/api',
'port' : '9898',
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
it('runs a request with application/json', async () => {
const transaction1 = registerNodeTransaction()
const transaction2 = registerNodeTransaction()
await Request.post('http://foo.bar:9898/path/to/api', { prop: 'test' })
await Request.post('http://foo.bar:9898/path/to/api', [1, 2, 3])
expect(transaction1.requestBody).toEqual('{"prop":"test"}')
expect(transaction1.options).toEqual({
'headers' : {
'Content-Type': 'application/json', 'content-length': 15
},
'host' : 'foo.bar',
'method' : 'POST',
'path' : '/path/to/api',
'port' : '9898',
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
expect(transaction2.requestBody).toEqual('[1,2,3]')
expect(transaction2.options).toEqual({
'headers' : {
'Content-Type': 'application/json', 'content-length': 7
},
'host' : 'foo.bar',
'method' : 'POST',
'path' : '/path/to/api',
'port' : '9898',
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
it('does not stringify a body', async () => {
const transaction = registerNodeTransaction()
await Request.post('http://foo.bar:9898/path/to/api', JSON.stringify({ prop: 'test' }))
.type('application/json')
expect(transaction.requestBody).toEqual('{"prop":"test"}')
expect(transaction.options).toEqual({
'headers' : {
'Content-Type': 'application/json', 'content-length': 15
},
'host' : 'foo.bar',
'method' : 'POST',
'path' : '/path/to/api',
'port' : '9898',
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
})
describe('Request Form', () => {
it('does not get FormData from the global scope for NodeJS', async () => {
global.FormData = 123
expect(Request.FormData).toBe(require('form-data'))
delete global.FormData
})
it('uses Custom FormData', async () => {
Request.FormData = 123
expect(Request.FormData).toBe(123)
Request.FormData = null
expect(Request.FormData).toBe(require('form-data'))
Request.FormData = 123
expect(Request.FormData).toBe(123)
expect(() => delete Request.FormData).toThrow('Cannot delete property \'FormData\' of function Request')
expect(Request.FormData).toBe(123)
Request.FormData = null
})
it('gets FormData from the node_modules', async () => {
expect(Request.FormData).toBe(require('form-data'))
})
it('adds primitive form properties', async () => {
const transaction = registerNodeTransaction()
await Request.post('http://foo.bar:9898/path/to/api')
.form({
str: 'str', num1: 0, num2: 123, bool1: true, bool2: false,
})
expect(transaction.requestForm).toBeInstanceOf(FormData)
expect(transaction.options).toEqual({
'headers' : {
'content-length': 579, 'content-type': `multipart/form-data; boundary=${transaction.requestForm._boundary}`
},
'host' : 'foo.bar',
'method' : 'POST',
'path' : '/path/to/api',
'port' : '9898',
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
it('adds array form properties', async () => {
const transaction = registerNodeTransaction()
await Request.post('http://foo.bar:9898/path/to/api')
.form({
arr1: [1, 2, 3], arr2: ['a', 'b', 'c'],
})
expect(transaction.requestForm).toBeInstanceOf(FormData)
expect(transaction.options).toEqual({
'headers' : {
'content-length': 680, 'content-type': `multipart/form-data; boundary=${transaction.requestForm._boundary}`
},
'host' : 'foo.bar',
'method' : 'POST',
'path' : '/path/to/api',
'port' : '9898',
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
it('receives a form instance', async () => {
const transaction = registerNodeTransaction()
const form = new FormData()
form.append('foo', 'bar')
form.append('num', 123)
form.append('arr1', 1)
form.append('arr2', 2)
form.append('arr3', 3)
await Request.post('http://foo.bar:9898/path/to/api')
.form(form)
expect(transaction.requestForm).toBeInstanceOf(FormData)
expect(transaction.options).toEqual({
'headers' : {
'content-length': 578, 'content-type': `multipart/form-data; boundary=${transaction.requestForm._boundary}`
},
'host' : 'foo.bar',
'method' : 'POST',
'path' : '/path/to/api',
'port' : '9898',
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
})
describe('Request Timeout', () => {
it('runs a request with timeout', async () => {
const transaction = registerNodeTransaction()
await Request.get('http://foo.bar:9898/path/to/api')
.setTimeout(1200)
expect(transaction.options).toEqual({
'headers' : {},
'host' : 'foo.bar',
'method' : 'GET',
'path' : '/path/to/api',
'port' : '9898',
'timeout' : 1200,
'withCredentials': false,
'signal' : null,
})
})
})
describe('Request Abort Signal', () => {
it('runs a request with abort signal', async () => {
const transaction = registerNodeTransaction()
const abortController = new AbortController()
await Request.get('http://foo.bar:9898/path/to/api')
.setAbortSignal(abortController.signal)
const { signal, ...restOptions } = transaction.options
expect(signal).toBe(abortController.signal)
expect(restOptions).toEqual({
'headers' : {},
'host' : 'foo.bar',
'method' : 'GET',
'path' : '/path/to/api',
'port' : '9898',
'timeout' : 0,
'withCredentials': false,
})
})
})
describe('Request Methods', () => {
it('runs a GET request', async () => {
const transaction = registerNodeTransaction()
await Request.get('http://foo.bar:9898/path/to/api')
expect(transaction.options).toEqual({
'headers' : {},
'host' : 'foo.bar',
'method' : 'GET',
'path' : '/path/to/api',
'port' : '9898',
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
it('runs a POST request', async () => {
const transaction = registerNodeTransaction()
await Request.post('http://foo.bar:9898/path/to/api', { prop: 123 })
expect(transaction.requestBody).toEqual('{"prop":123}')
expect(transaction.options).toEqual({
'headers' : {
'Content-Type': 'application/json', 'content-length': 12
},
'host' : 'foo.bar',
'method' : 'POST',
'path' : '/path/to/api',
'port' : '9898',
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
it('runs a PUT request', async () => {
const transaction = registerNodeTransaction()
await Request.put('http://foo.bar:9898/path/to/api', { prop: 123 })
expect(transaction.requestBody).toEqual('{"prop":123}')
expect(transaction.options).toEqual({
'headers' : {
'Content-Type': 'application/json', 'content-length': 12
},
'host' : 'foo.bar',
'method' : 'PUT',
'path' : '/path/to/api',
'port' : '9898',
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
it('runs a DELETE request', async () => {
const transaction = registerNodeTransaction()
await Request.delete('http://foo.bar:9898/path/to/api', { prop: 123 })
expect(transaction.requestBody).toEqual('{"prop":123}')
expect(transaction.options).toEqual({
'headers' : {
'Content-Type': 'application/json', 'content-length': 12
},
'host' : 'foo.bar',
'method' : 'DELETE',
'path' : '/path/to/api',
'port' : '9898',
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
})
describe('Response Error', () => {
it('fails with the client error', async () => {
registerNodeTransaction(null, { clientError: new Error('test client error') })
let error = null
try {
await Request.get('http://foo.bar:9898/path/to/api')
} catch (e) {
error = e
}
expect(error).toBeInstanceOf(Error)
expect({ ...error, message: error.message }).toEqual({
'message': 'test client error'
})
})
it('fails with body', async () => {
registerNodeTransaction(JSON.stringify({
message: 'Error from the server', code: 1234,
}), {
statusCode: 400, statusMessage: 'Bad Request',
})
let error = null
try {
await Request.get('http://foo.bar:9898/path/to/api')
} catch (e) {
error = e
}
expect(error).toBeInstanceOf(Error)
expect({ ...error }).toEqual({
'body' : {
'code': 1234, 'message': 'Error from the server'
}, 'code': 1234, 'headers': {}, 'message': 'Error from the server', 'status': 400
})
})
it('fails without body', async () => {
registerNodeTransaction(null, {
statusCode: 400, statusMessage: 'Bad Request',
})
let error = null
try {
await Request.get('http://foo.bar:9898/path/to/api')
} catch (e) {
error = e
}
expect(error).toBeInstanceOf(Error)
expect({ ...error }).toEqual({
'body': '', 'headers': {}, 'message': 'Status Code 400 (Bad Request)', 'status': 400
})
})
it('fails with 502', async () => {
registerNodeTransaction(null, {
statusCode: 502, statusMessage: 'Bad Gateway',
})
let error = null
try {
await Request.get('http://foo.bar:9898/path/to/api')
} catch (e) {
error = e
}
expect(error).toBeInstanceOf(Error)
expect({ ...error }).toEqual({
'body': '', 'headers': {}, 'message': 'No connection with server', 'status': 502
})
})
it('catch an error', async () => {
registerNodeTransaction(null, {
statusCode: 502, statusMessage: 'Bad Gateway',
})
let error = null
await Request.get('http://foo.bar:9898/path/to/api')
.catch(e => error = e)
expect(error).toBeInstanceOf(Error)
expect({ ...error }).toEqual({
'body': '', 'headers': {}, 'message': 'No connection with server', 'status': 502
})
})
})
describe('Response Body', () => {
it('receives a couple of buffers', async () => {
const buffer = Buffer.from(JSON.stringify({ foo: 123, str: 'hello' }))
const transaction = registerNodeTransaction([buffer.slice(0, buffer.length / 2), buffer.slice(buffer.length / 2, buffer.length),])
const result = await Request.get('http://foo.bar:9898/path/to/api')
expect(result).toEqual({ foo: 123, str: 'hello' })
expect(transaction.options).toEqual({
'headers' : {},
'host' : 'foo.bar',
'method' : 'GET',
'path' : '/path/to/api',
'port' : '9898',
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
it('returns a buffer', async () => {
const buffer = Buffer.from('hello world')
const transaction = registerNodeTransaction([buffer.slice(0, buffer.length / 2), buffer.slice(buffer.length / 2, buffer.length),])
const result = await Request.get('http://foo.bar:9898/path/to/api')
.setEncoding(null)
expect(result).toBeInstanceOf(Buffer)
expect(result.toString('utf8')).toEqual('hello world')
expect(transaction.options).toEqual({
'headers' : {},
'host' : 'foo.bar',
'method' : 'GET',
'path' : '/path/to/api',
'port' : '9898',
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
it('returns the entire response', async () => {
const transaction = registerNodeTransaction([JSON.stringify({ foo: 123, str: 'hello' }),])
const result = await Request.get('http://foo.bar:9898/path/to/api')
.unwrapBody(false)
expect(result).toEqual({
'body' : {
'foo': 123, 'str': 'hello'
}, 'headers': {}, 'status': 200, 'statusText': 'OK'
})
expect(transaction.options).toEqual({
'headers' : {},
'host' : 'foo.bar',
'method' : 'GET',
'path' : '/path/to/api',
'port' : '9898',
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
})
describe('Response Headers', () => {
it('returns result with response headers', async () => {
const transaction = registerNodeTransaction([JSON.stringify({ foo: 123, str: 'hello' }),], {
headers: {
'key': 'v1, v2, v3', 'soo bar': 'some text', 'x-real': '123'
}
})
const result = await Request.get('http://foo.bar:9898/path/to/api')
.unwrapBody(false)
expect(result).toEqual({
'body' : {
'foo': 123, 'str': 'hello'
}, 'headers': {
'key': 'v1, v2, v3', 'soo bar': 'some text', 'x-real': '123'
}, 'status' : 200, 'statusText': 'OK'
})
expect(transaction.options).toEqual({
'headers' : {},
'host' : 'foo.bar',
'method' : 'GET',
'path' : '/path/to/api',
'port' : '9898',
'timeout' : 0,
'withCredentials': false,
'signal' : null,
})
})
})
describe('Verbose', () => {
afterEach(() => {
Request.verbose = false
})
it('receives a couple of buffers', async () => {
const log = jest.spyOn(console, 'log').mockImplementation()
registerNodeTransaction()
registerNodeTransaction()
registerNodeTransaction()
registerNodeTransaction()
Request.verbose = true
await Request.get('http://foo.bar:9898/path/to/api')
await Request.post('http://foo.bar:9898/path/to/api', { num: 123 })
await Request.put('http://foo.bar:9898/path/to/api', [1, 2, 3])
await Request.delete('http://foo.bar:9898/path/to/api', 'str')
expect(log.mock.calls).toHaveLength(4)
expect(log.mock.calls[0]).toEqual(['GET', 'http://foo.bar:9898/path/to/api', undefined, {}])
expect(log.mock.calls[1]).toEqual(['POST', 'http://foo.bar:9898/path/to/api', '{"num":123}', {
'Content-Type': 'application/json', 'content-length': 11
}])
expect(log.mock.calls[2]).toEqual(['PUT', 'http://foo.bar:9898/path/to/api', '[1,2,3]', {
'Content-Type': 'application/json', 'content-length': 7
}])
expect(log.mock.calls[3]).toEqual(['DELETE', 'http://foo.bar:9898/path/to/api', 'str', {
'content-length': 3
}])
})
})
describe('Cache', () => {
it('uses data from cache', async () => {
registerNodeTransaction(['result1'])
const result1 = await Request.get('http://foo.bar:9898/path/to/api')
.cacheTags('tag1', 'tag2')
.useCache()
const result2 = await Request.get('http://foo.bar:9898/path/to/api')
.cacheTags('tag1')
.useCache()
const result3 = await Request.get('http://foo.bar:9898/path/to/api')
.cacheTags('tag2')
.useCache()
expect(result1).toBe('result1')
expect(result1).toBe(result2)
expect(result1).toBe(result3)
})
it('uses RegExp in tags when creates a cache', async () => {
registerNodeTransaction(['result1'])
registerNodeTransaction()
registerNodeTransaction(['result2'])
const result1 = await Request.get('http://foo.bar:9898/path/to/api')
.cacheTags(/[tag1|tag2]/)
.useCache()
const result2 = await Request.get('http://foo.bar:9898/path/to/api')
.cacheTags('tag1')
.useCache()
const result3 = await Request.get('http://foo.bar:9898/path/to/api')
.cacheTags('tag2')
.useCache()
await Request.post('http://foo.bar:9898/path/to/api')
.cacheTags('tag2')
const result4 = await Request.get('http://foo.bar:9898/path/to/api')
.cacheTags('tag2')
.useCache()
expect(result1).toBe('result1')
expect(result1).toBe(result2)
expect(result1).toBe(result3)
expect(result4).toBe('result2')
})
it('uses RegExp in tags when finds a cache', async () => {
registerNodeTransaction(['result1'])
registerNodeTransaction()
registerNodeTransaction(['result2'])
const result1 = await Request.get('http://foo.bar:9898/path/to/api')
.cacheTags('tag1', 'tag2')
.useCache()
const result2 = await Request.get('http://foo.bar:9898/path/to/api')
.cacheTags(/[tag1]/)
.useCache()