有没有办法在测试 React 组件之前模拟 DOM?

Posted

技术标签:

【中文标题】有没有办法在测试 React 组件之前模拟 DOM?【英文标题】:Is there a way to mock a DOM before testing a React component? 【发布时间】:2017-08-06 21:58:09 【问题描述】:

我正在尝试测试我的 React 类(使用 TestUtils、Enzyme 和 Jest),但由于我们不得不忍受一些变通方法,它依赖于服务器呈现的 html 页面中的元素——即,它会在渲染之前从 componentDidMount 中的 DOM 中抓取某些元素。例如:

componentDidMount() 
  document.documentElement.classList.add('example');
  this.someOtherFunction(document.getElementsByClassName('my-great-className'))

我想测试这个组件,但是 componentDidMount 中的函数当然会失败,因为测试中不存在服务器渲染的 HTML 页面。有没有办法在渲染 React 组件之前模拟一个特定的 DOM?

【问题讨论】:

【参考方案1】:

您可以在开始测试之前设置这些内容

global.document = 
  documentElement: 
    classList: 
      add: jest.fn()
    
  
  getElementsByClassName: jest.fn(id:'id')

然后,在您的测试中,您可以检查 add 是用 example 调用的,someOtherFunction 是用 id:'id' 调用的。 由于所有测试文件都在其自己的沙箱中运行,因此可以完全安全地设置这样的文档模拟。

【讨论】:

以上是关于有没有办法在测试 React 组件之前模拟 DOM?的主要内容,如果未能解决你的问题,请参考以下文章

使用 jest 模拟 react-router-dom 钩子不起作用

React Router + Animation 库问题:组件在使用 react-router-dom 卸载之前不会动画

react组件生命

使用 saga 对组件进行 React 测试

使用 Jest 和 TestUtils 测试 React 表单提交

使用链接后,在嵌套路由中未定义 React-router-dom 参数