我正在使用wheresrhys fetch-mock npm模块在我的应用程序中运行功能测试。我想用方法' POST'来模拟抓取。和特定的有效载荷。
它看起来像这样:
fetchMock.mock({
routes: {
name: 'LoginSuccess',
matcher: "https://myurl",
method: 'POST',
payload: {
params:{User: "ABCDE@gmail.com", Password: "password"}
},
response: {
result:{
message: "Successful login",
credentials: "XXXXXXXXXXXXX"
}
}
}
});
我想查看我的fetch的有效负载并相应地给出响应。例如,我可以模拟用户提交错误密码的一次登录,然后他们再次尝试并提交正确的信息并被授予访问权限。相同的网址,不同的有效负载,不同的响应。
有可能这样做吗?我知道可以检查获取的方法,但是我想对有效负载做同样的事情。
或者有更好的方法吗?
我还没有在模块的自述文件或the fetch-mock package的测试部分找到解决方案。
答案 0 :(得分:2)
fetchMock.mock({
routes: [{
name: 'LoginSuccess',
matcher: function(url, opts) {
return (url=="https://myurl" && opts && opts.params && opts.params.User=="ABCDE@gmail.com" && opts.params.Password=="password");
},
response: {
result:{
message: "Successful login",
credentials: "XXXXXXXXXXXXX"
}
}
}, {
name: 'LoginFail',
matcher: function(url, opts) {
return (url=="https://myurl" && opts && opts.params && opts.params.User=="ABCDE@gmail.com" && opts.params.Password!=="password");
},
response: {
result:{
message: "Unsuccessful login"
}
}
}]
});