Testing React Native Apps

At Facebook, we use Jest to test React Native applications.

阅读以下系列文章来深入了解如何使用 Jest 测试一个真实的 React Native 示例应用:第一篇: Jest – Snapshot come into play第二篇: Jest – Redux Snapshots for your Actions and Reducers.

安装

Starting from react-native version 0.38, a Jest setup is included by default when running react-native init. The following configuration should be automatically added to your package.json file:

  1. // package.json
  2. "scripts": {
  3. "test": "jest"
  4. },
  5. "jest": {
  6. "preset": "react-native"
  7. }

Note: If you are upgrading your react-native application and previously used the jest-react-native preset, remove the dependency from your package.json file and change the preset to react-native instead.

yarn test 来运行 Jest 测试。

Snapshot Test

下面来为一个入门的小型组件创建一个快照测试,它的内部有些View、Text组件和一些样式:

  1. // Intro.js
  2. import React, {Component} from 'react';
  3. import {StyleSheet, Text, View} from 'react-native';
  4. const styles = StyleSheet.create({
  5. container: {
  6. alignItems: 'center',
  7. backgroundColor: '#F5FCFF',
  8. flex: 1,
  9. justifyContent: 'center',
  10. },
  11. instructions: {
  12. color: '#333333',
  13. marginBottom: 5,
  14. textAlign: 'center',
  15. },
  16. welcome: {
  17. fontSize: 20,
  18. margin: 10,
  19. textAlign: 'center',
  20. },
  21. });
  22. export default class Intro extends Component {
  23. render() {
  24. return (
  25. <View style={styles.container}>
  26. <Text style={styles.welcome}>Welcome to React Native!</Text>
  27. <Text style={styles.instructions}>
  28. 这是一个 React Native 快照测试。
  29. </Text>
  30. </View>
  31. );
  32. }
  33. }

现在,使用React的test renderer和Jest的快照特性来和组件交互,获得渲染结果和生成快照文件:

  1. // __tests__/Intro-test.js
  2. import React from 'react';
  3. import renderer from 'react-test-renderer';
  4. import Intro from '../Intro';
  5. test('renders correctly', () => {
  6. const tree = renderer.create(<Intro />).toJSON();
  7. expect(tree).toMatchSnapshot();
  8. });

当你运行 npm test 或者 jest,将产生一个像下面的文件:

  1. // __tests__/__snapshots__/Intro-test.js.snap
  2. exports[`Intro renders correctly 1`] = `
  3. <View
  4. style={
  5. Object {
  6. "alignItems": "center",
  7. "backgroundColor": "#F5FCFF",
  8. "flex": 1,
  9. "justifyContent": "center",
  10. }
  11. }>
  12. <Text
  13. style={
  14. Object {
  15. "fontSize": 20,
  16. "margin": 10,
  17. "textAlign": "center",
  18. }
  19. }>
  20. Welcome to React Native!
  21. </Text>
  22. <Text
  23. style={
  24. Object {
  25. "color": "#333333",
  26. "marginBottom": 5,
  27. "textAlign": "center",
  28. }
  29. }>
  30. This is a React Native snapshot test.
  31. </Text>
  32. </View>
  33. `;

下次你运行测试时,渲染的结果将会和之前创建的快照进行比较。 The snapshot should be committed along with code changes. 当快照测试失败,你需要去检查是否是你想要或不想要的变动。 如果变动符合预期,你可以通过jest -u调用Jest从而重写存在的快照。

示例代码可在 examples/enzyme 找到。

Preset configuration

The preset sets up the environment and is very opinionated and based on what we found to be useful at Facebook. All of the configuration options can be overwritten just as they can be customized when no preset is used.

Environment

react-native ships with a Jest preset, so the jest.preset field of your package.json should point to react-native. The preset is a node environment that mimics the environment of a React Native app. Because it doesn’t load any DOM or browser APIs, it greatly improves Jest’s startup time.

transformIgnorePatterns customization

The transformIgnorePatterns option can be used to specify which files shall be transformed by Babel. Many react-native npm modules unfortunately don’t pre-compile their source code before publishing.

By default the jest-react-native preset only processes the project’s own source files and react-native. If you have npm dependencies that have to be transformed you can customize this configuration option by including modules other than react-native:

  1. "transformIgnorePatterns": [
  2. "node_modules/(?!(react-native|my-project|react-native-button)/)"
  3. ]

setupFiles

If you’d like to provide additional configuration for every test file, the setupFiles configuration option can be used to specify setup scripts.

moduleNameMapper

The moduleNameMapper can be used to map a module path to a different module. By default the preset maps all images to an image stub module but if a module cannot be found this configuration option can help:

  1. "moduleNameMapper": {
  2. "my-module.js": "<rootDir>/path/to/my-module.js"
  3. }

Tips

Mock native modules using jest.mock

The Jest preset built into react-native comes with a few default mocks that are applied on a react-native repository. However, some react-native components or third party components rely on native code to be rendered. In such cases, Jest’s manual mocking system can help to mock out the underlying implementation.

For example, if your code depends on a third party native video component called react-native-video you might want to stub it out with a manual mock like this:

  1. jest.mock('react-native-video', () => 'Video');

This will render the component as <Video {...props} /> with all of its props in the snapshot output. 想了解更多还可以阅读 caveats around Enzyme and React 16.

Sometimes you need to provide a more complex manual mock. For example if you’d like to forward the prop types or static fields of a native component to a mock, you can return a different React component from a mock through this helper from jest-react-native:

  1. jest.mock('path/to/MyNativeComponent', () => {
  2. const mockComponent = require('react-native/jest/mockComponent');
  3. return mockComponent('path/to/MyNativeComponent');
  4. });

Or if you’d like to create your own manual mock, you can do something like this:

  1. jest.mock('Text', () => {
  2. const RealComponent = jest.requireActual('Text');
  3. const React = require('React');
  4. class Text extends React.Component {
  5. render() {
  6. return React.createElement('Text', this.props, this.props.children);
  7. }
  8. }
  9. Text.propTypes = RealComponent.propTypes;
  10. return Text;
  11. });

In other cases you may want to mock a native module that isn’t a React component. The same technique can be applied. We recommend inspecting the native module’s source code and logging the module when running a react native app on a real device and then modeling a manual mock after the real module.

If you end up mocking the same modules over and over it is recommended to define these mocks in a separate file and add it to the list of setupFiles.