-
Notifications
You must be signed in to change notification settings - Fork 1
/
ExpressMocksSpec.ts
482 lines (424 loc) · 15.7 KB
/
ExpressMocksSpec.ts
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
import { Request, Response, NextFunction, RequestHandler } from 'express'
import HttpStatus from 'http-status-codes'
import { expect } from 'chai'
import { ExpressMocks, Mocks, TestResult } from './ExpressMocks'
import VError from 'verror'
import sinon from 'sinon'
import data_driven from 'data-driven'
const serviceMethod = (value: string) => new Promise((resolve) => setTimeout(() => resolve({ test: value === 'ok' }), 1))
const asyncServiceRouter = (req: Request, res: Response, next: NextFunction): void => {
serviceMethod(req.query.value as string)
.then(res.json)
.catch(next)
}
const typedRequestHandler: RequestHandler<{ myparam: string }, { result: boolean }, { request: string }, { myQuery: string }> = (_req, res) => {
res.json({ result: true })
}
class SomeError extends VError {}
class OtherError extends VError {}
describe('ExpressMocks', () => {
let mocks: Mocks
beforeEach(() => {
mocks = ExpressMocks.create()
})
it('should call router methods with mocks', () => {
let called = false
return mocks
.test((req, res, next) => {
called = true
expect(req).to.equal(mocks.req)
expect(res).to.equal(mocks.res)
expect(next).to.equal(mocks.next)
next()
})
.then(() => {
expect(called).to.be.true
})
})
it('should call test router methods with mocks and error', () => {
const error = new Error('fail')
let called = false
return mocks
.testError((err, req, res, next) => {
called = true
expect(err).to.equal(error)
expect(req).to.equal(mocks.req)
expect(res).to.equal(mocks.res)
expect(next).to.equal(mocks.next)
next()
}, error)
.then(() => {
expect(called).to.be.true
})
})
it('should allow modification of request and response', () => {
return ExpressMocks.create(
{
myProp: true,
},
{
done: false,
},
)
.test((req: any, res: any, next) => {
try {
expect(req.myProp).to.be.true
expect(res.done).to.be.false
next()
} catch (err) {
next(err)
}
})
.expectNext()
})
it('should allow checking for json response', () => {
return mocks.test(asyncServiceRouter).expectJson({ test: false })
})
it('should be able to handle replaced response mock functions', () => {
return mocks
.test((_, res) => {
const origJson = res.json
res.json = (body?: any) => {
return origJson.call(res, body)
}
res.json({ test: true })
})
.expectJson({ test: true })
})
it('should allow passing modified requests', () => {
mocks.req.query.value = 'ok'
return mocks.test(asyncServiceRouter).expectJson({ test: true })
})
it('should resolve after sendFile', () => {
return mocks
.test((_, res) => {
res.sendFile('/path/to/file', { root: '..' })
})
.expectSendFile('/path/to/file')
})
it('should resolve after download', () => {
return mocks
.test((_, res) => {
res.download('/path/to/file', 'file.name')
})
.expectDownload('/path/to/file', 'file.name')
})
it('should resolve after render', () => {
return mocks
.test((_, res) => {
res.render('myview')
})
.expectRender('myview')
})
it('should resolve after jsonp', () => {
return mocks
.test((_, res) => {
res.jsonp({ test: true })
})
.expectJsonp({ test: true })
})
it('should resolve after end', () => {
return mocks
.test((_, res) => {
res.end()
})
.expectEnd()
})
it('should pass checking redirect', () => {
return mocks
.test((_, res) => {
res.redirect('/other/url')
})
.expectRedirect('/other/url')
})
it('should fail checking redirect', () => {
return mocks
.test((_, res) => {
res.redirect('/wrong/url')
})
.expectRedirect('/other/url')
.should.be.rejectedWith('expected redirect to be called with exact arguments')
})
it('should allow testing of sync handlers with same api (making them async)', () => {
return mocks
.test((_, res) => {
res.sendStatus(HttpStatus.NOT_FOUND)
})
.expectSendStatus(HttpStatus.NOT_FOUND)
})
it('should allow checking for status changes', () => {
return mocks
.test((_, res) => {
res.sendStatus(HttpStatus.NOT_FOUND)
})
.expectSendStatus(HttpStatus.NOT_FOUND)
})
it('should allow for request handler which returns a promise to allow post-response action checks', () => {
let flag = false
return mocks
.test((_, res) => {
return new Promise<void>((resolve) => {
res.sendStatus(HttpStatus.NOT_FOUND)
setTimeout(() => {
flag = true
resolve()
}, 10)
})
})
.then(() => {
expect(flag).to.be.true
})
})
it('should act like a promise to allow arbritrary tests', () => {
return mocks.test(asyncServiceRouter).then(() => {
sinon.assert.called(mocks.res.json)
})
})
it('should resolve mocks in promise', () => {
return mocks.test(asyncServiceRouter).then((mocksArg) => {
expect(mocksArg).to.equal(mocks)
})
})
it('should even resolve mocks in promise after expect', () => {
return mocks
.test(asyncServiceRouter)
.expectJson({ test: false })
.then((mocksArg) => {
expect(mocksArg).to.equal(mocks)
})
})
it('should return testResults again to allow expectation chaining', () => {
return mocks
.test((_, res) => {
res.status(HttpStatus.NOT_FOUND).send('Not found')
})
.expectStatus(HttpStatus.NOT_FOUND)
.expectSend('Not found')
.then(() => {
sinon.assert.notCalled(mocks.res.json)
})
})
it('should allow testing send for empty args', () => {
return mocks
.test((_, res) => {
res.status(HttpStatus.NOT_FOUND).send()
})
.expectStatus(HttpStatus.NOT_FOUND)
.expectSend()
})
it('should allow testing type', () => {
return mocks
.test((_, res) => {
res.type('text/html').send()
})
.expectType('text/html')
.expectSend()
})
describe('next', () => {
it('should allow checking for nextCall', () => {
return mocks
.test((_1, _2, next) => {
next()
})
.expectNext()
})
it('should accept "next" with explicit undefined', () => {
return mocks
.test((_1, _2, next) => {
next(undefined)
})
.expectNext(undefined)
})
it('should fail when expecting success and tell about error passed to next()', async () => {
const err = await mocks
.test((_1, _2, next) => {
next(new Error('fail'))
})
.expectNext().should.be.rejected
expect(err.message).to.contain('expected call to next() without arguments, but got "Error: fail"')
})
it('should fail when next() has not been called at promise end', async () => {
const err = await mocks
.test(async (_1, _2, _3) => {
// don't call next()
})
.expectNext().should.be.rejected
expect(err.message).to.contain('next() not called as expected')
})
it('should handle replaced stub functions gracefully by ignoring call counts', async () => {
return mocks
.test(async (_1, res, next) => {
const origJson = res.json
res.json = (body?: any) => {
return origJson.call(res, body)
}
next()
})
.expectNext()
})
it('should allow checking for next with error type', () => {
return mocks
.test((_1, _2, next) => {
next(new SomeError('Bla'))
})
.expectNext(SomeError)
.expectNext(SomeError, 'Bla')
})
it('should allow checking for next with string parameter', () => {
return mocks
.test((_1, _2, next) => {
next('route')
})
.expectNext('route')
})
it('should allow checking for next with Error via string parameter', () => {
return mocks
.test((_1, _2, next) => {
next(new Error('failed'))
})
.expectNext('failed')
})
it('should allow checking for next with error instance', () => {
const error = new SomeError('Bla')
return mocks
.test((_1, _2, next) => {
next(error)
})
.expectNext(error)
})
it('should allow checking for wrong message regexp for next', () => {
return mocks
.test((_1, _2, next) => {
next(new SomeError('Bla'))
})
.expectNext(SomeError, /Bl/)
})
it('should allow checking for next argument via anonymous function', () => {
return mocks
.test((_1, _2, next) => {
next(new SomeError('fail'))
})
.expectNext(SomeError, (err: SomeError) => {
expect(err.message).to.equal('fail')
})
})
it('should fail on wrong type for next with error', () => {
return mocks
.test((_1, _2, next) => {
next(new SomeError('Bla'))
})
.expectNext(OtherError)
.should.be.rejectedWith('expected next to have been called with instance of OtherError')
})
it('should fail on missing parameter', () => {
return mocks
.test((_1, _2, next) => {
next()
})
.expectNext(Error)
.should.be.rejectedWith('expected next to have been called with any argument, but was called without')
})
it('should fail on wrong message regexp for next with error', () => {
return mocks
.test((_1, _2, next) => {
next(new SomeError('Bla'))
})
.expectNext(SomeError, /Blubb/)
.should.be.rejectedWith('expected error message to match /Blubb/, but got "Bla"')
})
it('should fail on wrong message for next with error', () => {
return mocks
.test((_1, _2, next) => {
next(new SomeError('Bla'))
})
.expectNext(SomeError, 'Blubb')
.should.be.rejectedWith('expected error message to include "Blubb", but got "Bla"')
})
})
data_driven(
[
{
scenario: 'next() twice',
first: (_1: Request, _2: Response, next: NextFunction) => next(),
then: (_1: Request, _2: Response, next: NextFunction) => next(),
test: (result: TestResult) => result.expectNext().should.be.rejectedWith('next() called more than once'),
},
{
scenario: 'next() then redirect()',
first: (_1: Request, _2: Response, next: NextFunction) => next(),
then: (_1: Request, res: Response) => res.redirect('/bla'),
test: (result: TestResult) => result.expectNext().should.be.rejectedWith('next() call was expected, but (also?) redirect() was called'),
},
{
scenario: 'render() then sendFile()',
first: (_1: Request, res: Response) => res.render('myview'),
then: (_1: Request, res: Response) => res.sendFile('/bla/file.txt'),
test: (result: TestResult) =>
result.expectRender('myview').should.be.rejectedWith('render() call was expected, but (also?) sendFile() was called'),
},
],
() => {
it('should fail on promise middleware that calls {scenario}', (ctx: any) => {
const promise = mocks.test(async (req, res, next) => {
ctx.first(req, res, next)
ctx.then(req, res, next)
})
return ctx.test(promise)
})
},
)
it('should harmonize with async/await', async () => {
await mocks
.test((_, res) => {
res.status(HttpStatus.NOT_FOUND).send('Not found')
return Promise.resolve()
})
.expectSend('Not found')
sinon.assert.calledWith(mocks.res.status, HttpStatus.NOT_FOUND)
})
it('should finish asynchronously, even without RequestHandler that returns a promise', () => {
return mocks
.test((_, res) => {
setTimeout(() => {
res.send('done')
}, 10)
})
.expectSend('done')
})
it('should handle custom typed request handlers correctly', async () => {
await mocks
.test(typedRequestHandler)
// @ts-expect-error as it checks for a valid response type here
.expectJson({ unexpected: 'type' })
// should fail here at runtime, but `tsc` should have complained earlier
.should.be.rejectedWith('expected json to be called with arguments')
})
describe('header checks', () => {
it('should allow checking for a header value via set', () => {
return mocks
.test((_, res, next) => {
res.set('X-My-Header', 'myValue')
next()
})
.expectHeader('X-My-Header', 'myValue')
.expectNext()
})
it('should allow checking for a header value via setHeader', () => {
return mocks
.test((_, res, next) => {
res.setHeader('X-My-Header', 'myValue')
next()
})
.expectHeader('X-My-Header', 'myValue')
.expectNext()
})
it('should fail if header has not been set', () => {
return mocks
.test((_, res, next) => {
next()
})
.expectHeader('X-My-Header', 'myValue')
.should.be.rejectedWith("Expected header 'X-My-Header' to have been set to 'myValue'")
})
})
})