|
| 1 | +import * as React from 'react'; |
| 2 | +import { useGetRecordId } from './useGetRecordId'; |
| 3 | +import { render, screen } from '@testing-library/react'; |
| 4 | +import { MemoryRouter, Route, Routes } from 'react-router-dom'; |
| 5 | +import { RecordContextProvider } from '..'; |
| 6 | + |
| 7 | +describe('useGetRecordId', () => { |
| 8 | + const UseGetRecordId = (props: any) => { |
| 9 | + const recordId = useGetRecordId(props.id); |
| 10 | + return <div>{recordId}</div>; |
| 11 | + }; |
| 12 | + |
| 13 | + it('should return the record id it received in options', () => { |
| 14 | + render(<UseGetRecordId id="abc" />); |
| 15 | + expect(screen.queryByText('abc')).not.toBeNull(); |
| 16 | + }); |
| 17 | + |
| 18 | + it('should return the record id it received in options even if it is falsy', () => { |
| 19 | + render(<UseGetRecordId id={0} />); |
| 20 | + expect(screen.queryByText('0')).not.toBeNull(); |
| 21 | + }); |
| 22 | + |
| 23 | + it('should return the record id it received through the record context', () => { |
| 24 | + render( |
| 25 | + <RecordContextProvider value={{ id: 'abc' }}> |
| 26 | + <UseGetRecordId /> |
| 27 | + </RecordContextProvider> |
| 28 | + ); |
| 29 | + expect(screen.queryByText('abc')).not.toBeNull(); |
| 30 | + }); |
| 31 | + |
| 32 | + it('should return the record id it received through the record context even if it is falsy', () => { |
| 33 | + render( |
| 34 | + <RecordContextProvider value={{ id: 0 }}> |
| 35 | + <UseGetRecordId /> |
| 36 | + </RecordContextProvider> |
| 37 | + ); |
| 38 | + expect(screen.queryByText('0')).not.toBeNull(); |
| 39 | + }); |
| 40 | + |
| 41 | + it('should return the record id parsed from the location', () => { |
| 42 | + render( |
| 43 | + <MemoryRouter initialEntries={['/posts/abc']}> |
| 44 | + <Routes> |
| 45 | + <Route path="/posts/:id" element={<UseGetRecordId />} /> |
| 46 | + </Routes> |
| 47 | + </MemoryRouter> |
| 48 | + ); |
| 49 | + expect(screen.queryByText('abc')).not.toBeNull(); |
| 50 | + }); |
| 51 | + |
| 52 | + it('should return the record id parsed from the location even if it is falsy', () => { |
| 53 | + render( |
| 54 | + <MemoryRouter initialEntries={['/posts/0']}> |
| 55 | + <Routes> |
| 56 | + <Route path="/posts/:id" element={<UseGetRecordId />} /> |
| 57 | + </Routes> |
| 58 | + </MemoryRouter> |
| 59 | + ); |
| 60 | + expect(screen.queryByText('0')).not.toBeNull(); |
| 61 | + }); |
| 62 | +}); |
0 commit comments