wheresrhys / fetch-mock-jest

Deprecated - please use https://www.npmjs.com/package/@fetch-mock/jest
http://www.wheresrhys.co.uk/fetch-mock/
MIT License
60 stars 11 forks source link
deprecated

Deprecated - Use https://www.npmjs.com/package/@fetch-mock/jest instead

fetch-mock-jest

Wrapper around fetch-mock - a comprehensive, isomorphic mock for the fetch api - which provides an interface that is more idiomatic when working in jest.

The example at the bottom of this readme demonstrates the intuitive API, but shows off only a fraction of fetch-mock's functionality. Features include:

Requirements

fetch-mock-jest requires the following to run:

Installation

npm install -D fetch-mock-jest

global fetch

const fetchMock = require('fetch-mock-jest')

node-fetch

jest.mock('node-fetch', () => require('fetch-mock-jest').sandbox())
const fetchMock = require('node-fetch')

API

Setting up mocks

Please refer to the fetch-mock documentation and cheatsheet

All jest methods for configuring mock functions are disabled as fetch-mock's own methods should always be used

Inspecting mocks

All the built in jest function inspection assertions can be used, e.g. expect(fetchMock).toHaveBeenCalledWith('http://example.com').

fetchMock.mock.calls and fetchMock.mock.results are also exposed, giving access to manually inspect the calls.

The following custom jest expectation methods, proxying through to fetch-mock's inspection methods are also available. They can all be prefixed with the .not helper for negative assertions.

Notes

e.g. expect(fetchMock).toHaveLastPatched(filter, options)

Tearing down mocks

fetchMock.mockClear() can be used to reset the call history

fetchMock.mockReset() can be used to remove all configured mocks

Please report any bugs in resetting mocks on the issues board

Example

const fetchMock = require('fetch-mock-jest');
const userManager = require('../src/user-manager');

test(async () => {
    const users = [{ name: 'bob' }];
    fetchMock
        .get('http://example.com/users', users)
        .post('http://example.com/user', (url, options) => {
            if (typeof options.body.name === 'string') {
                users.push(options.body);
                return 202;
            }
            return 400;
        })
        .patch(
            {
                url: 'http://example.com/user'
            },
            405
        );

    expect(await userManager.getAll()).toEqual([{ name: 'bob' }]);
    expect(fetchMock).toHaveLastFetched('http://example.com/users
        get');
    await userManager.create({ name: true });
    expect(fetchMock).toHaveLastFetched(
        {
            url: 'http://example.com/user',
            body: { name: true }
        },
        'post'
    );
    expect(await userManager.getAll()).toEqual([{ name: 'bob' }]);
    fetchMock.mockClear();
    await userManager.create({ name: 'sarah' });
    expect(fetchMock).toHaveLastFetched(
        {
            url: 'http://example.com/user',
            body: { name: 'sarah' }
        },
        'post'
    );
    expect(await userManager.getAll()).toEqual([
        { name: 'bob' },
        { name: 'sarah' }
    ]);
    fetchMock.mockReset();
});