npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

express-request-mock

v4.0.0

Published

A convenient wrapper for node-mocks-http which makes testing Express controllers and middleware easy.

Downloads

9,774

Readme

express-request-mock

GitHub license build status npm version

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 18 or higher is required.

$ npm install --save-dev express-request-mock

Usage

This package provides one function which accepts three arguments:

  1. The route handler to test (a function which accepts a request, response, and optional fallthrough function.)
  2. An options object for createRequest (the options are documented here.)
  3. 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:

  1. request: The request object created by createRequest
  2. response: The response object created by createResponse

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',
      })
    })
  })
})

License

express-request-mock is MIT licensed.