• [Redux-Observable && Unit Testing] Use tests to verify updates to the Redux store (rxjs scheduler)


    In certain situations, you care more about the final state of the redux store than you do about the particular stream of events coming out of an epic. In this lesson we explore a technique for dispatching actions direction into the store, having the epic execute as they would normally in production, and then assert on the updated store’s state.

    To test a reducer, what we need to do is actually dispatch as action with its payload.

    store.dispatch(action);

    But before that, we need to get our 'store' configuration in the test.

    configureStore.js:

    import {createStore, applyMiddleware, compose} from 'redux';
    import reducer from './reducers';
    import { ajax } from 'rxjs/observable/dom/ajax';
    
    import {createEpicMiddleware} from 'redux-observable';
    import {rootEpic} from "./epics/index";
    
    export function configureStore(deps = {}) {
      const epicMiddleware = createEpicMiddleware(rootEpic, {
        dependencies: {
          ajax,
          ...deps
        }
      });
    
      const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose;
    
      return createStore(
        reducer,
        composeEnhancers(
          applyMiddleware(epicMiddleware)
        )
      );
    }

    index.js:

    import React from 'react';
    import ReactDOM from 'react-dom';
    import './index.css';
    import App from './App';
    import {Provider} from 'react-redux';
    import {configureStore} from "./configureStore";
    
    const store = configureStore();
    
    ReactDOM.render(
      <Provider store={store}>
        <App />
      </Provider>
      , document.getElementById('root'));

    The configureStore.js exports function which create a store, we can import normally in the test file.

    Now for example, we want to dispatch this action:

    export function searchBeers(query) {
      return {
        type: SEARCHED_BEERS,
        payload: query
      }
    }

    Epic:

    import {Observable} from 'rxjs';
    import {combineEpics} from 'redux-observable';
    import {CANCEL_SEARCH, receiveBeers, searchBeersError, searchBeersLoading, SEARCHED_BEERS} from "../actions/index";
    
    const beers  = `https://api.punkapi.com/v2/beers`;
    const search = (term) => `${beers}?beer_name=${encodeURIComponent(term)}`;
    
    export function searchBeersEpic(action$, store, deps) {
      return action$.ofType(SEARCHED_BEERS)
        .debounceTime(500)
        .filter(action => action.payload !== '')
        .switchMap(({payload}) => {
    
          // loading state in UI
          const loading = Observable.of(searchBeersLoading(true));
    
          // external API call
          const request = deps.ajax.getJSON(search(payload))
            .takeUntil(action$.ofType(CANCEL_SEARCH))
            .map(receiveBeers)
            .catch(err => {
              return Observable.of(searchBeersError(err));
            });
    
          return Observable.concat(
            loading,
            request,
          );
        })
    }
    
    export const rootEpic = combineEpics(searchBeersEpic);

    'decountTime' make the Epic async!

    To verifiy the result is correct, we can do

      const store = configureStore(deps);
    
      const action = searchBeers('name');
    
      store.dispatch(action);
    
      expect(store.getState().beers.length).toBe(1);

    BUT, actually this test code won't work, because the 'decountTime' in the epic, makes it as async opreation. Reducer expects everything happens sync...

    One way can test it by using 'scheduler' from rxjs.

    import {Observable} from 'rxjs';
    import {VirtualTimeScheduler} from 'rxjs/scheduler/VirtualTimeScheduler';
    import {searchBeers} from "../actions/index";
    import {configureStore} from "../configureStore";
    
    it('should perform a search (redux)', function () {
    
      const scheduler = new VirtualTimeScheduler();
      const deps = {
        scheduler,
        ajax: {
          getJSON: () => Observable.of([{name: 'shane'}])
        }
      };
    
      const store = configureStore(deps);
    
      const action = searchBeers('shane');
    
      store.dispatch(action);
    
      scheduler.flush();
    
      expect(store.getState().beers.length).toBe(1);
    });

    And we need to modifiy the epic:

    .debounceTime(500, deps.scheduler)

    Take away, we can test async oprations by using 'scheduler' from rxjs. 

    -------------------FUll Code------------

    Github

  • 相关阅读:
    mysql 安全
    选择年份 php的写法要比js简洁一些
    PHP for 循环
    vb和php 基于socket通信
    PHP 数组和字符串互相转换实现方法
    php中对2个数组相加的函数
    开启mysql sql追踪
    幸运码
    系统管理模块_岗位管理_改进_使用ModelDroven方案_套用美工写好的页面效果_添加功能与修改功能使用同一个页面
    系统管理模块_岗位管理_实现CRUD功能的具体步骤并设计Role实体
  • 原文地址:https://www.cnblogs.com/Answer1215/p/7683480.html
Copyright © 2020-2023  润新知