mm (美眉,Mock伴侣)
mock mate, easy to mock http
request, fs
access and so on.
Mock伴侣,单元测试必备。
Install
$ npm install mm
Usage
Mock http(s).request()
var mm = require('mm');
var http = require('http');
var mockURL = '/foo';
var mockResData = 'mock data';
var mockResHeaders = { server: 'mock server' };
mm.http.request(mockURL, mockResData, mockResHeaders);
mm.https.request(mockURL, mockResData, mockResHeaders);
http.get({
path: '/foo'
}, function (res) {
console.log(res.headers);
var body = '';
res.on('data', function (chunk) {
body += chunk.toString();
});
res.on('end', function () {
console.log(body);
});
});
https.get({
path: '/foo'
}, function (res) {
console.log(res.headers);
var body = '';
res.on('data', function (chunk) {
body += chunk.toString();
});
res.on('end', function () {
console.log(body);
});
});
Mock http(s).request()
error
var mm = require('mm');
var http = require('http');
var mockURL = '/foo';
var reqError = null;
var resError = 'mock res error';
mm.http.requestError(mockURL, reqError, resError);
var req = http.get({
path: '/foo'
}, function (res) {
console.log(res.statusCode, res.headers);
res.on('end', fucntion () {
console.log('never show this message');
});
});
req.on('error', function (err) {
console.log(err);
}
Mock async function callback error
var mm = require('mm');
var fs = require('fs');
mm.error(fs, 'readFile', 'mock fs.readFile return error');
fs.readFile('/etc/hosts', 'utf8', function (err, content) {
console.log(err);
mm.restore();
fs.readFile('/etc/hosts', 'utf8', function (err, content) {
console.log(err);
console.log(content);
});
});
Mock callback(null, data)
mm.data(fs, 'readFile', new Buffer('some content'));
Mock callback(null, null)
mm.empty(mysql, 'query');
Mock callback(null, [data1, data2])
mm.datas(urllib, 'request', [new Buffer('data'), { headers: { foo: 'bar' } }]);
use mm
just like muk
var fs = require('fs');
var mm = require('mm');
mm(fs, 'readFile', function (path, callback) {
process.nextTick(callback.bind(null, null, 'file contents here'));
});
Authors
$ git summary
project : mm
repo age : 1 year, 2 months
active : 23 days
commits : 55
files : 16
authors :
49 fengmk2 89.1%
4 dead-horse 7.3%
1 AlsoTang 1.8%
1 Alsotang 1.8%
License
(The MIT License)
Copyright (c) 2012 - 2014 fengmk2 <fengmk2@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.