
Security News
Oxlint Introduces Type-Aware Linting Preview
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.
fake-http-request
Advanced tools
Utility class to fake HTTP/HTTPS requests for unit testing Node.js projects. It captures arguments for outgoing requests and allows you to simulate network errors and responses easily.
Utility class to fake a HTTP/HTTPS request for unit testing Node.js projects. It captures arguments for outgoing requests and allows you to simulate network errors and responses easily.
npm install fake-http-request
Before the relevant HTTP/S requests, install the fake request:
var fake = require('fake-http-request');
fake.install('https');
To clean up and restore the original HTTP/S requests, after testing, use:
fake.uninstall('https');
This will replace the system https.request
with a test method that captures calls instead of sending them out to the network, so it will work with any client code that uses the system http/https libraries.
Both install
and uninstall
can take an argument -- the module name where to install the fake requests. By default, they will use https
.
You can then use https.request.calls
to inspect individual calls. Each call object will have the following structure:
args
: array
-- arguments passed to the requestbody
: array
-- chunks written to the request bodynetworkError
: function (error)
-- use this to simulate a network error for the call.respond
: function(httpCode, statusMessage, body)
-- use this to simulate a successful network response.var fakeRequest = require('fake-http-request'),
https = require('https'),
request = require('request');
fakeRequest.install();
request('https://www.google.com', function (error, response, body) {
console.log('got response', response.statusCode, response.statusMessage, body)
}).on('request', function () {
console.log('number of calls', https.request.calls.length);
console.log('first call', https.request.calls[0].args[0].host, https.request.calls[0].args[0].port, https.request.calls[0].args[0].path);
// simulate a response
https.request.calls[0].respond(404, 'Not found', 'some html here');
});
call = request('https://www.google.com', function (error, response, body) {
console.log('got error', error);
}).on('request', function () {
var mostRecent = https.request.calls.length - 1;
console.log('number of calls', https.request.calls.length);
console.log('second call', https.request.calls[mostRecent].args[0].host, https.request.calls[mostRecent].args[0].port, https.request.calls[mostRecent].args[0].path);
// simulate a response
https.request.calls[mostRecent].networkError('BOOM!');
});
FAQs
Utility class to fake HTTP/HTTPS requests for unit testing Node.js projects. It captures arguments for outgoing requests and allows you to simulate network errors and responses easily.
The npm package fake-http-request receives a total of 68 weekly downloads. As such, fake-http-request popularity was classified as not popular.
We found that fake-http-request demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.