mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 03:05:07 +08:00
65 lines
1.8 KiB
JavaScript
65 lines
1.8 KiB
JavaScript
module.exports = function mock(cgiMock, Mock) {
|
|
const Random = Mock.Random;
|
|
|
|
// 前缀,全局(可选)
|
|
cgiMock.prefix = '/prefix';
|
|
|
|
// 返回一个数字
|
|
cgiMock('/number', 123);
|
|
|
|
// 返回一个json
|
|
cgiMock({
|
|
url: '/json',
|
|
result: {
|
|
code: '400101', msg: "不合法的请求:Missing cookie 'wb_app_id' for method parameter of type String", transactionTime: '20170309171146', success: false
|
|
}
|
|
});
|
|
|
|
// 利用mock.js 产生随机文本
|
|
cgiMock('/text', Random.cparagraph());
|
|
|
|
// 返回一个字符串 利用mock.js 产生随机字符
|
|
cgiMock('/string', Mock.mock({
|
|
'string|1-10': '★'
|
|
}));
|
|
|
|
|
|
// 正则匹配url, 返回一个字符串
|
|
cgiMock(/\/abc|\/xyz/, 'regexp test!');
|
|
|
|
// option.result 参数如果是一个函数, 可以实现自定义返回内容, 接收的参数是是经过 express 封装的 req 和 res 对象.
|
|
cgiMock(/\/function$/, (req, res) => {
|
|
res.send('function test');
|
|
});
|
|
|
|
// 返回文本 fs.readFileSync
|
|
cgiMock('/file', cgiMock.file('./test.json'));
|
|
|
|
// 更复杂的规则配置
|
|
cgiMock({
|
|
url: /\/who/,
|
|
method: 'GET',
|
|
result(req, res) {
|
|
if (req.query.name === 'kwan') {
|
|
res.json({ kwan: '孤独患者' });
|
|
} else {
|
|
res.send('Nooooooooooo');
|
|
}
|
|
},
|
|
headers: {
|
|
'Content-Type': 'text/plain',
|
|
'Content-Length': '123',
|
|
ETag: '12345'
|
|
},
|
|
cookies: [
|
|
{
|
|
name: 'myname', value: 'kwan', maxAge: 900000, httpOnly: true
|
|
}
|
|
],
|
|
// 接口随机延迟
|
|
timeout: Mock.mock({
|
|
'number|1000-5000': 1000
|
|
}).number
|
|
});
|
|
};
|