我正在使用where srhys fetch mock npm模块在我的应用程序中运行功能测试。我想用方法"POST"和一个特定的负载来模拟一个fetch。
它看起来像这样:
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"
}
}
}
});
我想检查我的获取的有效负载,并给出相应的响应。例如,我可以模拟一次登录,用户提交了错误的密码,然后他们再试一次,提交了正确的信息,并被授予访问权限。相同的url,不同的有效负载,不同的响应。
有可能做到这一点吗?我知道可以检查获取的方法,但我希望对有效负载也这样做。
或者有更好的方法吗?
我还没有在模块的自述文件或fetch mock包的测试部分找到解决方案。
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"
}
}
}]
});