Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Fiber | 25,266 | 656 | 2 days ago | 275 | September 08, 2022 | 38 | mit | Go | ||
⚡️ Express inspired web framework written in Go | ||||||||||
Iris | 23,753 | 320 | 14 hours ago | 212 | September 21, 2022 | 80 | bsd-3-clause | Go | ||
The fastest HTTP/2 Go Web Framework. New, modern and easy to learn. Fast development with Code you control. Unbeatable cost-performance ratio :leaves: :rocket: | 谢谢 | #Go | ||||||||||
Postgraphile | 11,806 | 76 | 99 | a month ago | 156 | May 25, 2022 | 63 | mit | TypeScript | |
Execute one command (or mount one Node.js middleware) and get an instant high-performance GraphQL API for your PostgreSQL database! | ||||||||||
Http Proxy Middleware | 9,780 | 359,536 | 6,528 | 7 days ago | 78 | April 22, 2022 | 87 | mit | TypeScript | |
:zap: The one-liner node.js http-proxy middleware for connect, express, next.js and more | ||||||||||
Morgan | 7,363 | 247,396 | 8,170 | a month ago | 26 | March 20, 2020 | 25 | mit | JavaScript | |
HTTP request logger middleware for node.js | ||||||||||
Nodejs Learning Guide | 6,484 | a year ago | 9 | other | Ruby | |||||
Nodejs学习笔记以及经验总结,公众号"程序猿小卡" | ||||||||||
Tinyhttp | 2,401 | 31 | 8 days ago | 284 | September 15, 2022 | 8 | mit | TypeScript | ||
🦄 0-legacy, tiny & fast web framework as a replacement of Express | ||||||||||
Serverless Http | 1,591 | 442 | 137 | 11 days ago | 45 | April 04, 2022 | 58 | other | JavaScript | |
Use your existing middleware framework (e.g. Express, Koa) in AWS Lambda 🎉 | ||||||||||
Restinio | 898 | 5 months ago | 32 | other | C++ | |||||
Cross-platform, efficient, customizable, and robust asynchronous HTTP/WebSocket server C++14 library with the right balance between performance and ease of use | ||||||||||
Deprecated | 841 | 3 years ago | 19 | mit | JavaScript | |||||
🚀 Framework for building universal web app and static website in Vue.js (beta) |
Mock 'http' objects for testing Express and Koa
routing functions, but could be used for testing any
Node.js web server applications that have
code that requires mockups of the request
and response
objects.
This project is available as a NPM package.
$ npm install --save-dev node-mocks-http
Our example includes
--save-dev
based on the assumption that node-mocks-http will be used as a development dependency..
After installing the package include the following in your test files:
var httpMocks = require('node-mocks-http');
Suppose you have the following Express route:
app.get('/user/:id', routeHandler);
And you have created a function to handle that route's call:
var routeHandler = function( request, response ) { ... };
You can easily test the routeHandler
function with some code like
this using the testing framework of your choice:
exports['routeHandler - Simple testing'] = function(test) {
var request = httpMocks.createRequest({
method: 'GET',
url: '/user/42',
params: {
id: 42
}
});
var response = httpMocks.createResponse();
routeHandler(request, response);
var data = response._getJSONData(); // short-hand for JSON.parse( response._getData() );
test.equal("Bob Dog", data.name);
test.equal(42, data.age);
test.equal("[email protected]", data.email);
test.equal(200, response.statusCode );
test.ok( response._isEndCalled());
test.ok( response._isJSON());
test.ok( response._isUTF8());
test.done();
};
httpMocks.createRequest(options)
Where options is an object hash with any of the following values:
option | description | default value |
---|---|---|
method |
request HTTP method | 'GET' |
url |
request URL | '' |
originalUrl |
request original URL | url |
baseUrl |
request base URL | url |
path |
request path | '' |
params |
object hash with params | {} |
session |
object hash with session values | undefined |
cookies |
object hash with request cookies | {} |
socket |
object hash with request socket | {} |
signedCookies |
object hash with signed cookies | undefined |
headers |
object hash with request headers | {} |
body |
object hash with body | {} |
query |
object hash with query values | {} |
files |
object hash with values | {} |
The object returned from this function also supports the Express request functions (.accepts()
, .is()
, .get()
, .range()
, etc.). Please send a PR for any missing functions.
httpMocks.createResponse(options)
Where options is an object hash with any of the following values:
option | description | default value |
---|---|---|
locals |
object that contains response local variables |
{} |
eventEmitter |
event emitter used by response object |
mockEventEmitter |
writableStream |
writable stream used by response object |
mockWritableStream |
req |
Request object being responded to | null |
NOTE: The out-of-the-box mock event emitter included with
node-mocks-http
is not a functional event emitter and as such does not actually emit events. If you wish to test your event handlers you will need to bring your own event emitter.
Here's an example:
var httpMocks = require('node-mocks-http');
var res = httpMocks.createResponse({
eventEmitter: require('events').EventEmitter
});
// ...
it('should do something', function(done) {
res.on('end', function() {
assert.equal(...);
done();
});
});
// ...
This is an example to send request body and trigger it's 'data' and 'end' events:
var httpMocks = require('node-mocks-http');
var req = httpMocks.createRequest();
var res = httpMocks.createResponse({
eventEmitter: require('events').EventEmitter
});
// ...
it('should do something', function(done) {
res.on('end', function() {
expect(response._getData()).to.equal('data sent in request');
done();
});
route(req,res);
req.send('data sent in request');
});
function route(req,res){
var data= [];
req.on("data", chunk => {
data.push(chunk)
});
req.on("end", () => {
data = Buffer.concat(data)
res.write(data);
res.end();
});
}
// ...
httpMocks.createMocks(reqOptions, resOptions)
Merges createRequest
and createResponse
. Passes given options object to each
constructor. Returns an object with properties req
and res
.
We wanted some simple mocks without a large framework.
We also wanted the mocks to act like the original framework being mocked, but allow for setting of values before calling and inspecting of values after calling.
We are looking for more volunteers to bring value to this project, including the creation of more objects from the HTTP module.
This project doesn't address all features that must be mocked, but it is a good start. Feel free to send pull requests, and a member of the team will be timely in merging them.
If you wish to contribute please read our Contributing Guidelines.
Most releases fix bugs with our mocks or add features similar to the
actual Request
and Response
objects offered by Node.js and extended
by Express.
See the Release History for details.
Licensed under MIT.