unit-testing - 用 Jest 模拟 redux saga 中间件

标签 unit-testing jestjs redux-saga

我有这个 configureStore.js ,它配置我增强的 redux 存储并将其持久化到 localStorage:

// @flow

import 'babel-polyfill'

import { addFormSubmitSagaTo } from 'redux-form-submit-saga/es/immutable'
import { applyMiddleware, createStore, compose } from 'redux'
import { autoRehydrate, persistStore } from 'redux-persist-immutable'
import { browserHistory } from 'react-router'
import { combineReducers } from 'redux-immutable'
import { fromJS } from 'immutable'
import { routerMiddleware } from 'react-router-redux'
import createSagaMiddleware from 'redux-saga'

import rootReducer from './reducers'
import sagas from './sagas'

export default function configureStore () {
  const initialState = fromJS({ initial: { dummy: true } })
  const sagaMiddleware = createSagaMiddleware()
  const middleware = [ routerMiddleware(browserHistory), sagaMiddleware ]

  const enhancer = compose(
    autoRehydrate(),
    applyMiddleware(...middleware),
    window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ &&
      window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__()
  )
  const store = createStore(
    combineReducers(rootReducer),
    initialState,
    enhancer
  )
  // Persist store to the local storage
  persistStore(store, { blacklist: [ 'form', 'routing' ] })
  // Decorate with Redux Form Submit Saga
  // and create hook for saga's
  const rootSaga = addFormSubmitSagaTo(sagas)
  sagaMiddleware.run(rootSaga)

  return store
}

现在我正在尝试使用 Jest 测试这个文件:

import configureStore from './../configureStore'

import * as reduxPersistImmutable from 'redux-persist-immutable'
import * as redux from 'redux'
import createSagaMiddleware from 'redux-saga'

describe('configureStore', () => {
  it('persists the store to the localStorage', () => {
    reduxPersistImmutable.persistStore = jest.fn()
    redux.createStore = jest.fn()
    createSagaMiddleware.default = jest.fn(() => {
      run: () => jest.fn()
    })

    configureStore()
  })
})

在这个测试中一切运行顺利,直到 configureStore 达到 sagaMiddleware.run(rootSaga)线。它引发以下错误:
    FAIL  app/__tests__/configureStore.js
 ● Console

   console.error ../node_modules/redux-saga/lib/internal/utils.js:206
     uncaught at check Before running a Saga, you must mount the Saga middleware on the Store using applyMiddleware

 ● configureStore › persists the store to the localStorage

   Before running a Saga, you must mount the Saga middleware on the Store using applyMiddleware

     at check (../node_modules/redux-saga/lib/internal/utils.js:50:11)
     at Function.sagaMiddleware.run (../node_modules/redux-saga/lib/internal/middleware.js:87:22)
     at configureStore (app/configureStore.js:38:18)
     at Object.<anonymous> (app/__tests__/configureStore.js:17:60)
     at process._tickCallback (../internal/process/next_tick.js:103:7)

这个错误表明模拟函数没有按我的意图工作:它似乎没有被覆盖,而是从 redux-saga 中调用的。模拟 redux.createStore 工作得很好。

最佳答案

显然,使用 jest.mock('redux-saga', () => () => ({ run: jest.fn() }))是模拟 redux-saga 的 createSagaMiddleware 函数的正确方法。

关于unit-testing - 用 Jest 模拟 redux saga 中间件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41693005/

相关文章:

未调用 Redux saga 函数

reactjs - React Native - NavigationActions.navigate() 未从 redux 内导航

reactjs - 如何触发saga中的fetch调用?

java - 如何在仅测试类的接口(interface)的情况下协调单元测试方法和 TDD

java - 如何使用 JRuby 和 Mocha 模拟静态 Java 方法?

react-native - 将 Enzyme 与 React Native 一起使用时的错误(导入字形图)

reactjs - Jest React Native 如何测试 index.PLATFORM.js

unit-testing - Jest——模拟 React 组件内部调用的函数

java - Spock stub 在功能方法中不起作用

unit-testing - 使用 JEST 测试快速路线