/** * External dependencies */ import { render, act, cleanup, waitFor } from '@testing-library/react'; import { useDispatch, useSelect } from '@wordpress/data'; import { useExperiment } from '@woocommerce/explat'; import { recordEvent } from '@woocommerce/tracks'; import userEvent from '@testing-library/user-event'; /** * Internal dependencies */ import { Tasks } from '../tasks'; import { TaskProps } from '../task'; import { TaskListProps } from '../task-list'; import { TaskListProps as TwoColumnTaskListProps } from '../../two-column-tasks/task-list'; jest.mock( '@wordpress/data', () => { // Require the original module to not be mocked... const originalModule = jest.requireActual( '@wordpress/data' ); return { __esModule: true, // Use it when dealing with esModules ...originalModule, useDispatch: jest.fn().mockReturnValue( {} ), useSelect: jest.fn().mockReturnValue( {} ), }; } ); jest.mock( '@woocommerce/explat' ); jest.mock( '@woocommerce/tracks' ); jest.mock( '../task-list', () => ( { TaskList: ( { id }: TaskListProps ) =>
task-list:{ id }
, } ) ); jest.mock( '../../two-column-tasks/task-list', () => ( { TaskList: ( { id }: TwoColumnTaskListProps ) => (
two-column-list:{ id }
), } ) ); jest.mock( '../task', () => ( { Task: ( { query }: TaskProps ) =>
task:{ query.task }
, } ) ); jest.mock( '../placeholder', () => ( { TasksPlaceholder: () =>
task-placeholder
, } ) ); jest.mock( '~/activity-panel/display-options', () => ( { DisplayOption: ( { children }: { children: React.ReactNode } ) => (
{ children }
), } ) ); describe( 'Task', () => { const hideTaskList = jest.fn(); const updateOptions = jest.fn(); beforeEach( () => { jest.clearAllMocks(); ( useDispatch as jest.Mock ).mockImplementation( () => ( { hideTaskList, updateOptions, } ) ); ( useSelect as jest.Mock ).mockImplementation( () => ( { isResolving: false, taskLists: [ { id: 'main', eventPrefix: 'main_tasklist_', isVisible: true, tasks: [ { id: 'main-task-1' }, { id: 'main-task-2' } ], }, { id: 'extended', isVisible: true, tasks: [] }, ], } ) ); } ); afterEach( () => { cleanup(); } ); it( 'should render if no current task and finished resolving', () => { const { queryByText } = render(
); waitFor( () => { expect( queryByText( 'task-list:main' ) ).toBeInTheDocument(); expect( queryByText( 'task-list:extended' ) ).toBeInTheDocument(); expect( queryByText( 'two-column-list:setup' ) ).not.toBeInTheDocument(); } ); } ); it( 'should render the task component if query has an existing task', () => { const { queryByText } = render(
); expect( queryByText( 'task:main-task-1' ) ).toBeInTheDocument(); } ); it( 'should not render anything if query has task, but task does not exist', () => { const { queryByText } = render(
); expect( queryByText( 'task:main-task-random' ) ).not.toBeInTheDocument(); expect( queryByText( 'task-list:main' ) ).not.toBeInTheDocument(); } ); it( 'should render the placeholder if isResolving is true', () => { ( useSelect as jest.Mock ).mockImplementation( () => ( { isResolving: true, } ) ); const { queryByText } = render(
); expect( queryByText( 'task-placeholder' ) ).toBeInTheDocument(); } ); it( 'should show a menu item with Show things to do next if task list has isToggleable set to true', () => { ( useSelect as jest.Mock ).mockImplementation( () => ( { isResolving: false, taskLists: [ { id: 'main', eventPrefix: 'main_tasklist_', isVisible: true, isToggleable: true, isHidden: false, tasks: [ { id: 'main-task-1' }, { id: 'main-task-2' } ], }, ], } ) ); const { queryByText } = render(
); expect( queryByText( 'Show things to do next' ) ).toBeInTheDocument(); } ); it( 'should class updateOptions with default data on render', () => { render(
); waitFor( () => { expect( updateOptions ).toHaveBeenCalledWith( { woocommerce_task_list_prompt_shown: true, } ); } ); } ); describe( 'toggle list', () => { it( 'should trigger hide track when clicking Show things to do next button', () => { ( useSelect as jest.Mock ).mockImplementation( () => ( { isResolving: false, taskLists: [ { id: 'main', eventPrefix: 'main_tasklist_', isVisible: true, isToggleable: true, isHidden: false, tasks: [ { id: 'main-task-1' }, { id: 'main-task-2' } ], }, ], } ) ); const { getByText } = render(
); act( () => { userEvent.click( getByText( 'Show things to do next' ) ); } ); expect( recordEvent ).toHaveBeenCalledWith( 'main_tasklist_hide', {} ); expect( hideTaskList ).toHaveBeenCalledWith( 'main' ); } ); it( 'should trigger show track when toggling task list when isHidden was true', () => { ( useSelect as jest.Mock ).mockImplementation( () => ( { isResolving: false, taskLists: [ { id: 'main', eventPrefix: 'main_tasklist_', isVisible: true, isToggleable: true, isHidden: true, tasks: [ { id: 'main-task-1' }, { id: 'main-task-2' } ], }, ], } ) ); const { getByText } = render(
); act( () => { userEvent.click( getByText( 'Show things to do next' ) ); } ); expect( recordEvent ).toHaveBeenCalledWith( 'main_tasklist_show', {} ); expect( hideTaskList ).toHaveBeenCalledWith( 'main' ); } ); } ); } );