如何测试react-router-dom?

时间:2018-03-15 05:27:39

标签: javascript reactjs react-router react-router-dom

问题

我已阅读https://github.com/ReactTraining/react-router/blob/master/packages/react-router/docs/guides/testing.md

我想测试react-router-dom,我不关心它是如何工作的,我只需要确保图书馆正在使用我的项目样板。

生殖

我正在测试这个组件

    <Link to="/toto">
      toto
    </Link>

这是测试

  it('it expands when the button is clicked', () => {
    const renderedComponent = mount(<Wrapper>
      <MemoryRouter initialEntries={['/']}>
        <Demo />
      </MemoryRouter>
    </Wrapper>);
    renderedComponent.find('a').simulate('click');
    expect(location.pathname).toBe('toto');
  });

预期

true

结果

blank

问题

如何测试react-router-dom

1 个答案:

答案 0 :(得分:0)

如果您查看Link的代码,就会看到以下代码:

handleClick = event => {
    if (this.props.onClick) this.props.onClick(event);

    if (
      !event.defaultPrevented && // onClick prevented default
      event.button === 0 && // ignore everything but left clicks
      !this.props.target && // let browser handle "target=_blank" etc.
      !isModifiedEvent(event) // ignore clicks with modifier keys
    ) {
      event.preventDefault();

      const { history } = this.context.router;
      const { replace, to } = this.props;

      if (replace) {
        history.replace(to);
      } else {
        history.push(to);
      }
    }
  };

所以,大概你发现Link而不是a并覆盖此方法以将值返回到您自己的回调中,您可以验证<Link>上设置的路径,这不是&#39 ; t直接测试react-router,但它会验证您在链接中设置的路径是否正确,这是您的测试似乎正在验证的内容。

类似于(未经测试的代码):

const link = renderedComponent.find(Link)
let result = null
link.handleClick = event => {

      const { replace, to } = link.props;

      if (replace) {
         result = null //we are expecting a push
      } else {
        result = to
      }
    }
  };
link.simulate('click')
expect(result).toEqual('/toto') // '/toto' or 'toto'?

更新

我已经意识到上面的内容并不适用于浅层渲染,但是,如果您只是想检查to属性是否正确,那么您可以使用{ {1}}。