MockRequest helper for CodeceptJS
![Build Status](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2Fcodecept-js%2Fmock-request%2Fbadge&style=popout)
Playwright engine is not supported by this helper. Use native Playwright API to mock requests.
👻 Implements HTTP request mocking, record & replay via PollyJS for CodeceptJS.
Use it to:
- 📼 Record & Replay HTTP requests
- 📲 Replace server responses
- ⛔ Block third party integrations: analytics, chats, support systems.
Works with Puppeteer & WebDriver helpers of CodeceptJS.
API
Table of Contents
MockRequest
This helper allows to mock requests while running tests in Puppeteer or WebDriver.
For instance, you can block calls to 3rd-party services like Google Analytics, CDNs.
Another way of using is to emulate requests from server by passing prepared data.
MockRequest helper works in these modes:
- passthrough (default) - mock prefefined HTTP requests
- record - record all requests into a file
- replay - replay all recorded requests from a file
Combining record/replay modes allows testing websites with large datasets.
To use in passthrough mode set rules to mock requests and they will be automatically intercepted and replaced:
I.mockRequest('GET', '/api/users', '[]');
In record-replay mode start mocking to make HTTP requests recorded/replayed, and stop when you don't need to block requests anymore:
I.startMocking();
I.amOnPage('/users');
I.stopMocking();
Installations
npm i @codeceptjs/mock-request --save-dev
Requires Puppeteer helper or WebDriver helper enabled
Configuration
With Puppeteer
Enable helper in config file:
helpers: {
Puppeteer: {
},
MockRequestHelper: {
require: '@codeceptjs/mock-request',
}
}
Polly config options can be passed as well:
helpers: {
MockRequestHelper: {
require: '@codeceptjs/mock-request',
mode: record,
recordIfMissing: true,
recordFailedRequests: false,
expiresIn: null,
persisterOptions: {
keepUnusedRequests: false
fs: {
recordingsDir: './data/requests',
},
},
}
}
TROUBLESHOOTING: Puppeteer does not mock requests in headless mode:
Problem: request mocking does not work and in debug mode you see this in output:
Access to fetch at {url} from origin {url} has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.
Solution: update Puppeteer config to include --disable-web-security
arguments:
Puppeteer: {
show: false,
chrome: {
args: [
'--disable-web-security',
],
},
},
With WebDriver
This helper partially works with WebDriver. It can intercept and mock requests only on already loaded page.
helpers: {
WebDriver: {
},
MockRequestHelper: {
require: '@codeceptjs/mock-request',
}
}
Record/Replay mode is not tested in WebDriver but technically can work with REST Persister
Usage
👻 Mock Requests
To intercept API requests and mock them use following API
Calling mockRequest
or mockServer
will start mocking, if it was not enabled yet.
I.startMocking();
I.mockRequest('/google-analytics/*path', 200);
I.mockRequest('GET', '/api/users', 200);
I.mockServer(server => {
server.get('https://server.com/api/users*').
intercept((req, res) => { res.status(200).json(users);
});
});
I.click('Get users);
I.stopMocking();
📼 Record & Replay
At this moment works only with Puppeteer
Record & Replay mode allows you to record all xhr & fetch requests and save them to file.
On next runs those requests can be replayed.
By default, it stores all passed requests, but this behavior can be customized with I.mockServer
Set mode via enironment variable, replay
mode by default:
helpers: {
Puppeteer: {
},
MockRequest: {
require: '@codeceptjs/mock-request',
mode: process.env.MOCK_MODE || 'replay',
},
}
Interactions between I.startMocking()
and I.stopMocking()
will be recorded and saved to data/requests
directory.
I.startMocking()
I.startMocking('users')
Use I.mockServer()
to customize which requests should be recorded and under which name:
I.startMocking();
I.mockServer((server) => {
server.any('https://api1.com/*').passthrough(false).recordingName('api1');
server.any('https://api2.com/*').passthrough(false).recordingName('api2');
});
To stop request recording/replaying use I.stopMocking()
.
🎥 To record HTTP interactions execute tests with MOCK_MODE environment variable set as "record":
MOCK_MODE=record npx codeceptjs run --debug
📼 To replay them launch tests without environment variable:
npx codeceptjs run --debug
Parameters
startMocking
Starts mocking of http requests.
In record mode starts recording of all requests.
In replay mode blocks all requests and replaces them with saved.
If inside one test you plan to record/replay requests in several places, provide recording name as the parameter.
I.startMocking();
I.startMocking('main-page');
I.stopMocking();
I.startMocking('login-page');
To update PollyJS configuration use secon argument:
I.startMocking('comments', { mode: 'replay' });
I.startMocking('users-loaded', {
recordFailedRequests: true
})
Parameters
title
any (optional, default 'Test'
)config
(optional, default {}
)
mockServer
Use PollyJS Server Routes API to declare mocks via callback function:
server.get('/api/v2/users').intercept((req, res) => {
res.sendStatus(200).json({ users });
});
server.get('/api/v1').passthrough();
In record replay mode you can define which routes should be recorded and where to store them:
I.startMocking('mock');
I.mockServer((server) => {
server.any('https://cdn1.com/*').passthrough(false).recordingName('xml');
server.any('https://cdn2.com/*').passthrough(false).recordingName('svg');
server.any('/api/*').passthrough(false);
});
Parameters
recordMocking
Forces record mode for mocking.
Requires mocking to be started.
I.recordMocking();
replayMocking
Forces replay mode for mocking.
Requires mocking to be started.
I.replayMocking();
passthroughMocking
Forces passthrough mode for mocking.
Requires mocking to be started.
I.passthroughMocking();
flushMocking
Waits for all requests handled by MockRequests to be resolved:
I.flushMocking();
stopMocking
Stops mocking requests.
Must be called to save recorded requests into faile.
I.stopMocking();
mockRequest
Mock response status
I.mockRequest('GET', '/api/users', 200);
I.mockRequest('ANY', '/secretsRoutes/*', 403);
I.mockRequest('POST', '/secrets', { secrets: 'fakeSecrets' });
I.mockRequest('GET', '/api/users/1', 404, 'User not found');
Multiple requests
I.mockRequest('GET', ['/secrets', '/v2/secrets'], 403);
Parameters
method
string request method. Can be GET
, POST
, PUT
, etc or ANY
.oneOrMoreUrls
(string | Array<string>) url(s) to mock. Can be exact URL, a pattern, or an array of URLs.dataOrStatusCode
(number | string | object) status code when number provided. A response body otherwiseadditionalData
(string | object) response body when a status code is set by previous parameter. (optional, default null
)