Skip to content

Commit

Permalink
docs: async tests [Cookbook] (#1631)
Browse files Browse the repository at this point in the history
* wip: async tests

* docs: tweaks

* docs: final tweaks
  • Loading branch information
mdjastrzebski authored Jun 21, 2024
1 parent 723c8e2 commit 01d319c
Show file tree
Hide file tree
Showing 3 changed files with 147 additions and 5 deletions.
2 changes: 1 addition & 1 deletion website/docs/12.x/cookbook/basics/_meta.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
["custom-render"]
["async-tests", "custom-render"]
142 changes: 142 additions & 0 deletions website/docs/12.x/cookbook/basics/async-tests.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,142 @@
# Async tests

## Summary

Typically, you would write synchronous tests, as they are simple and get the work done. However, there are cases when using asynchronous (async) tests might be necessary or beneficial. The two most common cases are:

1. **Testing Code with asynchronous operations**: When your code relies on asynchronous operations, such as network calls or database queries, async tests are essential. Even though you should mock these network calls, the mock should act similarly to the actual behavior and hence by async.
2. **UserEvent API:** Using the [User Event API](docs/api/events/user-event) in your tests creates more realistic event handling. These interactions introduce delays (even though these are typically event-loop ticks with 0 ms delays), requiring async tests to handle the timing correctly.

Using async tests when needed ensures your tests are reliable and simulate real-world conditions accurately.

### Example

Consider a basic asynchronous test for a user signing in with correct credentials:

```javascript
test('User can sign in with correct credentials', async () => {
// Typical test setup
const user = userEvent.setup();
render(<App />);

// No need to use async here, components are already rendered
expect(screen.getByRole('header', { name: 'Sign in to Hello World App!' })).toBeOnTheScreen();

// Using await as User Event requires it
await user.type(screen.getByLabelText('Username'), 'admin');
await user.type(screen.getByLabelText('Password'), 'admin1');
await user.press(screen.getByRole('button', { name: 'Sign In' }));

// Using await as sign in operation is asynchronous
expect(await screen.findByRole('header', { name: 'Welcome admin!' })).toBeOnTheScreen();

// Follow-up assertions do not need to be async, as we already waited for sign in operation to complete
expect(
screen.queryByRole('header', { name: 'Sign in to Hello World App' })
).not.toBeOnTheScreen();
expect(screen.queryByLabelText('Username')).not.toBeOnTheScreen();
expect(screen.queryByLabelText('Password')).not.toBeOnTheScreen();
});
```

## Async utilities

There are several asynchronous utilities you might use in your tests.

### `findBy*` queries

The most common are the [`findBy*` queries](docs/api/queries#find-by). These are useful when waiting for a matching element to appear. They can be understood as a [`getBy*` queries](docs/api/queries#get-by) used in conjunction with a [`waitFor` function](docs/api/misc/async#waitfor).

They accept the same predicates as `getBy*` queries like `findByRole`, `findByTest`, etc. They also have a multiple elements variant called [`findAllBy*`](docs/api/queries#find-all-by).

```typescript
function findByRole: (
role: TextMatch,
queryOptions?: {
// Query specific options
}
waitForOptions?: {
timeout?: number;
interval?: number;
// ..
}
): Promise<ReactTestInstance>;
```

Each query has a default `timeout` value of 1000 ms and a default `interval` of 50 ms. Custom timeout and check intervals can be specified if needed, as shown below:

#### Example

```typescript
const button = await screen.findByRole('button'), { name: 'Start' }, { timeout: 1000, interval: 50 });
```

Alternatively, a default global `timeout` value can be set using the [`configure` function](docs/api/misc/config#configure):

```typescript
configure({ asyncUtilTimeout: timeout });
```

### `waitFor` function

The `waitFor` function is another option, serving as a lower-level utility in more advanced cases.

```typescript
function waitFor<T>(
expectation: () => T,
options?: {
timeout: number;
interval: number;
}
): Promise<T>;
```

It accepts an `expectation` to be validated and repeats the check every defined interval until it no longer throws an error. Similarly to `findBy*` queries they accept `timeout` and `interval` options and have the same default values of 1000ms for timeout, and a checking interval of 50 ms.

#### Example

```typescript
await waitFor(() => expect(mockAPI).toHaveBeenCalledTimes(1));
```

If you want to use it with `getBy*` queries, use the `findBy*` queries instead, as they essentially do the same, but offer better developer experience.

### `waitForElementToBeRemoved` function

A specialized function, [`waitForElementToBeRemoved`](docs/api/misc/async#waitforelementtoberemoved), is used to verify that a matching element was present but has since been removed.

```typescript
function waitForElementToBeRemoved<T>(
expectation: () => T,
options?: {
timeout: number;
interval: number;
}
): Promise<T> {}
```

This function is, in a way, the negation of `waitFor` as it expects the initial expectation to be true (not throw an error), only to turn invalid (start throwing errors) on subsequent runs. It operates using the same `timeout` and `interval` parameters as `findBy*` queries and `waitFor`.

#### Example

```typescript
await waitForElementToBeRemoved(() => getByText('Hello World'));
```

## Fake Timers

Asynchronous tests can take long to execute due to the delays introduced by asynchronous operations. To mitigate this, fake timers can be used. These are particularly useful when delays are mere waits, such as the 130 milliseconds wait introduced by the UserEvent `press()` event due to React Native runtime behavior or simulated 1000 wait in a API call mock. Fake timers allow for precise fast-forwarding through these wait periods.

Here are the basics of using [Jest fake timers](https://jestjs.io/docs/timer-mocks):

- Enable fake timers with: `jest.useFakeTimers()`
- Disable fake timers with: `jest.useRealTimers()`
- Advance fake timers forward with: `jest.advanceTimersByTime(interval)`
- Run **all timers** to completion with: `jest.runAllTimers()`
- Run **currently pending timers** to completion with: `jest.runOnlyPendingTimers()`

Be cautious when running all timers to completion as it might create an infinite loop if these timers schedule follow-up timers. In such cases, it's safer to use `jest.runOnlyPendingTimers()` to avoid ending up in an infinite loop of scheduled tasks.

You can use both built-in Jest fake timers, as well as [Sinon.JS fake timers](https://sinonjs.org/releases/latest/fake-timers/).

Note: you do not need to advance timers by hand when using User Event API, as it's automatically.
8 changes: 4 additions & 4 deletions website/docs/12.x/docs/api/misc/async.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ The `findBy*` queries are used to find elements that are not instantly available
```tsx
function waitFor<T>(
expectation: () => T,
{ timeout: number = 1000, interval: number = 50 }
): Promise<T> {}
options?: { timeout: number; interval: number }
): Promise<T>;
```

Waits for a period of time for the `expectation` callback to pass. `waitFor` may run the callback a number of times until timeout is reached, as specified by the `timeout` and `interval` options. The callback must throw an error when the expectation is not met. Returning any value, including a falsy one, will be treated as meeting the expectation, and the callback result will be returned to the caller of `waitFor` function.
Expand Down Expand Up @@ -109,8 +109,8 @@ If you receive warnings related to `act()` function consult our [Undestanding Ac
```ts
function waitForElementToBeRemoved<T>(
expectation: () => T,
{ timeout: number = 4500, interval: number = 50 }
): Promise<T> {}
options?: { timeout: number; interval: number }
): Promise<T>;
```

Waits for non-deterministic periods of time until queried element is removed or times out. `waitForElementToBeRemoved` periodically calls `expectation` every `interval` milliseconds to determine whether the element has been removed or not.
Expand Down

0 comments on commit 01d319c

Please sign in to comment.