-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathrouter-coverage.test.js
More file actions
449 lines (384 loc) · 12.6 KB
/
Copy pathrouter-coverage.test.js
File metadata and controls
449 lines (384 loc) · 12.6 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
/* global describe, it, before, after */
const expect = require('chai').expect
const request = require('supertest')
const queryparams = require('../lib/utils/queryparams')
const next = require('../lib/next')
describe('0http - Router Coverage', () => {
const baseUrl = `http://localhost:${process.env.PORT}`
let server, router
describe('Sequential Router Configuration', () => {
it('should create router with default configuration', () => {
const sequentialRouter = require('../lib/router/sequential')()
expect(sequentialRouter).to.have.property('id')
expect(sequentialRouter).to.have.property('lookup')
expect(sequentialRouter).to.have.property('use')
expect(sequentialRouter).to.have.property('on')
})
it('should create router with custom configuration', () => {
const customDefaultRoute = (req, res) => {
res.statusCode = 418 // I'm a teapot
res.end('Custom 404')
}
const customErrorHandler = (err, req, res) => {
res.statusCode = 500
res.end('Custom error: ' + err.message)
}
const customId = 'CUSTOM-ROUTER-ID'
const sequentialRouter = require('../lib/router/sequential')({
defaultRoute: customDefaultRoute,
errorHandler: customErrorHandler,
cacheSize: 100,
id: customId
})
expect(sequentialRouter.id).to.equal(customId)
})
it('should create router with positive cacheSize', () => {
const sequentialRouter = require('../lib/router/sequential')({
cacheSize: 10
})
expect(sequentialRouter).to.have.property('id')
})
it('should create router with zero cacheSize', () => {
const sequentialRouter = require('../lib/router/sequential')({
cacheSize: 0
})
expect(sequentialRouter).to.have.property('id')
})
it('should handle router.use with middleware that has no id', () => {
const sequentialRouter = require('../lib/router/sequential')()
// This should not throw an error
sequentialRouter.use('/test', (req, res, next) => next())
expect(sequentialRouter).to.have.property('id')
})
// Test for step parameter in lookup
it('should handle step parameter in lookup', () => {
const router = require('../lib/router/sequential')()
router.get('/step-test', (req, res, next) => {
req.stepCalled = true
next()
})
const req = { method: 'GET', url: '/step-test' }
const res = {
end: () => {},
statusCode: 200
}
let stepCalled = false
const step = () => {
stepCalled = true
}
router.lookup(req, res, step)
expect(stepCalled).to.equal(true)
})
// Test for no handlers case
it('should call defaultRoute when no handlers match', () => {
let defaultRouteCalled = false
const router = require('../lib/router/sequential')({
defaultRoute: (req, res) => {
defaultRouteCalled = true
res.statusCode = 404
res.end()
}
})
const req = { method: 'GET', url: '/non-existent' }
const res = {
end: () => {},
statusCode: 200
}
router.lookup(req, res)
expect(defaultRouteCalled).to.equal(true)
expect(res.statusCode).to.equal(404)
})
})
describe('Router API and Error Handling', () => {
before((done) => {
const http = require('../index')({
router: require('../lib/router/sequential')()
})
router = http.router
server = http.server
// Register routes for testing
router.get('/error', (req, res) => {
throw new Error('Intentional error')
})
router.get('/malformed-url', (req, res) => {
// Test with undefined URL
req.url = undefined
// We need to call our own lookup, not the router's lookup
// because the router's lookup will be called by the framework
res.end('ok')
})
router.get('/empty-params', (req, res) => {
// Force params to be undefined for testing
req.params = undefined
res.end('ok')
})
// Test router.use with function as first argument
router.use((req, res, next) => {
req.useCalled = true
next()
})
router.get('/use-test', (req, res) => {
res.end(req.useCalled ? 'use called' : 'use not called')
})
// Test router.on method
router.on('PUT', '/on-test', (req, res) => {
res.end('on method works')
})
server.listen(~~process.env.PORT, () => {
done()
})
})
it('should handle errors in route handlers', async () => {
await request(baseUrl)
.get('/error')
.expect(500)
.then((response) => {
expect(response.text).to.equal('Internal Server Error')
})
})
it('should handle malformed URLs', async () => {
await request(baseUrl)
.get('/malformed-url')
.expect(200)
.then((response) => {
expect(response.text).to.equal('ok')
})
})
// Direct test for malformed URLs
it('should handle undefined URL in lookup', () => {
const req = { url: undefined }
const res = {
end: () => {},
statusCode: 200
}
const router = require('../lib/router/sequential')()
// This should not throw an error
router.lookup(req, res)
expect(req.url).to.equal('/')
})
it('should handle undefined params', async () => {
await request(baseUrl)
.get('/empty-params')
.expect(200)
.then((response) => {
expect(response.text).to.equal('ok')
})
})
// Test for cached route lookup
it('should use cache for route lookup', () => {
// Create router with cache
const router = require('../lib/router/sequential')({
cacheSize: 10
})
// Add a route
router.get('/test', (req, res, next) => {
res.called = true
next()
})
// First lookup should miss cache
const req1 = { method: 'GET', url: '/test' }
const res1 = {
end: () => {},
statusCode: 200
}
router.lookup(req1, res1)
// Second lookup should hit cache
const req2 = { method: 'GET', url: '/test' }
const res2 = {
end: () => {},
statusCode: 200
}
router.lookup(req2, res2)
// Both should have path set
expect(req1.path).to.equal('/test')
expect(req2.path).to.equal('/test')
})
// Test for route with params
it('should handle route with params when req.params exists', () => {
const router = require('../lib/router/sequential')()
// Add a route with params
router.get('/users/:id', (req, res, next) => {
res.content = req.params.id
next()
})
// Create request with existing params
const req = {
method: 'GET',
url: '/users/123',
params: { existing: 'value' }
}
const res = {
end: () => {},
statusCode: 200
}
router.lookup(req, res)
// Should merge params
expect(req.params.existing).to.equal('value')
expect(req.params.id).to.equal('123')
})
it('should support router.use with function as first argument', async () => {
await request(baseUrl)
.get('/use-test')
.expect(200)
.then((response) => {
expect(response.text).to.equal('use called')
})
})
it('should support router.on method', async () => {
await request(baseUrl)
.put('/on-test')
.expect(200)
.then((response) => {
expect(response.text).to.equal('on method works')
})
})
it('should handle 404 for non-existent routes', async () => {
await request(baseUrl)
.get('/non-existent-route')
.expect(404)
})
after(() => {
server.close()
})
})
describe('Query Parameters Parser', () => {
it('should handle URLs without query parameters', () => {
const req = {}
queryparams(req, '/path/without/query')
expect(req.path).to.equal('/path/without/query')
expect(req.query).to.deep.equal({})
})
it('should handle URLs with empty query string', () => {
const req = {}
queryparams(req, '/path?')
expect(req.path).to.equal('/path')
expect(req.query).to.deep.equal({})
})
it('should handle query parameters without values', () => {
const req = {}
queryparams(req, '/path?param=')
expect(req.path).to.equal('/path')
expect(req.query).to.deep.equal({ param: '' })
})
})
describe('Next Middleware Executor', () => {
it('should handle empty middleware array', () => {
const req = {}
const res = { finished: false }
const defaultRoute = (req, res) => {
res.called = true
}
const errorHandler = () => {}
next([], req, res, 0, {}, defaultRoute, errorHandler)
expect(res.called).to.equal(true)
})
it('should handle finished response', () => {
const req = {}
const res = { finished: true }
const defaultRoute = (req, res) => {
res.called = true
}
const errorHandler = () => {}
next([], req, res, 0, {}, defaultRoute, errorHandler)
expect(res.called).to.equal(undefined)
})
it('should handle middleware errors', () => {
const req = {}
const res = {}
const middleware = (req, res, next) => {
next(new Error('Middleware error'))
}
const defaultRoute = () => {}
const errorHandler = (err, req, res) => {
res.error = err.message
}
next([middleware], req, res, 0, {}, defaultRoute, errorHandler)
expect(res.error).to.equal('Middleware error')
})
it('should handle middleware exceptions', () => {
const req = {}
const res = {}
const middleware = (req, res, next) => {
throw new Error('Middleware exception')
}
const defaultRoute = () => {}
const errorHandler = (err, req, res) => {
res.error = err.message
}
next([middleware], req, res, 0, {}, defaultRoute, errorHandler)
expect(res.error).to.equal('Middleware exception')
})
it('should handle async middleware rejections', async () => {
const req = {}
const res = {}
const middleware = async (req, res, next) => {
throw new Error('Async failure')
}
const defaultRoute = () => {}
const errorHandler = (err, req, res) => {
res.error = err.message
}
await next([middleware], req, res, 0, {}, defaultRoute, errorHandler)
expect(res.error).to.equal('Async failure')
})
it('should handle nested router without pattern', () => {
const req = { url: '/test', path: '/test' }
const res = {}
const nestedRouter = {
id: 'nested-router',
lookup: (req, res, next) => {
req.nestedCalled = true
next()
}
}
const defaultRoute = () => {}
const errorHandler = () => {}
next([nestedRouter], req, res, 0, {}, defaultRoute, errorHandler)
expect(req.nestedCalled).to.equal(true)
expect(req.preRouterUrl).to.equal(undefined)
expect(req.preRouterPath).to.equal(undefined)
})
it('should handle nested router with pattern', () => {
const req = { url: '/prefix/test', path: '/prefix/test' }
const res = {}
const nestedRouter = {
id: 'nested-router',
lookup: (req, res, next) => {
req.nestedCalled = true
next()
}
}
const routers = {
'nested-router': /^\/prefix/
}
const defaultRoute = () => {}
const errorHandler = () => {}
next([nestedRouter], req, res, 0, routers, defaultRoute, errorHandler)
expect(req.nestedCalled).to.equal(true)
expect(req.preRouterUrl).to.equal('/prefix/test')
expect(req.preRouterPath).to.equal('/prefix/test')
expect(req.url).to.equal('/test')
})
it('should handle nested router with pattern that removes entire path', () => {
const req = { url: '/prefix', path: '/prefix' }
const res = {}
const nestedRouter = {
id: 'nested-router',
lookup: (req, res, next) => {
req.nestedCalled = true
next()
}
}
const routers = {
'nested-router': /^\/prefix/
}
const defaultRoute = () => {}
const errorHandler = () => {}
next([nestedRouter], req, res, 0, routers, defaultRoute, errorHandler)
expect(req.nestedCalled).to.equal(true)
expect(req.preRouterUrl).to.equal('/prefix')
expect(req.preRouterPath).to.equal('/prefix')
expect(req.url).to.equal('/')
})
})
})