File size: 2,486 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
/**
* @jest-environment jsdom
*/
import { render, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import SelectDropdownItem from '../item';
describe( 'item', () => {
describe( 'component rendering', () => {
test( 'should render a list entry', () => {
render( <SelectDropdownItem>Published</SelectDropdownItem> );
const item = screen.queryByRole( 'listitem' );
expect( item ).toBeInTheDocument();
} );
test( 'should contain a link', () => {
render( <SelectDropdownItem>Published</SelectDropdownItem> );
const item = screen.getByRole( 'listitem' );
const link = screen.getByRole( 'menuitem', { name: /published/i } );
expect( item.firstChild ).toHaveTextContent( 'Published' );
expect( item.firstChild ).toBe( link );
} );
test( 'should contain a default aria-label', () => {
render( <SelectDropdownItem>Published</SelectDropdownItem> );
const link = screen.getByRole( 'menuitem', { name: /published/i } );
expect( link ).toHaveAttribute( 'aria-label', 'Published' );
} );
test( 'should default aria-label include a count', () => {
render( <SelectDropdownItem count={ 123 }>Published</SelectDropdownItem> );
const link = screen.getByRole( 'menuitem', { name: /published/i } );
expect( link ).toHaveAttribute( 'aria-label', 'Published (123)' );
} );
test( 'should render custom aria-label if provided', () => {
render(
<SelectDropdownItem count={ 123 } ariaLabel="My Custom Label">
Published
</SelectDropdownItem>
);
const link = screen.getByRole( 'menuitem', { name: /my custom label/i } );
expect( link ).toHaveAttribute( 'aria-label', 'My Custom Label' );
} );
} );
describe( 'when the component is clicked', () => {
test( 'should do nothing when is disabled', async () => {
const onClickSpy = jest.fn();
render(
<SelectDropdownItem disabled onClick={ onClickSpy }>
Published
</SelectDropdownItem>
);
const link = screen.getByRole( 'menuitem', { name: /published/i } );
await userEvent.click( link );
expect( onClickSpy ).not.toHaveBeenCalled();
} );
test( 'should run the `onClick` hook', async () => {
const onClickSpy = jest.fn();
render( <SelectDropdownItem onClick={ onClickSpy }>Published</SelectDropdownItem> );
const link = screen.getByRole( 'menuitem', { name: /published/i } );
await userEvent.click( link );
expect( onClickSpy ).toHaveBeenCalledTimes( 1 );
} );
} );
} );
|