测试解构的上下文消费者

Posted

技术标签:

【中文标题】测试解构的上下文消费者【英文标题】:Testing destructured Context consumer 【发布时间】:2019-04-29 21:15:53 【问题描述】:

我正在尝试使用 Jest + Enzyme 测试一个组件,以确保一个组件被呈现为我的消费者的孩子。当我这样做时,类似的测试有效:

    <FormContextConsumer>
      ( ...props ) => (
        <Footer
          ...
        />
      )
    </FormContextConsumer>

像这样模拟上下文:

jest.mock("../../context/FormContext", () => (
  FormContextConsumer: props => props.children()
));

并像这样测试它:

it(`should render a 'Footer' component inside the 'FormContextConsumer'`, () => 
  expect(
    shallowTestComponent()
      .find(FormContextConsumer)
      .dive()
      .find(Footer).length
  ).toBe(1);
);

但是当我像这样解构上下文道具时:

    <FormContextConsumer>
      ( handleSubmit, handleReset ) => (
        <Drawer
          ...
        >
          children
        </BaseEntityDrawer>
      )
    </FormContextConsumer>

并用这个进行测试:

  it(`should always render 'Drawer' inside 'FormContextConsumer'`, () => 
    expect(
      shallowTestComponent()
        .find(FormContextConsumer)
        .dive()
        .find(Drawer).length
    ).toBe(1);
  );

我收到此错误:

TypeError: Cannot destructure property `handleSubmit` of 'undefined' or 'null'.

我假设它与我如何模拟模块有关,但我不清楚如何使其适应这种情况。我该如何处理?

【问题讨论】:

【参考方案1】:

感谢 stephenwil 在这里的回答,我能够弄清楚:https://***.com/a/51152120/5858391

我将我的模拟上下文更改为:

jest.mock("../../../forms/context/FormContext", () => 
  const handleSubmit = jest.fn();
  const handleReset = jest.fn();

  return 
    FormContextConsumer: props => props.children( handleSubmit, handleReset )
  ;
);

我的测试正在运行!

【讨论】:

以上是关于测试解构的上下文消费者的主要内容,如果未能解决你的问题,请参考以下文章

反应使用上下文。无法解构“对象(...)(...)”的属性“currentChatbotInEdit”,因为它未定义。我该如何解决?

如何解构道具

微信小程实现全向(上下左右)滑动切换复杂解构bindtouchstartbindtouchendparseInt

反应开玩笑测试错误 - 未定义 useContext 的对象

架构模式: 服务集成契约测试

HornetQ:从队列中删除所有消息,不适用于队列中的消费者