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