我刚刚开始使用nock来拦截http调用。下面是导入所需模块后我在单元测试用例中使用的代码。
it('testing superagent using nock..', function () {
let mockData = {
scope: this,
data: {"title":"test"},
callback: function (data){
//expecting {id:10} here.but nothing is coming
console.log(data)
},
errback: function(err) {console.log(err)}
};
nock('http://localhost').post('/api/1234').reply(200, {id: 10});
callFunction(actionFunction, mockData, this);
}
callFunction发送参数' actionFunction',' mockData'到另一个类,其中actionFucntion使用mockData并使用superagent模块发出ajax请求。
import xhr from './xhr';
static actionFunction(mockData){
let xhr = mockData.xhr || xhr;
xhr.reqXhr({
method: :"POST",
url: mockData.url,
data: mockData.data,
callback: function(data) {mockData.callback.call(mockData.scope, data);},
errback: function(response) {mockData.errback.call(mockData.scope, response);}
})
}
//in xhr class I am triggering the actual ajax call using super agent
super-agent(method, url).send(reqdata).end((errror, response) => {
//sending response.body to call backs similar to below
request.callback.call(this, response.body);
}
现在问题是虽然nock能够拦截http调用,但是模拟响应({id:10})没有达到回调函数。我想在回调函数
中显示此响应任何可行的方法吗?