繁体   English   中英

无法测试Redux可观察到的史诗

[英]Unable to test redux-observable epic

我打算为以下史诗写单元测试

// Actions
const actionCreator = actionCreatorFactory('PARENT_DIRECTORY');
export const fetchPage = actionCreator.async<Page, ParentPage>('FETCH_PAGE');

export const fetchParentDirectoryEpic: Epic = action$ =>
  action$.pipe(
    filter(fetchPage.started.match),
    mergeMap((action) => {
      return getDirectoryPage(action.payload).pipe(
        map(response => fetchPage.done({ params: action.payload, result: response.response })),
        catchError(error => of(fetchPage.failed({ params: action.payload, error: error })))
      );
    })
  );

我嘲笑了getDirectoryPage,如下所示:

import { AjaxResponse, AjaxError } from 'rxjs/ajax';
import { Observable, of } from 'rxjs';

export function getDirectoryPage(page: any): Observable<AjaxResponse> {
  switch (page.index) {
    case 0:
      return Observable.create({'data': [], page: 0, pages: 1});
    default:
      return Observable.create(observer => {
        return new AjaxError('Something bad happened!', null, null);
      });
  }
}

以下是我的单元测试的样子-

describe('fetchParentDirectoryEpic Epic', () => {
    it('dispatches the correct actions when it is successful', async (done) => {
        const expectedOutputAction = outputAction;

        fetchParentDirectoryEpic(inputAction, initialState, null)
            .subscribe(actualOutputAction => {
                expect(actualOutputAction).toBe(expectedOutputAction)
                done()
            }
        );
    });
});

问题在于,对fetchParentDirectoryEpic(inputAction, initialState, null)的调用会导致产生一个没有Subscribe方法的Observable。 据我了解,该方法可用于ActionObservable但无法使用有效负载创建其实例。

问题与我如何创建ExpectedOutputAction有关。 它应该是一个Action而不是ActionObservable

在按照以下方式设置了ExpectedOutputAction之后,测试工作得很好-

expectedOutputAction = {
  type: fetchPage.done.type, 
  result: {'data': [], page: 0, pages: 1}, 
  params: inputAction.payload
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM