Skip to content

docs: testing environment #1195

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Oct 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions website/docs/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ title: FAQ
<details>
<summary>Can I test native features of React Native apps?</summary>

<br />
<p>Short answer: no.</p>

React Native Testing Library does not provide a full React Native runtime since that would require running on physical device
Expand All @@ -16,6 +15,8 @@ Instead of using React Native renderer, it simulates only the JavaScript part of
using [React Test Renderer](https://reactjs.org/docs/test-renderer.html) while providing queries
and `fireEvent` APIs that mimick certain behaviors from the real runtime.

You can learn more about our testing environment [here](./TestingEnvironment.md).

This approach has certain benefits and shortfalls. On the positive side:

- it allows testing most of the logic of regular React Native apps
Expand All @@ -35,8 +36,6 @@ For instance, [react-native's ScrollView](https://reactnative.dev/docs/scrollvie
<details>
<summary>Should I use/migrate to `screen` queries?</summary>

<br />

There is no need to migrate existing test code to use `screen`-bases queries. You can still use
queries and other functions returned by `render`. In fact `screen` hold just that value, the latest `render` result.

Expand Down
154 changes: 154 additions & 0 deletions website/docs/TestingEnvironment.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,154 @@
---
id: testing-env
title: Testing Environment
---

:::info
This document is intended for more advanced audience. You should be able to write integration or component tests without reading this.
It is intended for people who want to better understand internals of our testing environment, e.g. in order to contribute to the codebase.
:::

## Testing Environment

React Native Testing Library allows you to write integration and component tests for your React Native app or library. While the JSX code used in tests closely resembles your React Native app, the things are not quite as simple as they might appear. In this document we will describe the key elements of our testing environment and highlight things to be aware of when writing more advanced tests or diagnosing issues.

### React renderers

React allows you to write declarative code using JSX, write function or class components, or use hooks like `useState`. In order to output the results of your components it needs to work with a renderer. Every React app uses some type of renderer: React Native is a renderer for mobile apps, web apps use React DOM, and there are other more [specialised renderers](https://github.com/chentsulin/awesome-react-renderer) that can e.g. render to console or HTML canvas.

When you run your tests in React Native Testing Library, somewhat contrary to what the name suggest, they are actually **not** using React Native renderer. This is because this renderer needs to be run on iOS or Android operating system, so it would need to run on device or simulator.

### React Test Renderer

Instead, RNTL uses React Test Renderer which is a specialised renderer that allows rendering to pure JavaScript objects without access to mobile OS, and that can run in a Node.js environment using Jest (or any other JavaScript test runner).

Using React Test Renderer has pros and cons.

Benefits:

- tests can run on most CIs (linux, etc) and do not require a mobile device or emulator
- faster test execution
- light runtime environment

Disadvantages:

- Tests do not execute native code
- Tests are not aware of view state that would be managed by native components, e.g. focus, unmanaged text boxes, etc.
- Assertions do not operate on native view hierarchy
- Runtime behaviours are simulated, sometimes imperfectly

It’s worth noting that React Testing Library (web one), works a bit different. While RTL also runs in Jest, it also has access to simulated browser DOM environment from jsdom package, so it can use a regular React DOM renderer. Unfortunately, there is no similar React Native runtime environment package. This is probably due to to the fact that while browser environment is well defined and highly standardised, the React Native environment is in constant evolution, in sync with the evolution of underlying OS-es. Maintaining such environment would require duplicating countless React Native behaviours, and keeping that in sync as React Native evolves.

### Element tree

Invoking `render()` function results in creation of an element tree. This is done internally by invoking `TestRenderer.create()` method. The output tree represents your React Native component tree, each node of that tree is an “instance” of some React component (to be more precise: each node represents a React fiber, and only class components have instances, while function components store the hook state using fiber).

These tree elements are represented by `ReactTestInstance` type:

```tsx
interface ReactTestInstance {
type: ElementType;
props: { [propName: string]: any };
parent: ReactTestInstance | null;
children: Array<ReactTestInstance | string>;

// Other props and methods
}
```

Based on: https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react-test-renderer/index.d.ts

### Host and composite components

One of the most important aspects of the element tree is that it is composed of both host and composite components:

- [Host components](https://reactnative.dev/architecture/glossary#react-host-components-or-host-components) are components that will have direct counterparts in the native view tree. Typical examples are `<View>`, `<Text>` , `<TextInput>`, and `<Image>` from React Native. You can think of these as analogue of `<div>`, `<span>` etc on the Web. You can also create your own host views as native modules or import them from 3rd party libraries, like React Navigation or React Native Gesture Handler.
- [Composite components](https://reactnative.dev/architecture/glossary#react-composite-components) are React code organisation units that exist only on the JavaScript side of your app. Typical examples are components you create (both function and class components), components imported from React Native (`View`, `Text`, etc) or from 3rd party packages.

That might sound a bit confusing at first, since we put React Native’s `View` in both categories. There are actually two `View` components: composite one and host one. The relation between them is as follows:

- composite `View` is the type imported from `react-native` package. It’s a JavaScript component, which renders host `View` as its only child in the element tree.
- host `View` , which you do not render directly. React Native takes the props you pass to the composite `View`, does some processing on them and passes them to host `View`.

The part of the tree looks as follows:

```jsx
* <View> (composite)
* <View> (host)
* children prop passed in JSX
```

Similar relation exists between other composite and host pairs: e.g. `Text` , `TextInput` and `Image` components:

```jsx
* <Text> (composite)
* <Text> (host)
* string (or mixed) content
```

Not all React Native components are organised this way, e.g. when you use `Pressable` (or `TouchableOpacity`) there is no host `Pressable`, but composite `Pressable` is rendering a host `View` with certain props being set:

```jsx
* <Pressable> (composite)
* <View accessible={true} {...}> (host)
* children prop passed in JSX
```

#### Differentiating between host and composite elements

Any easy way to differentiate between host and composite elements is the `type` prop of `ReactTestInstance`:

- for host components it’s always a string value representing component name, e.g. `"View"`
- for composite components it’s a function or class corresponding to the component

You can use the following code to check if given element is a host one:

```jsx
function isHostElement(element: ReactTestInstance) {
return typeof element.type === 'string';
}
```

### Tree nodes

We encourage you to only assert values on host views in your tests, because they represent the user interface view and controls that the user will be able to see and interact with. Users cannot see, or interact with, composite views as they exist purely in JavaScript domain and do not generate any visible UI.

#### Asserting props

As an example, if you make assertions on a `style` prop of a composite element, there is no guarantee that the style will be visible to the user, as the component author can forget to pass this prop to some underlying `View` or other host component. Similarly `onPress` event handler on a composite prop can be unreachable by the user.

```jsx
function ForgotToPassPropsButton({ title, onPress, style }) {
return (
<Pressable>
<Text>{title}</Text>
</Pressable>
);
}
```

In the above example user defined components accepts both `onPress` and `style` props but does not pass it (through `Pressable`) to host views, so these props will not affect the user interface. Additionally, React Native and other libraries might pass some of the props under different names or transform their values between composite and host components.

### Tree navigation

:::caution
You should avoid navigating over element tree, as this makes your testing code fragile and may result in false positives. This section is more relevant for people how want to contribute to our codebase.
:::

When navigating a tree of react elements using `parent` or `children` props of a `ReactTestInstance` element, you will encounter both host and composite elements. You should be careful when navigating the element tree, as the tree structure for 3rd party components and change independently from your code and cause unexpected test failures.

Inside RNTL we have various tree navigation helpers: `getHostParent`, `getHostChildren`, etc. These are intentionally not exported as using them is not a recommended practice.

### Queries

Most of the Testing Library queries return host components, in order to encourage best practices described above.

At this stage, there are some noteworthy exceptions:

- `*ByText` queries returns composite `Text` element
- `*ByDisplayValue` queries returns composite `TextInput` element
- `*ByPlaceholderText` queries returns composite `TextInput` element

This will change in the near future, as we make efforts for all queries to return host components. Meanwhile it shouldn't be a huge issue, as composite `Text` and `TextInput`generally pass their props down to host counterparts.

Additionally, `UNSAFE_*ByType` and `UNSAFE_*ByProps` queries can return both host and composite components depending on used predicates. They are marked as unsafe precisely because testing composite components makes your test more fragile.
13 changes: 7 additions & 6 deletions website/sidebars.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
module.exports = {
docs: {
Introduction: ['getting-started'],
Introduction: ['getting-started', 'faq'],
'API Reference': ['api', 'api-queries'],
Guides: [
'troubleshooting',
'how-should-i-query',
'eslint-plugin-testing-library',
],
Advanced: ['testing-env', 'understanding-act'],
Migrations: [
'migration-v11',
'migration-v9',
'migration-v7',
'migration-v2',
'how-should-i-query',
'faq',
'troubleshooting',
'eslint-plugin-testing-library',
'understanding-act',
],
Examples: ['react-navigation', 'redux-integration'],
},
Expand Down