如何在 React Native jest 测试中模拟推送通知本机模块? [英] How to mock Push notification native module in React native jest tests?

查看:27
本文介绍了如何在 React Native jest 测试中模拟推送通知本机模块?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当使用模块react-native-push-notification时,我有这个错误:

When using the module react-native-push-notification, I had this error:

 FAIL  __tests__/index.android.js
  ● Test suite failed to run

    Invariant Violation: Native module cannot be null.

      at invariant (node_modules/fbjs/lib/invariant.js:44:15)
      at new NativeEventEmitter (node_modules/react-native/Libraries/EventEmitter/NativeEventEmitter.js:32:1)
      at Object.<anonymous> (node_modules/react-native/Libraries/PushNotificationIOS/PushNotificationIOS.js:18:29)
      at Object.get PushNotificationIOS [as PushNotificationIOS] (node_modules/react-native/Libraries/react-native/react-native.js:97:34)
      at Object.<anonymous> (node_modules/react-native-push-notification/component/index.ios.js:10:23)

我试图通过创建 __mocks__/react-native.js 并将此代码放入其中来模拟模块:

I tried to mock the module by creating __mocks__/react-native.js and putting this code within it:

const rn = require('react-native')

jest.mock('PushNotificationIOS', () => ({
  addEventListener: jest.fn(),
  requestPermissions: jest.fn(),
  then: jest.fn()
}));

module.exports = rn

现在,我有这个错误:

 FAIL  __tests__/index.android.js
  ● Test suite failed to run

    TypeError: Cannot read property 'then' of null

      at Object.<anonymous>.Notifications.popInitialNotification (node_modules/react-native-push-notification/index.js:278:42)
      at Object.<anonymous>.Notifications.configure (node_modules/react-native-push-notification/index.js:93:6)
      at Object.<anonymous> (app/utils/localPushNotification.js:4:39)
      at Object.<anonymous> (app/actions/trip.js:5:28)

我如何以正确的方式完全模拟这个模块?

How I could mock fully this module the right way?

推荐答案

我通过创建一个安装文件 jest/setup.js 模拟了模块 PushNotificationIOS:

I mocked the module PushNotificationIOS by creating a setup file jest/setup.js:

jest.mock('PushNotificationIOS', () => {
  return {
    addEventListener: jest.fn(),
    requestPermissions: jest.fn(() => Promise.resolve()),
    getInitialNotification: jest.fn(() => Promise.resolve()),
  }
});

我已经通过将这一行添加到 packages.json 中来配置 jest 来运行这个安装文件:

I've configured jest to run this setup file by adding this line into packages.json:

  "jest": {
    ...
    "setupFiles": ["./jest/setup.js"],
  }

这篇关于如何在 React Native jest 测试中模拟推送通知本机模块?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆