express-request-mock
v5.0.0
Published
A convenient wrapper for node-mocks-http which makes testing Express or Koa controllers and middleware easy.
Maintainers
Readme
express-request-mock
A convenient wrapper for node-mocks-http which makes testing Express controllers and middleware easy.
import requestMock from 'express-request-mock'
import handler from '../routes/animals'
it('returns a 200 response', async () => {
const { response } = await requestMock(handler, options)
expect(response.statusCode).toEqual(200)
})Installation
This is a Node.js module available through the npm registry. Node.js 24 or higher is required.
$ npm install -D express-request-mockUsage
This package provides one function which accepts three arguments:
- The route handler to test (a function which accepts a request, response, and optional fallthrough function.)
- An options object for
createRequest(the options are documented here.) - An options object for
createResponse(the options are documented here.) - An object containing extra properties to decorate to the request and response objects.
The function returns a promise which will resolve when the response is ended or the fallthrough function (next()) is called. The promise will reject if the underlying code throws an error or the fallthrough function is called with an error.
When resolved the promise will to an object with the following keys:
request: The request object created bycreateRequestresponse: The response object created bycreateResponse
Below is a complete example demonstrating the use of express-request-mock to test an Express route handler:
import { describe, it } from 'node:test'
import assert from 'node:assert'
import requestMock from 'express-request-mock'
import handler from '../routes/animals'
describe('Controllers - Animals', () => {
describe('when a valid species is requested', () => {
const options = { query: { species: 'dog' } }
it('returns a 200 response', async () => {
const { response } = await requestMock(handler, options)
assert.equal(response.statusCode, 200)
})
})
describe('when a non-existent species is requested', () => {
const options = { query: { species: 'unicorn' } }
it('returns a 404 response', async () => {
const { response } = await requestMock(handler, options)
assert.equal(response.statusCode, 404)
})
})
describe('when an invalid request is received', () => {
const options = { query: {} }
it('calls the fallthrough function with an error', async () => {
const call = () => requestMock(handler, options)
await assert.rejects(call, {
name: 'NoSpeciesProvided',
message: 'You must provide a species',
})
})
})
})TypeScript
This package can be used within TypeScript codebases and supports generic arguments for your request and response object type definitions.
import requestMock from 'express-request-mock'
import type { Request, Response } from 'express'
import handler from '../routes/animals'
type MyRequest = Request<{ pageId: string }>
type MyResponse = Response<undefined, { auth: boolean }>
const { request, response } = await requestMock<MyRequest, MyResponse>(
handler,
{ query: { species: 'dog' } },
{ locals: { requestId: 123 } },
)
request.query.species // string
response.locals.requestId // numberLicense
express-request-mock is MIT licensed.
