使用 Jest 在 React Redux 中对多个调度的操作进行单元测试

Posted

技术标签:

【中文标题】使用 Jest 在 React Redux 中对多个调度的操作进行单元测试【英文标题】:Unit testing multiple dispatched actions in React Redux with Jest 【发布时间】:2017-12-13 16:04:40 【问题描述】:

我感觉我错过了一些简单的东西,但是如果满足条件,我有一个动作会分派两个动作。

动作

export function changeDateRange( startDate, endDate ) 
  return function reload(dispatch, getState) 
    if (!getState().navigation.focused) 
      // If our datepicker has closed, reload the data on the page
      dispatch(load());
    
    dispatch(
      type: types.CHANGE_DATE_RANGE,
      startDate,
      endDate
    );
  ;

然后我尝试测试 load() 并用 Jest.fn() 模拟它,但是当我在调度 changeDateRange() 后登录 mock.calls.length 时它等于 0

设置

import configureMockStore from 'redux-mock-store';
import thunk from 'redux-thunk';
global.mockStore = configureMockStore([thunk]);

测试:

import * as types from '../actionTypes';
import * as changeDateRange from './changeDateRange';
import  load  from '../reporting';

jest.mock('../reporting', () => (
  load: () => jest.fn()
));

describe('Reducer: changeDateRange Reducer', () => 
  it('should change date range', () => 
    const store = mockStore(
      startDate: '',
      endDate: '',
      navigation: 
        focused: false
      
    );
    const dateRange = 
      startDate: 'yes',
      endDate: 'yes'
    ;
    store.dispatch(changeDateRange(dateRange));
    expect(store.getActions()).toEqual([
      Object.assign(
        
          type: types.CHANGE_DATE_RANGE
        ,
        dateRange
      )
    ]);
    console.log(load().mock.calls.length); // === 0 ??
  );
);

有什么想法吗?

【问题讨论】:

你确定你的 changeDateRange() 被调用了吗?可能,您的操作模块以不同的方式导入它。 【参考方案1】:

奇怪的是,这么老的问题没有答案。因为它有 8 个赞成票,所以我会为下一个找到它的人回答它。 OP 错误地模拟了负载。它应该是这样的:

jest.mock('../reporting', () => (
  load: jest.fn() //not () => jest.fn()
));

然后在代码中他们可以这样做:

console.log(load.mock.calls.length); // not load().mock.calls.length

每次调用 load 时,它都会返回一个新的模拟函数。事实上 load 本身需要是模拟函数。

【讨论】:

以上是关于使用 Jest 在 React Redux 中对多个调度的操作进行单元测试的主要内容,如果未能解决你的问题,请参考以下文章

在 React-Redux 应用程序中使用 JEST 进行测试时导入问题

使用 Jest 和 Enzyme 测试使用 Redux 的功能性 React 组件

用 Jest 模拟 React-Redux 商店

Jest/Enzyme 单元测试:如何将存储传递给使用 redux 4 和 react-redux 6 连接功能的浅层组件

React-Redux/Jest 不变违规:找不到“商店”

React Redux:使用 Enzyme/Jest 测试 mapStateToProps 和 mapDispatchToProps