import { render, waitFor } from '@testing-library/react'; import { renderHook } from '@testing-library/react-hooks'; import userEvent from '@testing-library/user-event'; import React from 'react'; import { createInstantSearchTestWrapper, InstantSearchHooksTestWrapper, } from '../../../../../test/utils'; import { useSearchBox } from '../../connectors/useSearchBox'; import { useSearchState } from '../useSearchState'; function SearchBox() { const { query } = useSearchBox({}); return <>{query}; } describe('useSearchState', () => { test('returns the ui state', () => { const wrapper = createInstantSearchTestWrapper(); const { result, rerender } = renderHook(() => useSearchState(), { wrapper, }); expect(result.current).toEqual({ uiState: { indexName: {}, }, indexUiState: {}, setUiState: expect.any(Function), setIndexUiState: expect.any(Function), }); const setUiState = result.current.setUiState; const setIndexUiState = result.current.setIndexUiState; rerender(); expect(result.current).toEqual({ uiState: { indexName: {}, }, indexUiState: {}, setUiState, setIndexUiState, }); }); test('returns the ui state with initial state', () => { const wrapper = createInstantSearchTestWrapper({ initialUiState: { indexName: { query: 'iphone', }, }, }); const { result } = renderHook(() => useSearchState(), { wrapper }); expect(result.current).toEqual({ uiState: { indexName: { query: 'iphone' }, }, indexUiState: { query: 'iphone' }, setUiState: expect.any(Function), setIndexUiState: expect.any(Function), }); }); test('returns a function to modify the whole state', async () => { function App() { const { uiState, setUiState } = useSearchState(); return ( <>
{JSON.stringify(uiState)}
); } const { getByRole, getByTestId } = render( ); const button = getByRole('button'); const uiState = getByTestId('uiState'); await waitFor(() => { expect(button).toHaveTextContent(''); expect(uiState).toHaveTextContent(JSON.stringify({})); }); userEvent.click(button); await waitFor(() => { expect(button).toHaveTextContent('new query'); expect(uiState).toHaveTextContent( JSON.stringify({ indexName: { query: 'new query' } }) ); }); }); test('returns a function to modify the whole state via callback', async () => { function App() { const { uiState, setUiState } = useSearchState(); return ( <>
{JSON.stringify(uiState)}
); } const { getByRole, getByTestId } = render( ); const button = getByRole('button'); const uiState = getByTestId('uiState'); await waitFor(() => { expect(button).toHaveTextContent(''); expect(uiState).toHaveTextContent(JSON.stringify({})); }); userEvent.click(button); await waitFor(() => { expect(button).toHaveTextContent('undefined added'); expect(uiState).toHaveTextContent( JSON.stringify({ indexName: { query: 'undefined added' } }) ); }); userEvent.click(button); await waitFor(() => { expect(button).toHaveTextContent('undefined added added'); expect(uiState).toHaveTextContent( JSON.stringify({ indexName: { query: 'undefined added added' } }) ); }); }); test('returns a function to modify the index state', async () => { function App() { const { indexUiState, setIndexUiState } = useSearchState(); return ( <>
{JSON.stringify(indexUiState)}
); } const { getByRole, getByTestId } = render( ); const button = getByRole('button'); const indexUiState = getByTestId('indexUiState'); await waitFor(() => { expect(button).toHaveTextContent(''); expect(indexUiState).toHaveTextContent(JSON.stringify({})); }); userEvent.click(button); await waitFor(() => { expect(button).toHaveTextContent('new query'); expect(indexUiState).toHaveTextContent( JSON.stringify({ query: 'new query' }) ); }); }); test('returns a function to modify the index state via callback', async () => { function App() { const { indexUiState, setIndexUiState } = useSearchState(); return ( <>
{JSON.stringify(indexUiState)}
); } const { getByRole, getByTestId } = render( ); const button = getByRole('button'); const indexUiState = getByTestId('indexUiState'); await waitFor(() => { expect(button).toHaveTextContent(''); expect(indexUiState).toHaveTextContent(JSON.stringify({})); }); userEvent.click(button); await waitFor(() => { expect(button).toHaveTextContent('undefined added'); expect(indexUiState).toHaveTextContent( JSON.stringify({ query: 'undefined added' }) ); }); userEvent.click(button); await waitFor(() => { expect(button).toHaveTextContent('undefined added added'); expect(indexUiState).toHaveTextContent( JSON.stringify({ query: 'undefined added added' }) ); }); }); });