import React from 'react'; import { mountWithContexts } from '../enzymeHelpers'; import DataListToolbar from '../../src/components/DataListToolbar'; describe('', () => { let toolbar; afterEach(() => { if (toolbar) { toolbar.unmount(); toolbar = null; } }); test('it triggers the expected callbacks', () => { const columns = [{ name: 'Name', key: 'name', isSortable: true }]; const search = 'button[aria-label="Search"]'; const searchTextInput = 'input[aria-label="Search text input"]'; const selectAll = 'input[aria-label="Select all"]'; const sort = 'button[aria-label="Sort"]'; const onSearch = jest.fn(); const onSort = jest.fn(); const onSelectAll = jest.fn(); toolbar = mountWithContexts( ); toolbar.find(sort).simulate('click'); toolbar.find(selectAll).simulate('change', { target: { checked: false } }); expect(onSelectAll).toHaveBeenCalledTimes(1); expect(onSort).toHaveBeenCalledTimes(1); expect(onSort).toBeCalledWith('name', 'descending'); expect(onSelectAll).toHaveBeenCalledTimes(1); expect(onSelectAll.mock.calls[0][0]).toBe(false); toolbar.find(searchTextInput).instance().value = 'test-321'; toolbar.find(searchTextInput).simulate('change'); toolbar.find(search).simulate('click'); expect(onSearch).toHaveBeenCalledTimes(1); expect(onSearch).toBeCalledWith('test-321'); }); test('dropdown items sortable columns work', () => { const sortDropdownToggleSelector = 'button[id="awx-sort"]'; const searchDropdownToggleSelector = 'button[id="awx-search"]'; const dropdownMenuItems = 'DropdownMenu > ul'; const multipleColumns = [ { name: 'Foo', key: 'foo', isSortable: true }, { name: 'Bar', key: 'bar', isSortable: true }, { name: 'Bakery', key: 'bakery', isSortable: true }, { name: 'Baz', key: 'baz' } ]; const onSort = jest.fn(); toolbar = mountWithContexts( ); const sortDropdownToggle = toolbar.find(sortDropdownToggleSelector); expect(sortDropdownToggle.length).toBe(1); sortDropdownToggle.simulate('click'); toolbar.update(); const sortDropdownItems = toolbar.find(dropdownMenuItems).children(); expect(sortDropdownItems.length).toBe(2); const mockedSortEvent = { target: { innerText: 'Bar' } }; sortDropdownItems.at(0).simulate('click', mockedSortEvent); toolbar = mountWithContexts( ); toolbar.update(); const sortDropdownToggleDescending = toolbar.find(sortDropdownToggleSelector); expect(sortDropdownToggleDescending.length).toBe(1); sortDropdownToggleDescending.simulate('click'); toolbar.update(); const sortDropdownItemsDescending = toolbar.find(dropdownMenuItems).children(); expect(sortDropdownItemsDescending.length).toBe(2); sortDropdownToggleDescending.simulate('click'); // toggle close the sort dropdown const mockedSortEventDescending = { target: { innerText: 'Bar' } }; sortDropdownItems.at(0).simulate('click', mockedSortEventDescending); toolbar.update(); const searchDropdownToggle = toolbar.find(searchDropdownToggleSelector); expect(searchDropdownToggle.length).toBe(1); searchDropdownToggle.simulate('click'); toolbar.update(); const searchDropdownItems = toolbar.find(dropdownMenuItems).children(); expect(searchDropdownItems.length).toBe(3); const mockedSearchEvent = { target: { innerText: 'Bar' } }; searchDropdownItems.at(0).simulate('click', mockedSearchEvent); }); test('it displays correct sort icon', () => { const downNumericIconSelector = 'SortNumericDownIcon'; const upNumericIconSelector = 'SortNumericUpIcon'; const downAlphaIconSelector = 'SortAlphaDownIcon'; const upAlphaIconSelector = 'SortAlphaUpIcon'; const numericColumns = [{ name: 'ID', key: 'id', isSortable: true, isNumeric: true }]; const alphaColumns = [{ name: 'Name', key: 'name', isSortable: true, isNumeric: false }]; toolbar = mountWithContexts( ); const downNumericIcon = toolbar.find(downNumericIconSelector); expect(downNumericIcon.length).toBe(1); toolbar = mountWithContexts( ); const upNumericIcon = toolbar.find(upNumericIconSelector); expect(upNumericIcon.length).toBe(1); toolbar = mountWithContexts( ); const downAlphaIcon = toolbar.find(downAlphaIconSelector); expect(downAlphaIcon.length).toBe(1); toolbar = mountWithContexts( ); const upAlphaIcon = toolbar.find(upAlphaIconSelector); expect(upAlphaIcon.length).toBe(1); }); test('should render additionalControls', () => { const columns = [{ name: 'Name', key: 'name', isSortable: true }]; const onSearch = jest.fn(); const onSort = jest.fn(); const onSelectAll = jest.fn(); toolbar = mountWithContexts( click]} /> ); const button = toolbar.find('#test'); expect(button).toHaveLength(1); expect(button.text()).toEqual('click'); }); });