-
Notifications
You must be signed in to change notification settings - Fork 91
Unit tests for useQuery #24
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
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next
Next commit
unit tests for useQuery
- Loading branch information
commit 38fc6556a582ef2eb3cc0084913d5132e5e545f5
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,104 @@ | ||
| import { useQuery } from '../../src'; | ||
| import React from 'react'; | ||
| import { testHook } from 'react-testing-library'; | ||
| import { ClientContext, useQuery } from '../../src'; | ||
|
|
||
| let mockQueryReq, mockState; | ||
| jest.mock('../../src/useClientRequest', () => () => [mockQueryReq, mockState]); | ||
|
|
||
| let mockClient; | ||
| const Wrapper = props => ( | ||
| <ClientContext.Provider value={mockClient}> | ||
| {props.children} | ||
| </ClientContext.Provider> | ||
| ); | ||
|
|
||
| const TEST_QUERY = `query Test($limit: Int) { | ||
| tests(limit: $limit) { | ||
| id | ||
| } | ||
| }`; | ||
|
|
||
| describe('useQuery', () => { | ||
| it('runs a test', () => {}); | ||
| beforeEach(() => { | ||
| mockQueryReq = jest.fn(); | ||
| mockState = { loading: true, cacheHit: false }; | ||
| mockClient = { | ||
| ssrMode: false, | ||
| ssrPromises: [] | ||
| }; | ||
| }); | ||
|
|
||
| afterEach(() => { | ||
| jest.unmock('../../src/useClientRequest'); | ||
| }); | ||
|
|
||
| it('returns initial state from useClientRequest & refetch', () => { | ||
| let state; | ||
| testHook(() => (state = useQuery(TEST_QUERY)), { wrapper: Wrapper }); | ||
| expect(state).toEqual({ | ||
| loading: true, | ||
| cacheHit: false, | ||
| refetch: expect.any(Function) | ||
| }); | ||
| }); | ||
|
|
||
| it('bypasses cache when refetch is called', () => { | ||
| let refetch; | ||
| testHook(() => ({ refetch } = useQuery(TEST_QUERY)), { wrapper: Wrapper }); | ||
| refetch(); | ||
| expect(mockQueryReq).toHaveBeenCalledWith({ skipCache: true }); | ||
| }); | ||
|
|
||
| it('sends the query on mount if no data & no error', () => { | ||
| testHook(() => useQuery(TEST_QUERY), { wrapper: Wrapper }); | ||
| expect(mockQueryReq).toHaveBeenCalledTimes(1); | ||
| }); | ||
|
|
||
| it('does not send the same query on mount if data is already present', () => { | ||
| mockState.data = { some: 'data' }; | ||
| testHook(() => useQuery(TEST_QUERY), { wrapper: Wrapper }); | ||
| expect(mockQueryReq).not.toHaveBeenCalled(); | ||
| }); | ||
|
|
||
| it('does not send the query on mount if there is already data', () => { | ||
| mockState.error = true; | ||
| testHook(() => useQuery(TEST_QUERY), { wrapper: Wrapper }); | ||
| expect(mockQueryReq).not.toHaveBeenCalled(); | ||
| }); | ||
|
|
||
| it('does not send the query on mount if there is an error', () => { | ||
jackdclark marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| mockState.error = true; | ||
| testHook(() => useQuery(TEST_QUERY), { wrapper: Wrapper }); | ||
| expect(mockQueryReq).not.toHaveBeenCalled(); | ||
| }); | ||
|
|
||
| it('adds query to ssrPromises when in ssrMode if no data & no error', () => { | ||
| mockClient.ssrMode = true; | ||
| mockQueryReq.mockResolvedValueOnce('data'); | ||
| testHook(() => useQuery(TEST_QUERY), { wrapper: Wrapper }); | ||
| expect(mockClient.ssrPromises[0]).resolves.toBe('data'); | ||
| }); | ||
|
|
||
| it('does not add query to ssrPromises when in ssrMode if there is already data', () => { | ||
| mockState.data = { some: 'data ' }; | ||
| mockClient.ssrMode = true; | ||
| mockQueryReq.mockResolvedValueOnce('data'); | ||
| testHook(() => useQuery(TEST_QUERY), { wrapper: Wrapper }); | ||
| expect(mockClient.ssrPromises).toHaveLength(0); | ||
| }); | ||
|
|
||
| it('does not add query to ssrPromises when in ssrMode if there is an error', () => { | ||
| mockState.error = true; | ||
| mockClient.ssrMode = true; | ||
| mockQueryReq.mockResolvedValueOnce('data'); | ||
| testHook(() => useQuery(TEST_QUERY), { wrapper: Wrapper }); | ||
| expect(mockClient.ssrPromises).toHaveLength(0); | ||
| }); | ||
|
|
||
| it('does not add query to ssrPromises when in ssrMode if ssr is overridden in options', () => { | ||
| mockClient.ssrMode = true; | ||
| mockQueryReq.mockResolvedValueOnce('data'); | ||
| testHook(() => useQuery(TEST_QUERY, { ssr: false }), { wrapper: Wrapper }); | ||
| expect(mockClient.ssrPromises).toHaveLength(0); | ||
| }); | ||
| }); | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.