Mocking and testing fetch requests with Jest
Some days your code flows, your fingers fly, and you're god amongst nerds. Other days you're testing fetch() requests.
So I'm writing this to save you some time. The definitive how to mock and test fetch requests guide for 2020.
First, a little background
Why even test requests?
Integration testing. Also known as the only useful testing. ๐
Semantics aside, most bugs happen on the edges. The touch points between systems. Interfaces between modules.
What bigger in-between point than calling an API? Lots can go wrong. Server can fail, network down, strange response codes, or just corruption on the wire.
Take for example this isAuthenticated method from a library I built at work.
async isAuthenticated(): Promise<boolean> {
const expiresAt = new Date(
Cookies.get(`${COOKIE_PREFIX}-expires-at`) || 0
),
userId = this.getUserId();
if (!userId || new Date() >= expiresAt) {
// we locally know you aren't authenticated
return false;
}
return this.authorizeWithServer();
}
Is the user authenticated? Check local cookies. That's always gonna work.
And if cookies look correct, you gotta ask the server if they're actually correct. User might have been banned, deleted, access revoked, or just changed their password.
That API request is the most likely failure point.
Wanna really test this method? Gonna have to test the fetch.
Why mock fetch requests?
A pure unit testing approach says you should never mock requests to other systems.
You assume the request works and test that your function makes the request. Then you test the function that's called after the fetch.
And you enter the unit testing fallacy.
Besides, structuring your code to allow a pure unit testing approach makes it harder to read, understand, and tedious to work with. You'd need something like this:
private async authorizeWithServer() {
// you *might* be authenticated, we have to check with the server
const response = fetch("localhost:3000/api/user/authorize");
this.parseAuthorizeWithServerResult(response)
}
private async parseAuthorizeWithServerResult(response) {
// do stuff
}
Yeah that's not gonna get out of hand ๐
Keep your code simple and mock the request instead. Hook into the fetch() API and manipulate what it returns. That is the way to testing bliss my friend.
How to mock fetch requests in Jest
After more hours of trial and error than I dare admit, here's what I found: You'll need to mock the fetch method itself, write a mock for each request, and use a fetch mocking library.
install
The library that worked best for me was fetch-mock.
yarn add --dev fetch-mock
mock
You tell Jest to use a mock library like this:
// src/__mocks__/isomorphic-fetch.js
const fetchMock = require("fetch-mock");
const fetch = fetchMock.sandbox();
module.exports = fetch;
Jest imports this file instead of isomorphic-fetch when running your code. Same approach works to replace any other library.
Put a file of <library name> in src/__mocks__ and that file becomes said library. In this case we're replacing the isomorphic-fetch library with a fetch-mock sandbox.
So when your code says
import fetch from 'isomorphic-fetch'
It's actually getting the sandbox ๐ค
You'll need to import a fetch to support mocking โ can't rely on the global window.fetch I'm afraid. You can't use that in test environments anyway since it doesn't exist.
types
Using TypeScript in tests, you'll have to jump through another hoop: TypeScript doesn't understand that isomorphic-fetch is mocked and gets confused.
You have to tell the type system that "Hey, this is actually fetch-mock. All is well."
// src/__tests__/AuthHelper.spec.ts
import _fetchMock from 'isomorphic-fetch' // imports the sandbox
type FetchMock = import('fetch-mock') // imports type info
const fetchMock = _fetchMock as FetchMock // casts as correct type
Convoluted but how else is TypeScript supposed to know isomorphic-fetch is actually fetch-mock ...
PS: I'm assuming Jest because it's become the industry standard for JavaScript testing in the past few years.
And now it works โ๏ธ
All you gotta do now is mock a request and write your test.
// src/__tests__/AuthHelper.spec.ts
describe("isAuthenticated", () => {
// resets your mocks so tests don't bleed into each other
afterEach(() => {
fetchMock.restore();
fetchMock.reset();
});
it("is true on server success", async () => {
fetchMock.mock("http://localhost:3000/api/user/authorize", {
status: 200,
body: { success: true }
});
expect(await AuthHelper.isAuthenticated()).toBe(true);
});
โ it("is false on server unauthenticated", async () => {
fetchMock.mock("http://localhost:3000/api/user/authorize", {
status: 401,
body: { success: false }
});
expect(await AuthHelper.isAuthenticated()).toBe(false);
});
})
Each of those tests is saying "When you fetch() this URL, return this object. No network calls are made, no servers harmed, no ambiguity about what happens. Just solid tests doing exactly what you want.
And now you know your code works. Bliss ๐
Happy Friday,
~Swizec
Filed under: FrontendTechnical


