What is mockttp?
Mockttp is a versatile HTTP mocking library for Node.js, designed to help developers test HTTP-based applications by simulating HTTP servers and requests. It allows you to create mock servers, define request handlers, and verify interactions, making it easier to test how your application handles different HTTP scenarios.
What are mockttp's main functionalities?
Create a mock server
This feature allows you to create and start a local mock server on a specified port. The code sample demonstrates how to start a mock server on port 8080 and log its URL.
const { getLocal } = require('mockttp');
(async () => {
const mockServer = getLocal();
await mockServer.start(8080);
console.log(`Mock server running at ${mockServer.url}`);
})();
Mock HTTP requests
This feature allows you to define how the mock server should respond to specific HTTP requests. The code sample shows how to mock a GET request to '/example' and respond with a 200 status and 'Hello, world!' message.
const { getLocal } = require('mockttp');
(async () => {
const mockServer = getLocal();
await mockServer.start(8080);
await mockServer.forGet('/example').thenReply(200, 'Hello, world!');
})();
Verify request interactions
This feature allows you to verify that certain requests were made to the mock server. The code sample demonstrates how to check the number of times a mocked endpoint was accessed.
const { getLocal } = require('mockttp');
(async () => {
const mockServer = getLocal();
await mockServer.start(8080);
const endpointMock = await mockServer.forGet('/example').thenReply(200, 'Hello, world!');
// Later, verify the request was made
const requests = await endpointMock.getSeenRequests();
console.log(`Number of requests made: ${requests.length}`);
})();
Other packages similar to mockttp
nock
Nock is a popular HTTP mocking library for Node.js that intercepts HTTP requests and allows you to define custom responses. Unlike Mockttp, which creates a mock server, Nock works by intercepting requests at the network level, making it more suitable for unit tests where you don't want to start an actual server.
http-server-mock
http-server-mock is a lightweight HTTP server mock library that allows you to create mock servers and define request handlers. It is similar to Mockttp in that it creates a server, but it is generally simpler and may not offer as many features for complex testing scenarios.
wiremock
WireMock is a flexible HTTP mocking tool that can be used for testing HTTP clients. It is more feature-rich and can be used both as a standalone server and embedded in Java applications. While Mockttp is focused on Node.js, WireMock is a more general-purpose tool with a broader range of features.
Mockttp
![Try Mockttp on RunKit](https://badge.runkitcdn.com/mockttp.svg)
Part of HTTP Toolkit: powerful tools for building, testing & debugging HTTP(S)
Mockttp lets you intercept, transform or test HTTP requests & responses in JavaScript - quickly, reliably & anywhere.
You can use Mockttp for integration testing, by intercepting real requests as part of your test suite, or you can use Mockttp to build custom HTTP proxies that capture, inspect and/or rewrite HTTP in any other kind of way you like.
HTTP testing is the most common and well supported use case. There's a lot of tools to test HTTP, but typically by stubbing the HTTP functions in-process at the JS level. That ties you to a specific environment, doesn't truly test the real requests that you code would send, and only works for requests made in the same JS process. It's inflexible, limiting and inaccurate, and often unreliable & tricky to debug too.
Mockttp meanwhile allows you to do accurate true integration testing, writing one set of tests that works out of the box in node or browsers, with support for transparent proxying & HTTPS, strong typing & promises throughout, fast & safe parallel testing, and with debuggability built-in at every stage.
Mockttp is also battle-tested as a scriptable rewriting proxy, powering all the HTTP internals of HTTP Toolkit. Anything you can do with HTTP Toolkit, you can automate with Mockttp as a headless script.
Features
Let's get specific. Mockttp lets you:
- Write easy, fast & reliable node.js & browser HTTP integration tests
- Stub server responses and verify HTTP requests
- Intercept HTTPS too, with built-in self-signed certificate generation
- Mock requests inside or outside your process/tab, including subprocesses, native code, remote devices, and more
- Test true real-world behaviour, verifying the real requests made, and testing exactly how your whole stack will handle a response in reality
- Stub direct requests as a mock server, or transparently stub requests sent elsewhere as an HTTP mocking proxy
- Mock HTTP in both node & browser tests with the same code (universal/'isomorphic' HTTP mocking)
- Safely mock HTTP in parallel, with autoconfiguration of ports, mock URLs and proxy settings, for super-charged integration testing
- Debug your tests easily, with full explainability of all mock matches & misses, mock autosuggestions, and an extra detailed debug mode
- Write modern test code, with promises all the way down, async/await, and strong typing (with TypeScript) throughout
Get Started
npm install --save-dev mockttp
Get Testing
To run an HTTP integration test, you need to:
- Start a Mockttp server
- Mock the endpoints you're interested in
- Make some real HTTP requests
- Assert on the results
Here's a simple minimal example of all that using plain promises, Mocha, Chai & Superagent, which works out of the box in Node and modern browsers:
const superagent = require("superagent");
const mockServer = require("mockttp").getLocal();
describe("Mockttp", () => {
beforeEach(() => mockServer.start(8080));
afterEach(() => mockServer.stop());
it("lets you mock requests, and assert on the results", async () => {
await mockServer.forGet("/mocked-path").thenReply(200, "A mocked response");
const response = await superagent.get("http://localhost:8080/mocked-path");
expect(response.text).to.equal("A mocked response");
});
});
(Want to play with this yourself? Try running a standalone version live on RunKit: https://npm.runkit.com/mockttp)
That is pretty easy, but we can make this simpler & more powerful. Let's take a look at some more fancy features:
const superagent = require("superagent");
require('superagent-proxy')(superagent);
const mockServer = require("mockttp").getLocal();
describe("Mockttp", () => {
beforeEach(() => mockServer.start());
afterEach(() => mockServer.stop());
it("lets you mock without specifying a port, allowing parallel testing", async () => {
await mockServer.forGet("/mocked-endpoint").thenReply(200, "Tip top testing");
let response = await superagent.get(mockServer.urlFor("/mocked-endpoint"));
expect(response.text).to.equal("Tip top testing");
});
it("lets you verify the request details the mockttp server receives", async () => {
const endpointMock = await mockServer.forGet("/mocked-endpoint").thenReply(200, "hmm?");
await superagent.get(mockServer.urlFor("/mocked-endpoint"));
const requests = await endpointMock.getSeenRequests();
expect(requests.length).to.equal(1);
expect(requests[0].url).to.equal(`http://localhost:${mockServer.port}/mocked-endpoint`);
});
it("lets you proxy requests made to any other hosts", async () => {
await mockServer.forGet("http://google.com").thenReply(200, "I can't believe it's not google!");
let response = await superagent.get("http://google.com").proxy(mockServer.url);
expect(response.text).to.equal("I can't believe it's not google!");
});
});
These examples use Mocha, Chai and Superagent, but none of those are required: Mockttp will work with any testing tools that can handle promises (and with minor tweaks, many that can't), and can mock requests from any library, tool or device you might care to use.
Documentation
Credits