woocommerce/plugins/woocommerce-admin/client/homescreen/test/index.js

204 lines
5.1 KiB
JavaScript

/**
* External dependencies
*/
import { render, screen } from '@testing-library/react';
import { useUserPreferences } from '@woocommerce/data';
/**
* Internal dependencies
*/
import { Layout } from '../layout';
// Rendering <StatsOverview /> breaks tests.
jest.mock( 'homescreen/stats-overview', () =>
jest.fn().mockReturnValue( null )
);
// We aren't testing the <TaskList /> component here.
jest.mock( 'task-list', () => jest.fn().mockReturnValue( '[TaskList]' ) );
// We aren't testing the <InboxPanel /> component here.
jest.mock( 'inbox-panel', () => jest.fn().mockReturnValue( '[InboxPanel]' ) );
jest.mock( '@woocommerce/data', () => ( {
...jest.requireActual( '@woocommerce/data' ),
useUserPreferences: jest.fn().mockReturnValue( {} ),
} ) );
// We aren't testing the <ActivityPanel /> component here.
jest.mock( '../activity-panel', () => ( {
ActivityPanel: jest.fn().mockReturnValue( '[ActivityPanel]' ),
} ) );
describe( 'Homescreen Layout', () => {
it( 'should show TaskList placeholder when loading', () => {
const { container } = render(
<Layout
requestingTaskList
bothTaskListsHidden={ false }
query={ {} }
updateOptions={ () => {} }
/>
);
const placeholder = container.querySelector(
'.woocommerce-task-card.is-loading'
);
expect( placeholder ).not.toBeNull();
} );
it( 'should show TaskList inline', () => {
const { container } = render(
<Layout
requestingTaskList={ false }
bothTaskListsHidden={ false }
query={ {} }
updateOptions={ () => {} }
/>
);
// Expect that we're rendering the "full" home screen (with columns).
const columns = container.querySelector(
'.woocommerce-homescreen-column'
);
expect( columns ).not.toBeNull();
// Expect that the <TaskList /> is there too.
const taskList = screen.queryByText( '[TaskList]' );
expect( taskList ).toBeDefined();
} );
it( 'should render TaskList alone when on task', () => {
const { container } = render(
<Layout
requestingTaskList={ false }
bothTaskListsHidden={ false }
query={ {
task: 'products',
} }
updateOptions={ () => {} }
/>
);
// Expect that we're NOT rendering the "full" home screen (with columns).
const columns = container.querySelector(
'.woocommerce-homescreen-column'
);
expect( columns ).toBeNull();
// Expect that the <TaskList /> is there though.
const taskList = screen.queryByText( '[TaskList]' );
expect( taskList ).toBeDefined();
} );
it( 'should not show TaskList when user has hidden', () => {
render(
<Layout
requestingTaskList={ false }
bothTaskListsHidden
query={ {} }
updateOptions={ () => {} }
/>
);
const taskList = screen.queryByText( '[TaskList]' );
expect( taskList ).toBeNull();
} );
it( 'should show QuickLinks when user has hidden TaskList', () => {
render(
<Layout
requestingTaskList={ false }
bothTaskListsHidden
query={ {} }
updateOptions={ () => {} }
/>
);
const quickLinks = screen.queryByText( '[QuickLinks]' );
expect( quickLinks ).toBeDefined();
} );
it( 'should show QuickLinks when TaskList is complete', () => {
render(
<Layout
requestingTaskList={ false }
bothTaskListsHidden={ false }
query={ {} }
updateOptions={ () => {} }
/>
);
const quickLinks = screen.queryByText( '[QuickLinks]' );
expect( quickLinks ).toBeDefined();
} );
it( 'should default to layout option value', () => {
useUserPreferences.mockReturnValue( {
homepage_layout: '',
} );
const { container } = render(
<Layout
defaultHomescreenLayout="two_columns"
requestingTaskList={ false }
bothTaskListsHidden={ false }
query={ {} }
updateOptions={ () => {} }
/>
);
// Expect that we're rendering the two-column home screen.
// The user doesn't have a preference set, but the component received a prop
// defaulting to the two column view.
expect(
container.getElementsByClassName(
'woocommerce-homescreen two-columns'
)
).toHaveLength( 1 );
} );
it( 'should falback to single column layout', () => {
useUserPreferences.mockReturnValue( {
homepage_layout: '',
} );
const { container } = render(
<Layout
requestingTaskList={ false }
bothTaskListsHidden={ false }
query={ {} }
updateOptions={ () => {} }
/>
);
// Expect that we're rendering the single column home screen.
// If a default layout prop isn't specified, the default falls back to single column view.
const homescreen = container.getElementsByClassName(
'woocommerce-homescreen'
);
expect( homescreen ).toHaveLength( 1 );
expect( homescreen[ 0 ] ).not.toHaveClass( 'two-columns' );
} );
it( 'switches to two column layout based on user preference', () => {
useUserPreferences.mockReturnValue( {
homepage_layout: 'two_columns',
} );
const { container } = render(
<Layout
requestingTaskList={ false }
bothTaskListsHidden={ false }
query={ {} }
updateOptions={ () => {} }
/>
);
// Expect that we're rendering the two-column home screen.
expect(
container.getElementsByClassName(
'woocommerce-homescreen two-columns'
)
).toHaveLength( 1 );
} );
} );