-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.js
1967 lines (1755 loc) · 56.5 KB
/
index.js
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
'use strict'
const t = require('tap')
const TestServer = require('./fixtures/server.js')
const fetch = require('../lib/index.js')
const stringToArrayBuffer = require('string-to-arraybuffer')
const URLSearchParamsPolyfill = require('@ungap/url-search-params')
const { AbortError, FetchError, Headers, Request, Response } = fetch
const AbortErrorOrig = require('../lib/abort-error.js')
const FetchErrorOrig = require('../lib/fetch-error.js')
const HeadersOrig = require('../lib/headers.js')
const { createHeadersLenient } = HeadersOrig
const RequestOrig = require('../lib/request.js')
const ResponseOrig = require('../lib/response.js')
const Body = require('../lib/body.js')
const { getTotalBytes, extractContentType } = Body
const Blob = require('../lib/blob.js')
const realZlib = require('zlib')
const { lookup } = require('dns')
const { promisify } = require('util')
const supportToString = ({
[Symbol.toStringTag]: 'z',
}).toString() === '[object z]'
const FormData = require('form-data')
const fs = require('fs')
const http = require('http')
// use of url.parse here is intentional and for coverage purposes
// eslint-disable-next-line node/no-deprecated-api
const { parse: parseURL, URLSearchParams } = require('url')
const nock = require('nock')
const vm = require('vm')
const {
ArrayBuffer: VMArrayBuffer,
Uint8Array: VMUint8Array,
} = vm.runInNewContext('this')
const { spawn } = require('child_process')
const path = require('path')
const { Minipass } = require('minipass')
const supportStreamDestroy = 'destroy' in Minipass.prototype
const { AbortController } = require('abortcontroller-polyfill/dist/abortcontroller')
const AbortController2 = require('abort-controller')
const local = new TestServer()
const base = `http://${local.hostname}:${local.port}/`
t.Test.prototype.addAssert('contain', 2, function (list, key, m, e) {
m = m || 'expected item to be contained in list'
e.found = list
e.wanted = key
return this.ok(list.indexOf(key) !== -1, m, e)
})
t.Test.prototype.addAssert('notContain', 2, function (list, key, m, e) {
m = m || 'expected item to not be contained in list'
e.found = list
e.wanted = key
return this.notOk(list.indexOf(key) !== -1, m, e)
})
const streamToPromise = (stream, dataHandler) =>
new Promise((resolve, reject) => {
stream.on('data', (...args) =>
Promise.resolve()
.then(() => dataHandler(...args))
.catch(reject))
stream.on('end', resolve)
stream.on('error', reject)
})
t.test('start server', t => {
local.start(t.end)
t.parent.teardown(() => local.stop())
})
t.test('return a promise', t => {
const p = fetch(`${base}hello`)
t.type(p, Promise)
t.equal(typeof p.then, 'function')
t.end()
})
t.test('expose AbortError, FetchError, Headers, Response and Request constructors', t => {
t.equal(AbortError, AbortErrorOrig)
t.equal(FetchError, FetchErrorOrig)
t.equal(Headers, HeadersOrig)
t.equal(Response, ResponseOrig)
t.equal(Request, RequestOrig)
t.end()
})
t.test('support proper toString output', { skip: !supportToString }, t => {
t.equal(new Headers().toString(), '[object Headers]')
t.equal(new Response().toString(), '[object Response]')
t.equal(new Request('http://localhost:30000').toString(), '[object Request]')
t.end()
})
t.test('reject with error if url is protocol relative', t =>
t.rejects(fetch('//example.com/'), {
code: 'ERR_INVALID_URL',
name: 'TypeError',
}))
t.test('reject if url is relative path', t =>
t.rejects(fetch('/some/path'), {
code: 'ERR_INVALID_URL',
name: 'TypeError',
}))
t.test('reject if protocol unsupported', t =>
t.rejects(fetch('ftp://example.com/'), new TypeError(
'Only HTTP(S) protocols are supported')))
t.test('reject with error on network failure', t =>
t.rejects(fetch('http://localhost:55555/'), {
name: 'FetchError',
code: 'ECONNREFUSED',
errno: 'ECONNREFUSED',
type: 'system',
}))
t.test('resolve into response', async t => {
const res = await fetch(`${base}hello`)
t.equal(res.headers.get('content-type'), 'text/plain')
const result = await res.text()
t.equal(res.bodyUsed, true)
t.equal(result, 'world')
})
t.test('accept html response (like plain text)', async t => {
const res = await fetch(`${base}html`)
t.equal(res.headers.get('content-type'), 'text/html')
const result = await res.text()
t.equal(res.bodyUsed, true)
t.equal(result, '<html></html>')
})
t.test('accept json response', async t => {
const res = await fetch(`${base}json`)
t.equal(res.headers.get('content-type'), 'application/json')
const result = await res.json()
t.equal(res.bodyUsed, true)
t.strictSame(result, { name: 'value' })
})
t.test('send request with custom hedaers', async t => {
const res = await fetch(`${base}inspect`, {
headers: { 'x-custom-header': 'abc' },
})
const json = await res.json()
t.equal(json.headers['x-custom-header'], 'abc')
})
t.test('accept headers instance', async t => {
const res = await fetch(`${base}inspect`, {
headers: new Headers({ 'x-custom-header': 'abc' }),
})
const json = await res.json()
t.equal(json.headers['x-custom-header'], 'abc')
})
t.test('accept custom host header', async t => {
const res = await fetch(`${base}inspect`, {
headers: {
host: 'example.com',
},
})
const json = await res.json()
t.equal(json.headers.host, 'example.com')
})
t.test('accept custom HoSt header', async t => {
const res = await fetch(`${base}inspect`, {
headers: {
HoSt: 'example.com',
},
})
const json = await res.json()
t.equal(json.headers.host, 'example.com')
})
t.test('follow redirects', async t => {
const codes = [301, 302, 303, 307, 308, 'chain']
t.plan(codes.length)
for (const code of codes) {
t.test(code, async t => {
const res = await fetch(`${base}redirect/${code}`)
t.equal(res.url, `${base}inspect`)
t.equal(res.status, 200)
t.equal(res.ok, true)
})
}
})
t.test('redirect to different host strips headers', async (t) => {
nock.disableNetConnect()
t.teardown(() => {
nock.cleanAll()
nock.enableNetConnect()
})
const first = nock('http://x.y', {
reqheaders: {
authorization: 'totally-authed-request',
cookie: 'fake-cookie',
},
})
.get('/')
.reply(301, null, { location: 'http://a.b' })
const second = nock('http://a.b', {
badheaders: ['authorization', 'cookie'],
})
.get('/')
.reply(200)
const res = await fetch('http://x.y', {
headers: {
authorization: 'totally-authed-request',
cookie: 'fake-cookie',
},
})
await res.text() // drain the response stream
t.ok(first.isDone(), 'initial request made')
t.ok(second.isDone(), 'redirect followed')
t.equal(res.status, 200)
t.ok(res.ok)
})
t.test('follow POST request redirect with GET', async t => {
for (const code of [301, 302]) {
t.test(code, async t => {
const url = `${base}redirect/${code}`
const opts = {
method: 'POST',
body: 'a=1',
}
const res = await fetch(url, opts)
t.equal(res.url, `${base}inspect`)
t.equal(res.status, 200)
const result = await res.json()
t.equal(result.method, 'GET')
t.equal(result.body, '')
})
}
})
t.test('follow PATCH request redirect with PATCH', async t => {
const codes = [301, 302, 307]
t.plan(codes.length)
for (const code of codes) {
t.test(code, async t => {
const url = `${base}redirect/${code}`
const opts = {
method: 'PATCH',
body: 'a=1',
}
const res = await fetch(url, opts)
t.equal(res.url, `${base}inspect`)
t.equal(res.status, 200)
const result = await res.json()
t.equal(result.method, 'PATCH')
t.equal(result.body, 'a=1')
})
}
})
t.test('no follow non-GET redirect if body is readable stream', async t => {
const url = `${base}redirect/307`
const body = new Minipass()
body.pause()
body.end('a=1')
setTimeout(() => body.resume(), 100)
const opts = {
method: 'PATCH',
body,
}
await t.rejects(fetch(url, opts), {
name: 'FetchError',
type: 'unsupported-redirect',
})
})
t.test('obey maximum redirect, reject case', async t => {
const url = `${base}redirect/chain`
const opts = {
follow: 1,
}
await t.rejects(fetch(url, opts), {
name: 'FetchError',
type: 'max-redirect',
})
})
t.test('obey redirect chain, resolve case', async t => {
const url = `${base}redirect/chain`
const opts = {
follow: 2,
}
const res = await fetch(url, opts)
t.equal(res.url, `${base}inspect`)
t.equal(res.status, 200)
})
t.test('allow not following redirect', async t => {
const url = `${base}redirect/301`
const opts = {
follow: 0,
}
await t.rejects(fetch(url, opts), {
name: 'FetchError',
type: 'max-redirect',
})
})
t.test('redirect mode, manual flag', async t => {
const url = `${base}redirect/301`
const opts = {
redirect: 'manual',
}
const res = await fetch(url, opts)
t.equal(res.url, url)
t.equal(res.status, 301)
t.equal(res.headers.get('location'), `${base}inspect`)
})
t.test('redirect mode, error flag', async t => {
const url = `${base}redirect/301`
const opts = {
redirect: 'error',
}
await t.rejects(fetch(url, opts), {
name: 'FetchError',
type: 'no-redirect',
})
})
t.test('redirect mode, manual flag when there is no redirect', async t => {
const url = `${base}hello`
const opts = {
redirect: 'manual',
}
const res = await fetch(url, opts)
t.equal(res.url, url)
t.equal(res.status, 200)
t.equal(res.headers.get('location'), null)
})
t.test('redirect code 301 and keep existing headers', async t => {
const url = `${base}redirect/301`
const opts = {
headers: new Headers({ 'x-custom-header': 'abc' }),
}
const res = await fetch(url, opts)
t.equal(res.url, `${base}inspect`)
const json = await res.json()
t.equal(json.headers['x-custom-header'], 'abc')
})
t.test('treat broken redirect as ordinary response (follow)', async t => {
const url = `${base}redirect/no-location`
const res = await fetch(url)
t.equal(res.url, url)
t.equal(res.status, 301)
t.equal(res.headers.get('location'), null)
})
t.test('treat broken redirect as ordinary response (manual)', async t => {
const url = `${base}redirect/no-location`
const opts = {
redirect: 'manual',
}
const res = await fetch(url, opts)
t.equal(res.url, url)
t.equal(res.status, 301)
t.equal(res.headers.get('location'), null)
})
t.test('should process an invalid redirect (manual)', async t => {
const url = `${base}redirect/301/invalid`
const options = {
redirect: 'manual',
}
const res = await fetch(url, options)
t.equal(res.url, url)
t.equal(res.status, 301)
t.equal(res.headers.get('location'), '//super:invalid:url%/')
})
t.test('should throw an error on invalid redirect url', async t => {
const url = `${base}redirect/301/invalid`
await t.rejects(fetch(url), {
name: 'FetchError',
message: 'uri requested responds with an invalid redirect URL: //super:invalid:url%/',
})
})
t.test('set redirected property on response when redirect', t =>
fetch(`${base}redirect/301`).then(res => t.equal(res.redirected, true)))
t.test('no redirected property on response when not redirect', t =>
fetch(`${base}hello`).then(res => t.equal(res.redirected, false)))
t.test('ignore invalid headers', t => {
var headers = {
'Invalid-Header ': 'abc\r\n',
'Invalid-Header-Value': '\x07k\r\n',
'Set-Cookie': ['\x07k\r\n', '\x07kk\r\n'],
}
headers = createHeadersLenient(headers)
t.equal(headers['Invalid-Header '], undefined)
t.equal(headers['Invalid-Header-Value'], undefined)
t.equal(headers['Set-Cookie'], undefined)
t.end()
})
t.test('handle client-error response', async t => {
const url = `${base}error/400`
const res = await fetch(url)
t.equal(res.headers.get('content-type'), 'text/plain')
t.equal(res.status, 400)
t.equal(res.statusText, 'Bad Request')
t.equal(res.ok, false)
const result = await res.text()
t.equal(res.bodyUsed, true)
t.equal(result, 'client error')
})
t.test('handle server-error response', async t => {
const url = `${base}error/500`
const res = await fetch(url)
t.equal(res.headers.get('content-type'), 'text/plain')
t.equal(res.status, 500)
t.equal(res.statusText, 'Internal Server Error')
t.equal(res.ok, false)
const result = await res.text()
t.equal(res.bodyUsed, true)
t.equal(result, 'server error')
})
t.test('handle network-error response', async t => {
await t.rejects(fetch(`${base}error/reset`), {
name: 'FetchError',
code: 'ECONNRESET',
})
})
t.test('handle DNS-error response', async t => {
await t.rejects(fetch('http://domain.invalid'), {
name: 'FetchError',
// this error depends on the platform and dns server in use,
// but it should be one of these two codes
code: /^(ENOTFOUND|EAI_AGAIN)$/,
})
})
t.test('reject invalid json response', async t => {
const res = await fetch(`${base}error/json`)
t.equal(res.headers.get('content-type'), 'application/json')
await t.rejects(res.json(), {
name: 'FetchError',
type: 'invalid-json',
})
})
t.test('reject invalid json response', async t => {
const res = await fetch(`${base}error/json`)
t.equal(res.headers.get('content-type'), 'application/json')
await t.rejects(res.json(), {
name: 'FetchError',
type: 'invalid-json',
})
})
t.test('handle no content response', async t => {
const res = await fetch(`${base}no-content`)
t.equal(res.status, 204)
t.equal(res.statusText, 'No Content')
t.equal(res.ok, true)
const result = await res.text()
t.equal(result, '')
})
t.test('reject parsing no content response as json', async t => {
const res = await fetch(`${base}no-content`)
t.equal(res.status, 204)
t.equal(res.statusText, 'No Content')
t.equal(res.ok, true)
await t.rejects(res.json(), {
name: 'FetchError',
type: 'invalid-json',
})
})
t.test('handle no content response with gzip encoding', async t => {
const res = await fetch(`${base}no-content/gzip`)
t.equal(res.status, 204)
t.equal(res.statusText, 'No Content')
t.equal(res.headers.get('content-encoding'), 'gzip')
t.equal(res.ok, true)
const result = await res.text()
t.equal(result, '')
})
t.test('handle not modified response', async t => {
const res = await fetch(`${base}not-modified`)
t.equal(res.status, 304)
t.equal(res.statusText, 'Not Modified')
t.equal(res.ok, false)
const result = await res.text()
t.equal(result, '')
})
t.test('handle not modified response with gzip encoding', async t => {
const res = await fetch(`${base}not-modified/gzip`)
t.equal(res.status, 304)
t.equal(res.statusText, 'Not Modified')
t.equal(res.headers.get('content-encoding'), 'gzip')
t.equal(res.ok, false)
const result = await res.text()
t.equal(result, '')
})
t.test('decompress gzip response', async t => {
const res = await fetch(`${base}gzip`)
t.equal(res.headers.get('content-type'), 'text/plain')
const result = await res.text()
t.equal(result, 'hello world')
})
t.test('decompress slightly invalid gzip response', async t => {
const res = await fetch(`${base}gzip-truncated`)
t.equal(res.headers.get('content-type'), 'text/plain')
const result = await res.text()
t.equal(result, 'hello world')
})
t.test('decompress deflate response', async t => {
const res = await fetch(`${base}deflate`)
t.equal(res.headers.get('content-type'), 'text/plain')
const result = await res.text()
t.equal(result, 'hello world')
})
t.test('decompress deflate raw response from old apache server', async t => {
const res = await fetch(`${base}deflate-raw`)
t.equal(res.headers.get('content-type'), 'text/plain')
const result = await res.text()
t.equal(result, 'hello world')
})
t.test('decompress brotli response', async t => {
// if the node core zlib doesn't export brotli functions, we'll end up
// rejecting the request with an error that comes from minizlib, assert
// that here
if (typeof realZlib.BrotliCompress !== 'function') {
return t.rejects(fetch(`${base}brotli`), {
message: 'Brotli is not supported in this version of Node.js',
}, 'rejects the promise')
}
const res = await fetch(`${base}brotli`)
t.equal(res.headers.get('content-type'), 'text/plain')
const result = await res.text()
t.equal(result, 'hello world')
})
t.test('handle no content response with brotli encoding', async t => {
const res = await fetch(`${base}no-content/brotli`)
t.equal(res.status, 204)
t.equal(res.statusText, 'No Content')
t.equal(res.headers.get('content-encoding'), 'br')
t.equal(res.ok, true)
const result = await res.text()
t.equal(result, '')
})
t.test('skip decompression if unsupported', async t => {
const res = await fetch(`${base}sdch`)
t.equal(res.headers.get('content-type'), 'text/plain')
const result = await res.text()
t.equal(result, 'fake sdch string')
})
t.test('reject if response compression is invalid', async t => {
const res = await fetch(`${base}invalid-content-encoding`)
t.equal(res.headers.get('content-type'), 'text/plain')
await t.rejects(res.text(), {
name: 'FetchError',
code: 'Z_DATA_ERROR',
})
})
t.test('handle errors on the body stream even if it is not used', async t => {
const res = await fetch(`${base}invalid-content-encoding`)
t.equal(res.status, 200)
// Wait a few ms to see if a uncaught error occurs
await promisify(setTimeout)(20)
})
t.test('collect handled errors on body stream, reject if used later', async t => {
const delay = value => new Promise(resolve =>
setTimeout(() => resolve(value), 20))
const res = await fetch(`${base}invalid-content-encoding`).then(delay)
const delayed = await delay(res)
t.equal(delayed.headers.get('content-type'), 'text/plain')
t.rejects(delayed.text(), {
name: 'FetchError',
code: 'Z_DATA_ERROR',
})
})
t.test('allow disabling auto decompression', t =>
fetch(`${base}gzip`, { compress: false }).then(res => {
t.equal(res.headers.get('content-type'), 'text/plain')
return res.text().then(result => t.not(result, 'hello world'))
}))
t.test('do not overwrite accept-encoding when auto decompression', t =>
fetch(`${base}inspect`, {
compress: true,
headers: {
'Accept-Encoding': 'gzip',
},
})
.then(res => res.json())
.then(res => t.equal(res.headers['accept-encoding'], 'gzip')))
t.test('allow custom timeout', t => {
return t.rejects(fetch(`${base}timeout`, { timeout: 20 }), {
name: 'FetchError',
type: 'request-timeout',
})
})
t.test('allow custom timeout on response body', t => {
return fetch(`${base}slow`, { timeout: 50 }).then(res => {
t.equal(res.ok, true)
return t.rejects(res.text(), {
name: 'FetchError',
type: 'body-timeout',
})
})
})
t.test('allow custom timeout on redirected requests', t =>
t.rejects(fetch(`${base}redirect/slow-chain`, { timeout: 50 }), {
name: 'FetchError',
type: 'request-timeout',
}))
t.test('clear internal timeout on fetch response', { timeout: 2000 }, t => {
const args = ['-e', `require('./')('${base}hello', { timeout: 10000 })`]
spawn(process.execPath, args, { cwd: path.resolve(__dirname, '..') })
.on('close', (code, signal) => {
t.equal(code, 0)
t.equal(signal, null)
t.end()
})
})
t.test('clear internal timeout on fetch redirect', { timeout: 2000 }, t => {
const args = ['-e', `require('./')('${base}redirect/301', { timeout: 10000 })`]
spawn(process.execPath, args, { cwd: path.resolve(__dirname, '..') })
.on('close', (code, signal) => {
t.equal(code, 0)
t.equal(signal, null)
t.end()
})
})
t.test('clear internal timeout on fetch error', { timeout: 2000 }, t => {
const args = ['-e', `require('./')('${base}error/reset', { timeout: 10000 })`]
// note: promise rejections started setting exit status code in node 15
const stderr = []
spawn(process.execPath, args, { cwd: path.resolve(__dirname, '..') })
.on('close', (code, signal) => {
t.match(Buffer.concat(stderr).toString(), 'FetchError')
t.equal(signal, null)
t.end()
})
.stderr.on('data', c => stderr.push(c))
})
t.test('request cancellation with signal', { timeout: 500 }, t => {
const controller = new AbortController()
const controller2 = new AbortController2()
const fetches = [
fetch(`${base}timeout`, { signal: controller.signal }),
fetch(`${base}timeout`, { signal: controller2.signal }),
fetch(
`${base}timeout`,
{
method: 'POST',
signal: controller.signal,
headers: {
'Content-Type': 'application/json',
body: JSON.stringify({ hello: 'world' }),
},
}
),
]
setTimeout(() => {
controller.abort()
controller2.abort()
}, 100)
return Promise.all(fetches.map(fetched => t.rejects(fetched, {
name: 'AbortError',
type: 'aborted',
})))
})
t.test('reject immediately if signal already aborted', t => {
const url = `${base}timeout`
const controller = new AbortController()
const opts = {
signal: controller.signal,
}
controller.abort()
const fetched = fetch(url, opts)
return t.rejects(fetched, {
name: 'AbortError',
type: 'aborted',
})
})
t.test('clear internal timeout when cancelled with AbortSignal', { timeout: 2000 }, t => {
const script = `
const ACP = require('abortcontroller-polyfill/dist/cjs-ponyfill')
var AbortController = ACP.AbortController
var controller = new AbortController()
require('./')(
'${base}timeout',
{ signal: controller.signal, timeout: 10000 }
)
setTimeout(function () { controller.abort(); }, 20)
`
// note: promise rejections started setting exit status code in node 15
const stderr = []
spawn('node', ['-e', script], { cwd: path.resolve(__dirname, '..') })
.on('close', (code, signal) => {
t.match(Buffer.concat(stderr).toString(), 'AbortError')
t.equal(signal, null)
t.end()
})
.stderr.on('data', c => stderr.push(c))
})
t.test('remove internal AbortSignal listener when request aborted', t => {
const controller = new AbortController()
const { signal } = controller
const promise = fetch(
`${base}timeout`,
{ signal }
)
const result = t.rejects(promise, { name: 'AbortError' })
.then(() => t.equal(signal.listeners.abort.length, 0))
controller.abort()
return result
})
t.test('allow redirects to be aborted', t => {
const abortController = new AbortController()
const request = new Request(`${base}redirect/slow`, {
signal: abortController.signal,
})
setTimeout(() => abortController.abort(), 20)
return t.rejects(fetch(request), { name: 'AbortError' })
})
t.test('allow redirected response body to be aborted', t => {
const abortController = new AbortController()
const request = new Request(`${base}redirect/slow-stream`, {
signal: abortController.signal,
})
return t.rejects(fetch(request).then(res => {
t.equal(res.headers.get('content-type'), 'text/plain')
const result = res.text()
abortController.abort()
return result
}), { name: 'AbortError' })
})
t.test('remove internal AbortSignal listener when req/res complete', t => {
const controller = new AbortController()
const { signal } = controller
const fetchHtml = fetch(`${base}html`, { signal })
.then(res => res.text())
const fetchResponseError = fetch(`${base}error/reset`, { signal })
const fetchRedirect = fetch(`${base}redirect/301`, { signal })
.then(res => res.json())
return Promise.all([
t.resolves(fetchHtml.then(result => t.equal(result, '<html></html>'))),
t.rejects(fetchResponseError),
t.resolves(fetchRedirect),
]).then(() => t.equal(signal.listeners.abort.length, 0))
})
t.test('reject body with AbortError when aborted before read completely', t => {
const controller = new AbortController()
return fetch(`${base}slow`, { signal: controller.signal }).then(res => {
const promise = res.text()
controller.abort()
return t.rejects(promise, { name: 'AbortError' })
})
})
t.test('reject body methods immediately with AbortError when aborted before disturbed', t => {
const controller = new AbortController()
return fetch(`${base}slow`, { signal: controller.signal })
.then(res => {
controller.abort()
return t.rejects(res.text(), { name: 'AbortError' })
})
})
t.test('raise AbortError when aborted before stream is closed', async t => {
t.plan(1)
const controller = new AbortController()
const res = await fetch(`${base}slow`, { signal: controller.signal })
res.body.once('error', (err) => {
t.match(err, { name: 'AbortError', code: 'FETCH_ABORT' })
})
controller.abort()
})
t.test('cancel request body stream with AbortError when aborted', {
skip: supportStreamDestroy ? false : 'stream.destroy not supported',
}, t => {
const controller = new AbortController()
const body = new Minipass({ objectMode: true })
const promise = fetch(`${base}slow`, {
signal: controller.signal,
body,
method: 'POST',
})
const result = Promise.all([
new Promise((resolve) => {
body.on('error', (error) => {
t.match(error, { name: 'AbortError' })
resolve()
})
}),
t.rejects(promise, { name: 'AbortError' }),
])
controller.abort()
return result
})
t.test('immediately reject when attempting to cancel and unsupported', async t => {
const controller = new AbortController()
const body = new (class extends Minipass {
get destroy () {
return undefined
}
})({ objectMode: true })
await t.rejects(fetch(`${base}slow`, {
signal: controller.signal,
body,
method: 'POST',
}), { message: 'not supported' })
})
t.test('throw TypeError if a signal is not AbortSignal', async t => {
await t.rejects(fetch(`${base}inspect`, { signal: {} }), {
name: 'TypeError',
message: /AbortSignal/,
})
await t.rejects(fetch(`${base}inspect`, { signal: '' }), {
name: 'TypeError',
message: /AbortSignal/,
})
await t.rejects(fetch(`${base}inspect`, { signal: Object.create(null) }), {
name: 'TypeError',
message: /AbortSignal/,
})
})
t.test('set default User-Agent', async t => {
const res = await fetch(`${base}inspect`)
const json = await res.json()
t.match(json.headers['user-agent'], /^minipass-fetch/)
})
t.test('setting User-Agent', t =>
fetch(`${base}inspect`, {
headers: {
'user-agent': 'faked',
},
}).then(res => res.json()).then(res =>
t.equal(res.headers['user-agent'], 'faked')))
t.test('set default Accept header', async t => {
const res = await fetch(`${base}inspect`)
const json = await res.json()
t.equal(json.headers.accept, '*/*')
})
t.test('allow setting Accept header', async t => {
const res = await fetch(`${base}inspect`, {
headers: {
accept: 'application/json',
},
})
const json = await res.json()
t.equal(json.headers.accept, 'application/json')
})
t.test('allow POST request', async t => {
const res = await fetch(`${base}inspect`, { method: 'POST' })
const json = await res.json()
t.equal(json.method, 'POST')
t.equal(json.headers['transfer-encoding'], undefined)
t.equal(json.headers['content-type'], undefined)
t.equal(json.headers['content-length'], '0')
})
t.test('POST request with string body', async t => {
const res = await fetch(`${base}inspect`, {
method: 'POST',
body: 'a=1',
})
const json = await res.json()
t.equal(json.method, 'POST')
t.equal(json.body, 'a=1')
t.equal(json.headers['transfer-encoding'], undefined)
t.equal(json.headers['content-type'], 'text/plain;charset=UTF-8')
t.equal(json.headers['content-length'], '3')
})
t.test('POST request with buffer body', async t => {
const res = await fetch(`${base}inspect`, {
method: 'POST',
body: Buffer.from('a=1', 'utf-8'),
})
const json = await res.json()
t.equal(json.method, 'POST')
t.equal(json.body, 'a=1')
t.equal(json.headers['transfer-encoding'], undefined)
t.equal(json.headers['content-type'], undefined)
t.equal(json.headers['content-length'], '3')
})
t.test('allow POST request with ArrayBuffer body', async t => {
const res = await fetch(`${base}inspect`, {
method: 'POST',
body: stringToArrayBuffer('Hello, world!\n'),
})
const json = await res.json()
t.equal(json.method, 'POST')
t.equal(json.body, 'Hello, world!\n')
t.equal(json.headers['transfer-encoding'], undefined)
t.equal(json.headers['content-type'], undefined)
t.equal(json.headers['content-length'], '14')
})
t.test('POST request with ArrayBuffer body from VM context', async t => {
Buffer.from(new VMArrayBuffer())
const url = `${base}inspect`
const opts = {
method: 'POST',
body: new VMUint8Array(Buffer.from('Hello, world!\n')).buffer,
}
const res = await fetch(url, opts)
const json = await res.json()
t.equal(json.method, 'POST')
t.equal(json.body, 'Hello, world!\n')
t.equal(json.headers['transfer-encoding'], undefined)
t.equal(json.headers['content-type'], undefined)
t.equal(json.headers['content-length'], '14')
})
t.test('POST request with ArrayBufferView (Uint8Array) body', async t => {
const url = `${base}inspect`
const opts = {
method: 'POST',
body: new Uint8Array(stringToArrayBuffer('Hello, world!\n')),
}
const res = await fetch(url, opts)
const json = await res.json()
t.equal(json.method, 'POST')
t.equal(json.body, 'Hello, world!\n')
t.equal(json.headers['transfer-encoding'], undefined)
t.equal(json.headers['content-type'], undefined)
t.equal(json.headers['content-length'], '14')
})
t.test('POST request with ArrayBufferView (DataView) body', async t => {
const url = `${base}inspect`