2

我是新来的反应并尝试使用 Jest 编写我的第一个测试用例。我必须模拟一个 fetch 响应。我正在使用 jest-fetch-mock。但是该调用将进行实际提取,并且返回的数据未定义。

包.json:

“开玩笑取模拟”:“^2.1.2”


setupTest.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)一样,那么如何模拟它?提前致谢!

4

1 回答 1

1

可能fetch没有正确模拟......但看起来你的主要问题是fetchUserInfo 返回一个 function

应该在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... */);
});
于 2019-06-11T17:07:08.060 回答