-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrandom-access-http.test.js
214 lines (197 loc) · 5.97 KB
/
random-access-http.test.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
var test = require('tape')
var proxyquire = require('proxyquire').noPreserveCache()
var sinon = require('sinon')
var stoppable = require('stoppable')
var http = require('http')
var st = require('st')
var path = require('path')
var port = 3000
var server
var content = 'reinscribed like a chain letter through the generations, and despite all the errors of reproduction — indeed, perhaps because of such errors — it has recruited its copyists and interpreters into the ranks of brotherhood'
var standardHandler = (req, res) => {
res.setHeader('Content-Type', 'plain/text')
res.setHeader('Accept-Ranges', 'Bytes')
res.setHeader('Content-Length', content.length)
if (req.method === 'HEAD') {
return res.end()
}
var range = req.headers.range
if (range) {
var match = range.match(/bytes=(\d+)-(\d+)/)
if (match) {
var a = parseInt(match[1], 10)
var b = parseInt(match[2], 10)
var str = content.slice(a, b + 1)
res.setHeader('Content-Range', `bytes ${a}-${b}/${content.length}`)
res.setHeader('Content-Length', str.length)
res.statusCode = 206
res.end(str)
return
}
}
res.end(content)
}
function startServer (fn, cb) {
if (server && server.listening) {
return server.stop(() => startServer(fn, cb))
}
server = stoppable(http.createServer(fn))
server.listen(port, cb)
}
function stopServer (t) {
if (!server.listening) return t.end()
server.stop(() => {
t.end()
})
}
test('it uses node http/s agent setting with keepAlive when run in node', (t) => {
var httpStub = sinon.stub()
var httpsStub = sinon.stub()
var raHttp = proxyquire('../index.js', {
http: {
Agent: httpStub
},
https: {
Agent: httpsStub
}
})
raHttp('normal', { url: 'http://localhost:3000' })
t.ok(httpStub.calledWithNew())
t.ok(httpStub.calledWith({ keepAlive: true }))
t.ok(httpsStub.calledWithNew())
t.ok(httpsStub.calledWith({ keepAlive: true }))
t.end()
})
test('it does not use node http/s when in browser', (t) => {
var httpStub = sinon.stub()
var httpsStub = sinon.stub()
var raHttp = proxyquire('../index.js', {
'./lib/is-node': false,
http: {
Agent: httpStub
},
https: {
Agent: httpsStub
}
})
raHttp('not/using/node', { url: 'http://localhost:3000' })
t.ok(httpStub.notCalled)
t.ok(httpsStub.notCalled)
t.end()
})
test('raHttp.open() callback returns error if server does not support range requests', (t) => {
var raHttp = require('../index.js')
var withoutRangeSupportHandler = (req, res) => {
res.end()
}
startServer(withoutRangeSupportHandler, (err) => {
t.error(err, 'server started without error')
var ra = raHttp('without-range-support', { url: 'http://localhost:3000' })
ra.read(0, 10, (err, res) => {
t.ok(err.message.search(/Accept-Ranges does not include/) !== -1, 'error contains "Accept-Ranges does not include"')
stopServer(t)
})
})
})
test('raHttp.open() callback returns error if call to axios.head() fails', (t) => {
var raHttp = require('../index.js')
var notFoundHandler = (req, res) => {
res.statusCode = 404
res.end()
}
startServer(notFoundHandler, (err) => {
t.error(err, 'server started without error')
var ra = raHttp('not-found', { url: 'http://localhost:3000' })
ra.read(0, 10, (err, res) => {
t.ok(err.message.search(/Request failed with status code 404/) !== -1, 'error contains "Request failed with status code 404"')
stopServer(t)
})
})
})
test('raHttp.read() returns a buffer of length requested', (t) => {
var raHttp = require('../index.js')
startServer(standardHandler, (err) => {
t.error(err)
var ra = raHttp('test', { url: 'http://localhost:3000' })
ra.read(10, 20, (err, data) => {
t.error(err)
t.ok(data instanceof Buffer)
t.same(data.length, 20)
stopServer(t)
})
})
})
test('raHttp.write does not throw error', (t) => {
var raHttp = require('../index.js')
startServer(standardHandler, (err) => {
t.error(err)
var ra = raHttp('test-write', { url: 'http://localhost:3000' })
t.doesNotThrow(ra.write.bind(ra, 10, 'some-data', function () {
stopServer(t)
}))
})
})
test('raHttp.write logs with options.verbose === true', (t) => {
var stub = sinon.stub()
var proxyRaHttp = proxyquire('../index', {
'./lib/logger': {
log: stub
}
})
startServer(standardHandler, (err) => {
t.error(err)
var ra = proxyRaHttp('test-write', { url: 'http://localhost:3000', verbose: true })
ra.write(10, 'some-data', (err, res) => {
t.error(err)
t.ok(stub.calledWith('trying to write', 'test-write', 10, 'some-data'))
stopServer(t)
})
})
})
test('raHttp.del does not throw error', (t) => {
var raHttp = require('../index.js')
startServer(standardHandler, (err) => {
t.error(err)
var ra = raHttp('test-del', { url: 'http://localhost:3000' })
t.doesNotThrow(ra.del.bind(ra, 10, 100, function () {
stopServer(t)
}))
})
})
test('raHttp.del logs with options.verbose === true', (t) => {
var stub = sinon.stub()
var proxyRaHttp = proxyquire('../index', {
'./lib/logger': {
log: stub
}
})
startServer(standardHandler, (err) => {
t.error(err)
var ra = proxyRaHttp('test-del', { url: 'http://localhost:3000', verbose: true })
ra.del(10, 100, (err, res) => {
t.error(err)
t.ok(stub.calledWith('trying to del', 'test-del', 10, 100))
stopServer(t)
})
})
})
test('raHttp.read() on server that does not support ranges', (t) => {
var raHttp = require('../index.js')
var mount = st({
path: path.join(__dirname, '..')
})
var server = stoppable(http.createServer(function (req, res) {
mount(req, res)
}))
server.listen(port, function () {
var ra = raHttp('LICENSE', { url: 'http://localhost:3000', strict: false })
ra.read(10, 20, (err, data) => {
t.error(err)
t.ok(data instanceof Buffer)
t.same(data.length, 20)
server.stop(function () {
t.end()
})
})
})
})