Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
tannerlinsley committed Nov 6, 2020
2 parents fb596ea + df3460b commit 25a776d
Show file tree
Hide file tree
Showing 3 changed files with 94 additions and 1 deletion.
5 changes: 5 additions & 0 deletions docs/src/manifests/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,11 @@
"path": "/docs/guides/suspense",
"editUrl": "/docs/guides/suspense.md"
},
{
"title": "Testing",
"path": "/docs/guides/testing",
"editUrl": "/docs/guides/testing.md"
},
{
"title": "Does this replace [Redux, MobX, etc]?",
"path": "/docs/guides/does-this-replace-client-state",
Expand Down
88 changes: 88 additions & 0 deletions docs/src/pages/docs/guides/testing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
---
id: testing
title: Testing
---

React Query works by means of hooks - either the ones we offer or custom ones that wrap around them.

Writing unit tests for these custom hooks can be done by means of the [React Hooks Testing Library](https://react-hooks-testing-library.com/) library.

Install this by running:

```sh
npm install @testing-library/react-hooks react-test-renderer --save-dev
```

(The `react-test-renderer` library is needed as a peer dependency of `@testing-library/react-hooks`, and needs to correspond to the version of React that you are using.)

## Our First Test

Once installed, a simple test can be written. Given the following custom hook:

```
export function useCustomHook() {
const { data } = useQuery('customHook', () => 'Hello');
return data;
}
```

We can write a test for this as follows:

```
const queryCache = new QueryCache();
const wrapper = ({ children }) => (
<ReactQueryCacheProvider queryCache={queryCache}>
{children}
</ReactQueryCacheProvider>
);
const { result } = renderHook(() => useCustomHook(), { wrapper });
expect(result.current).toEqual('Hello');
```

Note that we provide a custom wrapper that builds the `QueryCache` and `ReactQueryCacheProvider`. This helps to ensure that our test is completely isolated from any other tests.

It is possible to write this wrapper only once, but if so we need to ensure that the `QueryCache` gets cleared before every test, and that tests don't run in parallel otherwise one test will influence the results of others.

## Testing Network Calls

The primary use for React Query is to cache network requests, so it's important that we can test our code is making the correct network requests in the first place.

There are plenty of ways that these can be tested, but for this example we are going to use [nock](https://www.npmjs.com/package/nock).

Given the following custom hook:

```
function useFetchData() {
const { data } = useQuery('fetchData', () => request('/api/data'));
return data;
}
```

We can write a test for this as follows:

```
const queryCache = new QueryCache();
const wrapper = ({ children }) => (
<ReactQueryCacheProvider queryCache={queryCache}>
{children}
</ReactQueryCacheProvider>
);
const expectation = nock('http://example.com')
.get('/api/data')
.reply(200, {
answer: 42
});
const { result, waitFor } = renderHook(() => useFetchData(), { wrapper });
await waitFor(() => {
return result.current.isSuccess();
});
expect(result.current).toEqual({answer: 42});
```

Here we are making use of `waitFor` and waiting until our Nock expectation indicates that it has been called. This way we know that our hook has finished and should have the correct data.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"@babel/runtime": "^7.5.5"
},
"peerDependencies": {
"react": "^16.8.0"
"react": "^16.8.0 || ^17.0.0"
},
"peerDependenciesMeta": {
"react-dom": {
Expand Down

1 comment on commit 25a776d

@vercel
Copy link

@vercel vercel bot commented on 25a776d Nov 6, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.