Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Module to stub endpoints for Expressjs apps running. Useful when you need to temporarily mock services for testing reasons.
Exposes an API to mock endpoints for ExpressJS apps. It is a handy way to temporarily change the behavior of your mocked service calls.
You stubbed your backend with an ExpressJS app. You have a service that returns 200, {name: 'Leonardo'}
. You wish to simulate a failure scenario for the first call 500, {error: 'server is down. Click here to retry.'}
. Now you want the service call to return a success for a retry()
or any subsequent calls.
in summary, facilmock
can temporary change the behavior of a service call via REST API call to your own stub ExpressJS. When you wish you can again, via REST API call, reset
all tempory behavior. Please refer to exmaples bellow.
Once module added, it seats in front of every request to your expressJS app.
If facilmock
can match the request method
and url
from mocked endpoints, it will return the status code
and response
pre configured by you.
When facilmock
can't match anyting, things will as usual like facilmock
doens't even exist.
npm install facilmock --save-dev
This module is appropriated for development use only.
Assuming you already have your running and middlewares configured, all you need is load facilmock
module:
var express = require('express');
var app = express();
//facilmock loaded at this point.
var facilmock = require('facilmock')(app);
//existing mocked endpoint
app.get('/api/get-user-info', function(req, res) {
res.json('{"name": "leonardo correa"}').status(200);
});
//more endpoints here...
server = app.listen(7777, function () {
console.log('>>> Express App is running on http://%s:%s', server.address().address, server.address().port);
done();
});
Facilmock is just a couple of expressjs middlewares. So order here matters as any expressjs app. Assuming you are using this module from your test, you now need to stub your endpoints:
var request = require('supertest');
var url = 'http://localhost:7777'
request(url).post('/mockme')
.send({'method': 'GET', 'url': '/api/get-user-info', 'response': {'code': '200', 'content': {'name': 'some other name'} } })
.end(function(err, res) {
done();
});
Or test this service failure:
var request = require('supertest');
var url = 'http://localhost:7777'
request(url).post('/mockme')
.send({'method': 'GET', 'url': '/api/get-user-info', 'response': {'code': '400', 'content': 'invalid request or server is down' } })
.end(function(err, res) {
done();
});
Note I am using supertest to perform the request against facilmock
Don't forget: if you are dealing with cross domain services calls, you may be interested in those lines too:
app.all('/*', function(req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Request-Method", "GET, PUT, POST, OPTIONS");
res.header("Access-Control-Allow-Methods", "OPTIONS, GET, PUT, POST, DELETE");
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
next();
});
Those are not part of this module and is totally related to your use case. So add those lines to your ExpressJS app if this is your case.
facilmock
has only three methods on the API and they are extremelly intuitive:
- POST a JSON to /mockme; return json with all stubbed end-points.
- GET to /getmocks; return json with all stubbed end-points.
- GET to /resetmocks; clear up mocked endpoint and return the current adn empty json object.
npm test
There are lots of further features that could be implemented. However facilmock
solves my problem at the moment.
If you need anyting more sofisticated, please send me a pull request. This package is not supposed to replace any other testing framework.
Please refer to the Contributor Guidelines and Conduct of Code from AngularJs project.
Leonardo Correa
FAQs
Module to stub endpoints for Expressjs apps running. Useful when you need to temporarily mock services for testing reasons.
The npm package facilmock receives a total of 1 weekly downloads. As such, facilmock popularity was classified as not popular.
We found that facilmock 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
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.