在react material-ui菜单中测试嵌套菜单项

时间:2017-08-31 11:44:05

标签: reactjs testing material-ui jestjs enzyme

我想测试具有嵌套菜单项的菜单。我希望能够模拟嵌套菜单项上的单击并查看是否调用了它的处理程序。我已经得到了没有嵌套菜单项的测试。

这是我正在尝试构建的测试的简单版本:

describe("menu", () => {
 it("should click on nested nested menu items", () => {
    const testOnClickSpy = Sinon.spy(() => {});
    const component = mount(
      <MuiThemeProvider><Menu>
        <MenuItem 
          primaryText={<span id="test">test</span>} onTouchTap={testOnClickSpy}
          menuItems={ <MenuItem  primaryText={<span id="nested">nested</span>} /> }/>
        </Menu></MuiThemeProvider>
    );

    simulateEvent(component.find("#test"), "touchTap");

    expect(component.find("#test").exists()).toBe(true);  // Works fine.
    expect(testOnClickSpy.callCount).toBe(1); // Works fine.
    component.update(); // <--- Does not seem to do anything?
    expect(component.find("#nested").exists()).toBe(true); // <--- Because this item cannot be found?
  }) 
})

我使用此simulateEvent来模拟触控按键:

require("react-tap-event-plugin")();
function simulateEvent(wrappedTarget, eventType) {
    const domNode = findDOMNode(wrappedTarget["node"]);
    Simulate[eventType](domNode);
}

我正在使用React 15.6.1,material-ui 0.18.6,Enzyme 2.9.1 Jest 20.0.4

也许相关? React, Jest and Material-UI: How to test for content rendered in a modal or popover

1 个答案:

答案 0 :(得分:3)

在了解了一些关于酶的知识之后,我发现他们正在使用jsdom来实现使用实际DOM实现的无头浏览器。我用来解决我的问题的方法是用document.findElementById(&#39; #nested&#39;)替换component.find(&#34; #nested&#34;)方法。之后,测试可以找到子组件并通过。