-
-
Notifications
You must be signed in to change notification settings - Fork 191
/
Copy pathsend.js
1330 lines (1148 loc) · 40 KB
/
send.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
process.env.NO_DEPRECATION = 'send'
var after = require('after')
var assert = require('assert')
var fs = require('fs')
var http = require('http')
var path = require('path')
var request = require('supertest')
var send = require('..')
// test server
var dateRegExp = /^\w{3}, \d+ \w+ \d+ \d+:\d+:\d+ \w+$/
var fixtures = path.join(__dirname, 'fixtures')
var app = http.createServer(function (req, res) {
function error (err) {
res.statusCode = err.status
res.end(http.STATUS_CODES[err.status])
}
send(req, req.url, { root: fixtures })
.on('error', error)
.pipe(res)
})
describe('send(file).pipe(res)', function () {
it('should stream the file contents', function (done) {
request(app)
.get('/name.txt')
.expect('Content-Length', '4')
.expect(200, 'tobi', done)
})
it('should stream a zero-length file', function (done) {
request(app)
.get('/empty.txt')
.expect('Content-Length', '0')
.expect(200, '', done)
})
it('should decode the given path as a URI', function (done) {
request(app)
.get('/some%20thing.txt')
.expect(200, 'hey', done)
})
it('should serve files with dots in name', function (done) {
request(app)
.get('/do..ts.txt')
.expect(200, '...', done)
})
it('should treat a malformed URI as a bad request', function (done) {
request(app)
.get('/some%99thing.txt')
.expect(400, 'Bad Request', done)
})
it('should 400 on NULL bytes', function (done) {
request(app)
.get('/some%00thing.txt')
.expect(400, 'Bad Request', done)
})
it('should treat an ENAMETOOLONG as a 404', function (done) {
var path = Array(100).join('foobar')
request(app)
.get('/' + path)
.expect(404, done)
})
it('should handle headers already sent error', function (done) {
var app = http.createServer(function (req, res) {
res.write('0')
send(req, req.url, { root: fixtures })
.on('error', function (err) { res.end(' - ' + err.message) })
.pipe(res)
})
request(app)
.get('/name.txt')
.expect(200, '0 - Can\'t set headers after they are sent.', done)
})
it('should support HEAD', function (done) {
request(app)
.head('/name.txt')
.expect(200)
.expect('Content-Length', '4')
.expect(shouldNotHaveBody())
.end(done)
})
it('should add an ETag header field', function (done) {
request(app)
.get('/name.txt')
.expect('etag', /^W\/"[^"]+"$/)
.end(done)
})
it('should add a Date header field', function (done) {
request(app)
.get('/name.txt')
.expect('date', dateRegExp, done)
})
it('should add a Last-Modified header field', function (done) {
request(app)
.get('/name.txt')
.expect('last-modified', dateRegExp, done)
})
it('should add a Accept-Ranges header field', function (done) {
request(app)
.get('/name.txt')
.expect('Accept-Ranges', 'bytes', done)
})
it('should 404 if the file does not exist', function (done) {
request(app)
.get('/meow')
.expect(404, 'Not Found', done)
})
it('should emit ENOENT if the file does not exist', function (done) {
var app = http.createServer(function (req, res) {
send(req, req.url, { root: fixtures })
.on('error', function (err) { res.end(err.statusCode + ' ' + err.code) })
.pipe(res)
})
request(app)
.get('/meow')
.expect(200, '404 ENOENT', done)
})
it('should not override content-type', function (done) {
var app = http.createServer(function (req, res) {
res.setHeader('Content-Type', 'application/x-custom')
send(req, req.url, { root: fixtures }).pipe(res)
})
request(app)
.get('/name.txt')
.expect('Content-Type', 'application/x-custom', done)
})
it('should set Content-Type via mime map', function (done) {
request(app)
.get('/name.txt')
.expect('Content-Type', 'text/plain; charset=utf-8')
.expect(200, function (err) {
if (err) return done(err)
request(app)
.get('/tobi.html')
.expect('Content-Type', 'text/html; charset=utf-8')
.expect(200, done)
})
})
it('should default Content-Type to octet-stream', function (done) {
request(app)
.get('/no_ext')
.expect('Content-Type', 'application/octet-stream')
.expect(200, done)
})
it('should 404 if file disappears after stat, before open', function (done) {
var app = http.createServer(function (req, res) {
send(req, req.url, { root: 'test/fixtures' })
.on('file', function () {
// simulate file ENOENT after on open, after stat
var fn = this.send
this.send = function (path, stat) {
fn.call(this, (path + '__xxx_no_exist'), stat)
}
})
.pipe(res)
})
request(app)
.get('/name.txt')
.expect(404, done)
})
it('should 500 on file stream error', function (done) {
var app = http.createServer(function (req, res) {
send(req, req.url, { root: 'test/fixtures' })
.on('stream', function (stream) {
// simulate file error
stream.on('open', function () {
stream.emit('error', new Error('boom!'))
})
})
.pipe(res)
})
request(app)
.get('/name.txt')
.expect(500, done)
})
describe('"headers" event', function () {
it('should fire when sending file', function (done) {
var cb = after(2, done)
var server = http.createServer(function (req, res) {
send(req, req.url, { root: fixtures })
.on('headers', function () { cb() })
.pipe(res)
})
request(server)
.get('/name.txt')
.expect(200, 'tobi', cb)
})
it('should not fire on 404', function (done) {
var cb = after(1, done)
var server = http.createServer(function (req, res) {
send(req, req.url, { root: fixtures })
.on('headers', function () { cb() })
.pipe(res)
})
request(server)
.get('/bogus')
.expect(404, cb)
})
it('should fire on index', function (done) {
var cb = after(2, done)
var server = http.createServer(function (req, res) {
send(req, req.url, { root: fixtures })
.on('headers', function () { cb() })
.pipe(res)
})
request(server)
.get('/pets/')
.expect(200, /tobi/, cb)
})
it('should not fire on redirect', function (done) {
var cb = after(1, done)
var server = http.createServer(function (req, res) {
send(req, req.url, { root: fixtures })
.on('headers', function () { cb() })
.pipe(res)
})
request(server)
.get('/pets')
.expect(301, cb)
})
it('should provide path', function (done) {
var cb = after(2, done)
var server = http.createServer(function (req, res) {
send(req, req.url, { root: fixtures })
.on('headers', onHeaders)
.pipe(res)
})
function onHeaders (res, filePath) {
assert.ok(filePath)
assert.strictEqual(path.normalize(filePath), path.normalize(path.join(fixtures, 'name.txt')))
cb()
}
request(server)
.get('/name.txt')
.expect(200, 'tobi', cb)
})
it('should provide stat', function (done) {
var cb = after(2, done)
var server = http.createServer(function (req, res) {
send(req, req.url, { root: fixtures })
.on('headers', onHeaders)
.pipe(res)
})
function onHeaders (res, path, stat) {
assert.ok(stat)
assert.ok('ctime' in stat)
assert.ok('mtime' in stat)
cb()
}
request(server)
.get('/name.txt')
.expect(200, 'tobi', cb)
})
it('should allow altering headers', function (done) {
var server = http.createServer(function (req, res) {
send(req, req.url, { root: fixtures })
.on('headers', onHeaders)
.pipe(res)
})
function onHeaders (res, path, stat) {
res.setHeader('Cache-Control', 'no-cache')
res.setHeader('Content-Type', 'text/x-custom')
res.setHeader('ETag', 'W/"everything"')
res.setHeader('X-Created', stat.ctime.toUTCString())
}
request(server)
.get('/name.txt')
.expect(200)
.expect('Cache-Control', 'no-cache')
.expect('Content-Type', 'text/x-custom')
.expect('ETag', 'W/"everything"')
.expect('X-Created', dateRegExp)
.expect('tobi')
.end(done)
})
})
describe('when "directory" listeners are present', function () {
it('should be called when sending directory', function (done) {
var server = http.createServer(function (req, res) {
send(req, req.url, { root: fixtures })
.on('directory', onDirectory)
.pipe(res)
})
function onDirectory (res) {
res.statusCode = 400
res.end('No directory for you')
}
request(server)
.get('/pets')
.expect(400, 'No directory for you', done)
})
it('should be called with path', function (done) {
var server = http.createServer(function (req, res) {
send(req, req.url, { root: fixtures })
.on('directory', onDirectory)
.pipe(res)
})
function onDirectory (res, dirPath) {
res.end(path.normalize(dirPath))
}
request(server)
.get('/pets')
.expect(200, path.normalize(path.join(fixtures, 'pets')), done)
})
})
describe('when no "directory" listeners are present', function () {
it('should redirect directories to trailing slash', function (done) {
request(createServer({ root: fixtures }))
.get('/pets')
.expect('Location', '/pets/')
.expect(301, done)
})
it('should respond with an HTML redirect', function (done) {
request(createServer({ root: fixtures }))
.get('/pets')
.expect('Location', '/pets/')
.expect('Content-Type', /html/)
.expect(301, />Redirecting to \/pets\/</, done)
})
it('should respond with default Content-Security-Policy', function (done) {
request(createServer({ root: fixtures }))
.get('/pets')
.expect('Location', '/pets/')
.expect('Content-Security-Policy', "default-src 'none'")
.expect(301, done)
})
it('should not redirect to protocol-relative locations', function (done) {
request(createServer({ root: fixtures }))
.get('//pets')
.expect('Location', '/pets/')
.expect(301, done)
})
it('should respond with an HTML redirect', function (done) {
var app = http.createServer(function (req, res) {
send(req, req.url.replace('/snow', '/snow ☃'), { root: 'test/fixtures' })
.pipe(res)
})
request(app)
.get('/snow')
.expect('Location', '/snow%20%E2%98%83/')
.expect('Content-Type', /html/)
.expect(301, />Redirecting to \/snow%20%E2%98%83\/</, done)
})
})
describe('when no "error" listeners are present', function () {
it('should respond to errors directly', function (done) {
request(createServer({ root: fixtures }))
.get('/foobar')
.expect(404, />Not Found</, done)
})
it('should respond with default Content-Security-Policy', function (done) {
request(createServer({ root: fixtures }))
.get('/foobar')
.expect('Content-Security-Policy', "default-src 'none'")
.expect(404, done)
})
it('should remove all previously-set headers', function (done) {
var server = createServer({ root: fixtures }, function (req, res) {
res.setHeader('X-Foo', 'bar')
})
request(server)
.get('/foobar')
.expect(shouldNotHaveHeader('X-Foo'))
.expect(404, done)
})
})
describe('with conditional-GET', function () {
it('should remove Content headers with 304', function (done) {
var server = createServer({ root: fixtures }, function (req, res) {
res.setHeader('Content-Language', 'en-US')
res.setHeader('Content-Location', 'http://localhost/name.txt')
res.setHeader('Contents', 'foo')
})
request(server)
.get('/name.txt')
.expect(200, function (err, res) {
if (err) return done(err)
request(server)
.get('/name.txt')
.set('If-None-Match', res.headers.etag)
.expect(shouldNotHaveHeader('Content-Language'))
.expect(shouldNotHaveHeader('Content-Length'))
.expect(shouldNotHaveHeader('Content-Type'))
.expect('Content-Location', 'http://localhost/name.txt')
.expect('Contents', 'foo')
.expect(304, done)
})
})
it('should not remove all Content-* headers', function (done) {
var server = createServer({ root: fixtures }, function (req, res) {
res.setHeader('Content-Location', 'http://localhost/name.txt')
res.setHeader('Content-Security-Policy', 'default-src \'self\'')
})
request(server)
.get('/name.txt')
.expect(200, function (err, res) {
if (err) return done(err)
request(server)
.get('/name.txt')
.set('If-None-Match', res.headers.etag)
.expect(shouldNotHaveHeader('Content-Length'))
.expect(shouldNotHaveHeader('Content-Type'))
.expect('Content-Location', 'http://localhost/name.txt')
.expect('Content-Security-Policy', 'default-src \'self\'')
.expect(304, done)
})
})
describe('where "If-Match" is set', function () {
it('should respond with 200 when "*"', function (done) {
request(app)
.get('/name.txt')
.set('If-Match', '*')
.expect(200, done)
})
it('should respond with 412 when ETag unmatched', function (done) {
request(app)
.get('/name.txt')
.set('If-Match', ' "foo",, "bar" ,')
.expect(412, done)
})
it('should respond with 200 when ETag matched', function (done) {
request(app)
.get('/name.txt')
.expect(200, function (err, res) {
if (err) return done(err)
request(app)
.get('/name.txt')
.set('If-Match', '"foo", "bar", ' + res.headers.etag)
.expect(200, done)
})
})
})
describe('where "If-Modified-Since" is set', function () {
it('should respond with 304 when unmodified', function (done) {
request(app)
.get('/name.txt')
.expect(200, function (err, res) {
if (err) return done(err)
request(app)
.get('/name.txt')
.set('If-Modified-Since', res.headers['last-modified'])
.expect(304, done)
})
})
it('should respond with 200 when modified', function (done) {
request(app)
.get('/name.txt')
.expect(200, function (err, res) {
if (err) return done(err)
var lmod = new Date(res.headers['last-modified'])
var date = new Date(lmod - 60000)
request(app)
.get('/name.txt')
.set('If-Modified-Since', date.toUTCString())
.expect(200, 'tobi', done)
})
})
})
describe('where "If-None-Match" is set', function () {
it('should respond with 304 when ETag matched', function (done) {
request(app)
.get('/name.txt')
.expect(200, function (err, res) {
if (err) return done(err)
request(app)
.get('/name.txt')
.set('If-None-Match', res.headers.etag)
.expect(304, done)
})
})
it('should respond with 200 when ETag unmatched', function (done) {
request(app)
.get('/name.txt')
.expect(200, function (err, res) {
if (err) return done(err)
request(app)
.get('/name.txt')
.set('If-None-Match', '"123"')
.expect(200, 'tobi', done)
})
})
})
describe('where "If-Unmodified-Since" is set', function () {
it('should respond with 200 when unmodified', function (done) {
request(app)
.get('/name.txt')
.expect(200, function (err, res) {
if (err) return done(err)
request(app)
.get('/name.txt')
.set('If-Unmodified-Since', res.headers['last-modified'])
.expect(200, done)
})
})
it('should respond with 412 when modified', function (done) {
request(app)
.get('/name.txt')
.expect(200, function (err, res) {
if (err) return done(err)
var lmod = new Date(res.headers['last-modified'])
var date = new Date(lmod - 60000).toUTCString()
request(app)
.get('/name.txt')
.set('If-Unmodified-Since', date)
.expect(412, done)
})
})
it('should respond with 200 when invalid date', function (done) {
request(app)
.get('/name.txt')
.set('If-Unmodified-Since', 'foo')
.expect(200, done)
})
})
})
describe('with Range request', function () {
it('should support byte ranges', function (done) {
request(app)
.get('/nums.txt')
.set('Range', 'bytes=0-4')
.expect(206, '12345', done)
})
it('should ignore non-byte ranges', function (done) {
request(app)
.get('/nums.txt')
.set('Range', 'items=0-4')
.expect(200, '123456789', done)
})
it('should be inclusive', function (done) {
request(app)
.get('/nums.txt')
.set('Range', 'bytes=0-0')
.expect(206, '1', done)
})
it('should set Content-Range', function (done) {
request(app)
.get('/nums.txt')
.set('Range', 'bytes=2-5')
.expect('Content-Range', 'bytes 2-5/9')
.expect(206, done)
})
it('should support -n', function (done) {
request(app)
.get('/nums.txt')
.set('Range', 'bytes=-3')
.expect(206, '789', done)
})
it('should support n-', function (done) {
request(app)
.get('/nums.txt')
.set('Range', 'bytes=3-')
.expect(206, '456789', done)
})
it('should respond with 206 "Partial Content"', function (done) {
request(app)
.get('/nums.txt')
.set('Range', 'bytes=0-4')
.expect(206, done)
})
it('should set Content-Length to the # of octets transferred', function (done) {
request(app)
.get('/nums.txt')
.set('Range', 'bytes=2-3')
.expect('Content-Length', '2')
.expect(206, '34', done)
})
describe('when last-byte-pos of the range is greater the length', function () {
it('is taken to be equal to one less than the length', function (done) {
request(app)
.get('/nums.txt')
.set('Range', 'bytes=2-50')
.expect('Content-Range', 'bytes 2-8/9')
.expect(206, done)
})
it('should adapt the Content-Length accordingly', function (done) {
request(app)
.get('/nums.txt')
.set('Range', 'bytes=2-50')
.expect('Content-Length', '7')
.expect(206, done)
})
})
describe('when the first- byte-pos of the range is greater length', function () {
it('should respond with 416', function (done) {
request(app)
.get('/nums.txt')
.set('Range', 'bytes=9-50')
.expect('Content-Range', 'bytes */9')
.expect(416, done)
})
it('should emit error 416 with content-range header', function (done) {
var server = http.createServer(function (req, res) {
send(req, req.url, { root: fixtures })
.on('error', function (err) {
res.setHeader('X-Content-Range', err.headers['Content-Range'])
res.statusCode = err.statusCode
res.end(err.message)
})
.pipe(res)
})
request(server)
.get('/nums.txt')
.set('Range', 'bytes=9-50')
.expect('X-Content-Range', 'bytes */9')
.expect(416, done)
})
})
describe('when syntactically invalid', function () {
it('should respond with 200 and the entire contents', function (done) {
request(app)
.get('/nums.txt')
.set('Range', 'asdf')
.expect(200, '123456789', done)
})
})
describe('when multiple ranges', function () {
it('should respond with 200 and the entire contents', function (done) {
request(app)
.get('/nums.txt')
.set('Range', 'bytes=1-1,3-')
.expect(shouldNotHaveHeader('Content-Range'))
.expect(200, '123456789', done)
})
it('should respond with 206 is all ranges can be combined', function (done) {
request(app)
.get('/nums.txt')
.set('Range', 'bytes=1-2,3-5')
.expect('Content-Range', 'bytes 1-5/9')
.expect(206, '23456', done)
})
})
describe('when if-range present', function () {
it('should respond with parts when etag unchanged', function (done) {
request(app)
.get('/nums.txt')
.expect(200, function (err, res) {
if (err) return done(err)
var etag = res.headers.etag
request(app)
.get('/nums.txt')
.set('If-Range', etag)
.set('Range', 'bytes=0-0')
.expect(206, '1', done)
})
})
it('should respond with 200 when etag changed', function (done) {
request(app)
.get('/nums.txt')
.expect(200, function (err, res) {
if (err) return done(err)
var etag = res.headers.etag.replace(/"(.)/, '"0$1')
request(app)
.get('/nums.txt')
.set('If-Range', etag)
.set('Range', 'bytes=0-0')
.expect(200, '123456789', done)
})
})
it('should respond with parts when modified unchanged', function (done) {
request(app)
.get('/nums.txt')
.expect(200, function (err, res) {
if (err) return done(err)
var modified = res.headers['last-modified']
request(app)
.get('/nums.txt')
.set('If-Range', modified)
.set('Range', 'bytes=0-0')
.expect(206, '1', done)
})
})
it('should respond with 200 when modified changed', function (done) {
request(app)
.get('/nums.txt')
.expect(200, function (err, res) {
if (err) return done(err)
var modified = Date.parse(res.headers['last-modified']) - 20000
request(app)
.get('/nums.txt')
.set('If-Range', new Date(modified).toUTCString())
.set('Range', 'bytes=0-0')
.expect(200, '123456789', done)
})
})
it('should respond with 200 when invalid value', function (done) {
request(app)
.get('/nums.txt')
.set('If-Range', 'foo')
.set('Range', 'bytes=0-0')
.expect(200, '123456789', done)
})
})
})
describe('when "options" is specified', function () {
it('should support start/end', function (done) {
request(createServer({ root: fixtures, start: 3, end: 5 }))
.get('/nums.txt')
.expect(200, '456', done)
})
it('should adjust too large end', function (done) {
request(createServer({ root: fixtures, start: 3, end: 90 }))
.get('/nums.txt')
.expect(200, '456789', done)
})
it('should support start/end with Range request', function (done) {
request(createServer({ root: fixtures, start: 0, end: 2 }))
.get('/nums.txt')
.set('Range', 'bytes=-2')
.expect(206, '23', done)
})
it('should support start/end with unsatisfiable Range request', function (done) {
request(createServer({ root: fixtures, start: 0, end: 2 }))
.get('/nums.txt')
.set('Range', 'bytes=5-9')
.expect('Content-Range', 'bytes */3')
.expect(416, done)
})
})
})
describe('send(file, options)', function () {
describe('acceptRanges', function () {
it('should support disabling accept-ranges', function (done) {
request(createServer({ acceptRanges: false, root: fixtures }))
.get('/nums.txt')
.expect(shouldNotHaveHeader('Accept-Ranges'))
.expect(200, done)
})
it('should ignore requested range', function (done) {
request(createServer({ acceptRanges: false, root: fixtures }))
.get('/nums.txt')
.set('Range', 'bytes=0-2')
.expect(shouldNotHaveHeader('Accept-Ranges'))
.expect(shouldNotHaveHeader('Content-Range'))
.expect(200, '123456789', done)
})
})
describe('cacheControl', function () {
it('should support disabling cache-control', function (done) {
request(createServer({ cacheControl: false, root: fixtures }))
.get('/name.txt')
.expect(shouldNotHaveHeader('Cache-Control'))
.expect(200, done)
})
it('should ignore maxAge option', function (done) {
request(createServer({ cacheControl: false, maxAge: 1000, root: fixtures }))
.get('/name.txt')
.expect(shouldNotHaveHeader('Cache-Control'))
.expect(200, done)
})
})
describe('etag', function () {
it('should support disabling etags', function (done) {
request(createServer({ etag: false, root: fixtures }))
.get('/name.txt')
.expect(shouldNotHaveHeader('ETag'))
.expect(200, done)
})
})
describe('extensions', function () {
it('should reject numbers', function (done) {
request(createServer({ extensions: 42, root: fixtures }))
.get('/pets/')
.expect(500, /TypeError: extensions option/, done)
})
it('should reject true', function (done) {
request(createServer({ extensions: true, root: fixtures }))
.get('/pets/')
.expect(500, /TypeError: extensions option/, done)
})
it('should be not be enabled by default', function (done) {
request(createServer({ root: fixtures }))
.get('/tobi')
.expect(404, done)
})
it('should be configurable', function (done) {
request(createServer({ extensions: 'txt', root: fixtures }))
.get('/name')
.expect(200, 'tobi', done)
})
it('should support disabling extensions', function (done) {
request(createServer({ extensions: false, root: fixtures }))
.get('/name')
.expect(404, done)
})
it('should support fallbacks', function (done) {
request(createServer({ extensions: ['htm', 'html', 'txt'], root: fixtures }))
.get('/name')
.expect(200, '<p>tobi</p>', done)
})
it('should 404 if nothing found', function (done) {
request(createServer({ extensions: ['htm', 'html', 'txt'], root: fixtures }))
.get('/bob')
.expect(404, done)
})
it('should skip directories', function (done) {
request(createServer({ extensions: ['file', 'dir'], root: fixtures }))
.get('/name')
.expect(404, done)
})
it('should not search if file has extension', function (done) {
request(createServer({ extensions: 'html', root: fixtures }))
.get('/thing.html')
.expect(404, done)
})
})
describe('lastModified', function () {
it('should support disabling last-modified', function (done) {
request(createServer({ lastModified: false, root: fixtures }))
.get('/name.txt')
.expect(shouldNotHaveHeader('Last-Modified'))
.expect(200, done)
})
})
describe('dotfiles', function () {
it('should default to "ignore"', function (done) {
request(createServer({ root: fixtures }))
.get('/.hidden.txt')
.expect(404, done)
})
it('should ignore file within dotfile directory', function (done) {
request(createServer({ root: fixtures }))
.get('/.mine/name.txt')
.expect(404, done)
})
it('should reject bad value', function (done) {
request(createServer({ dotfiles: 'bogus' }))
.get('/name.txt')
.expect(500, /dotfiles/, done)
})
describe('when "allow"', function (done) {
it('should send dotfile', function (done) {
request(createServer({ dotfiles: 'allow', root: fixtures }))
.get('/.hidden.txt')
.expect(200, 'secret', done)
})
it('should send within dotfile directory', function (done) {
request(createServer({ dotfiles: 'allow', root: fixtures }))
.get('/.mine/name.txt')
.expect(200, /tobi/, done)
})
it('should 404 for non-existent dotfile', function (done) {
request(createServer({ dotfiles: 'allow', root: fixtures }))
.get('/.nothere')
.expect(404, done)
})
})
describe('when "deny"', function (done) {
it('should 403 for dotfile', function (done) {
request(createServer({ dotfiles: 'deny', root: fixtures }))
.get('/.hidden.txt')
.expect(403, done)
})
it('should 403 for dotfile directory', function (done) {
request(createServer({ dotfiles: 'deny', root: fixtures }))
.get('/.mine')
.expect(403, done)
})
it('should 403 for dotfile directory with trailing slash', function (done) {
request(createServer({ dotfiles: 'deny', root: fixtures }))
.get('/.mine/')
.expect(403, done)
})
it('should 403 for file within dotfile directory', function (done) {
request(createServer({ dotfiles: 'deny', root: fixtures }))
.get('/.mine/name.txt')
.expect(403, done)
})
it('should 403 for non-existent dotfile', function (done) {
request(createServer({ dotfiles: 'deny', root: fixtures }))
.get('/.nothere')
.expect(403, done)
})