我是新手,并尝试使用Jest编写我的第一个测试用例。我必须模拟获取响应。我正在使用开玩笑-获取-模拟。但是调用将实际获取,并且返回的数据未定义。
package.json :
"jest-fetch-mock": "^2.1.2">
安装程序测试.js文件
global.fetch = require('jest-fetch-mock');
实际 api 调用方法:
static fetchUserInfo(){
return dispatch => {
fetch('https://localhost:55001/api/userInfo')
.then(this.httpResponseHandler.handleHttpResponse)
.then ((resp) => resp.json())
.then(data => dispatch(this.onUserInfoGetSuccess(data)))
.catch( error => {
dispatch(this.onFetchFailure(error));
});
};
}
测试用例
it('should get user info', () => {
fetch.mockResponse(JSON.stringify({
"name": "swati joshi",
}
));
let data = ActualDataApi.fetchUserInfo();
console.log(data);
expect(data.name).toEqual('swati joshi');
}
既然fetchUserInfo
调度程序(使用 Redux 和 React(,那么如何模拟它呢?提前感谢!
fetch
可能没有被正确模拟...但看起来您的主要问题是fetchUserInfo
返回一个函数。
应在dispatch
模拟上调用它返回的函数,以验证它是否调度了正确的操作。
另请注意,fetchUserInfo
返回的函数是异步的,因此您需要一种方法来等待它在测试期间完成。
如果修改 fetchUserInfo
返回的函数以返回Promise
,如下所示:
static fetchUserInfo(){
return dispatch => {
return fetch('https://localhost:55001/api/userInfo') // <= return the Promise
.then(this.httpResponseHandler.handleHttpResponse)
.then((resp) => resp.json())
.then(data => dispatch(this.onUserInfoGetSuccess(data)))
.catch(error => {
dispatch(this.onFetchFailure(error));
});
};
}
。然后你可以像这样测试它:
it('should get user info', async () => { // <= async test function
fetch.mockResponse(JSON.stringify({
"name": "swati joshi",
}));
let func = ActualDataApi.fetchUserInfo(); // <= get the function returned by fetchUserInfo
const dispatch = jest.fn();
await func(dispatch); // <= await the Promise returned by the function
expect(dispatch).toHaveBeenCalledWith(/* ...the expected action... */);
});