2023-02-26 18:23:11 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import { render, screen } from '@testing-library/react';
|
|
|
|
import userEvent from '@testing-library/user-event';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import { useCampaigns } from './useCampaigns';
|
2023-03-02 19:25:00 +00:00
|
|
|
import { useNewCampaignTypes } from '~/marketing/hooks';
|
2023-02-26 18:23:11 +00:00
|
|
|
import { Campaigns } from './Campaigns';
|
|
|
|
|
|
|
|
jest.mock( './useCampaigns', () => ( {
|
|
|
|
useCampaigns: jest.fn(),
|
|
|
|
} ) );
|
|
|
|
|
2023-03-02 19:25:00 +00:00
|
|
|
jest.mock( '~/marketing/hooks', () => ( {
|
|
|
|
useNewCampaignTypes: jest.fn(),
|
|
|
|
} ) );
|
|
|
|
|
|
|
|
jest.mock( './CreateNewCampaignModal', () => ( {
|
|
|
|
CreateNewCampaignModal: () => <div>Create a new campaign</div>,
|
|
|
|
} ) );
|
|
|
|
|
2023-02-28 15:51:20 +00:00
|
|
|
/**
|
|
|
|
* Create a test campaign data object.
|
|
|
|
*/
|
|
|
|
const createTestCampaign = ( programId: string ) => {
|
|
|
|
return {
|
|
|
|
id: `google-listings-and-ads|${ programId }`,
|
|
|
|
title: `Campaign ${ programId }`,
|
|
|
|
description: '',
|
|
|
|
cost: `USD 30`,
|
|
|
|
manageUrl: `https://wc1.test/wp-admin/admin.php?page=wc-admin&path=/google/dashboard&subpath=/campaigns/edit&programId=${ programId }`,
|
|
|
|
icon: 'https://woocommerce.com/wp-content/uploads/2021/06/woo-GoogleListingsAds-jworee.png',
|
|
|
|
channelName: 'Google Listings and Ads',
|
|
|
|
channelSlug: 'google-listings-and-ads',
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-02-26 18:23:11 +00:00
|
|
|
describe( 'Campaigns component', () => {
|
|
|
|
it( 'renders a TablePlaceholder when loading is in progress', () => {
|
|
|
|
( useCampaigns as jest.Mock ).mockReturnValue( {
|
|
|
|
loading: true,
|
|
|
|
error: undefined,
|
|
|
|
data: undefined,
|
|
|
|
meta: undefined,
|
|
|
|
} );
|
2023-03-02 19:25:00 +00:00
|
|
|
( useNewCampaignTypes as jest.Mock ).mockReturnValue( {
|
|
|
|
loading: true,
|
|
|
|
} );
|
2023-02-26 18:23:11 +00:00
|
|
|
|
|
|
|
const { container } = render( <Campaigns /> );
|
|
|
|
const tablePlaceholder = container.querySelector(
|
|
|
|
'div.woocommerce-table__table.is-loading'
|
|
|
|
);
|
|
|
|
|
|
|
|
expect( tablePlaceholder ).toBeInTheDocument();
|
|
|
|
} );
|
|
|
|
|
|
|
|
it( 'renders an error message when loading is done and data is undefined', () => {
|
|
|
|
( useCampaigns as jest.Mock ).mockReturnValue( {
|
|
|
|
loading: false,
|
|
|
|
error: {},
|
|
|
|
data: undefined,
|
|
|
|
meta: undefined,
|
|
|
|
} );
|
2023-03-02 19:25:00 +00:00
|
|
|
( useNewCampaignTypes as jest.Mock ).mockReturnValue( {
|
|
|
|
loading: false,
|
|
|
|
} );
|
2023-02-26 18:23:11 +00:00
|
|
|
|
|
|
|
render( <Campaigns /> );
|
|
|
|
|
|
|
|
expect(
|
|
|
|
screen.getByText( 'An unexpected error occurred.' )
|
|
|
|
).toBeInTheDocument();
|
|
|
|
} );
|
|
|
|
|
|
|
|
it( 'renders an info message when loading is done and data is an empty array', () => {
|
|
|
|
( useCampaigns as jest.Mock ).mockReturnValue( {
|
|
|
|
loading: false,
|
|
|
|
error: undefined,
|
|
|
|
data: [],
|
|
|
|
meta: {
|
|
|
|
total: 0,
|
|
|
|
},
|
|
|
|
} );
|
2023-03-02 19:25:00 +00:00
|
|
|
( useNewCampaignTypes as jest.Mock ).mockReturnValue( {
|
|
|
|
loading: false,
|
|
|
|
} );
|
2023-02-26 18:23:11 +00:00
|
|
|
|
|
|
|
render( <Campaigns /> );
|
|
|
|
|
|
|
|
expect(
|
|
|
|
screen.getByText( 'Advertise with marketing campaigns' )
|
|
|
|
).toBeInTheDocument();
|
|
|
|
} );
|
|
|
|
|
|
|
|
it( 'renders a table with campaign info and without pagination when loading is done and data is an array with length no more than page size', () => {
|
|
|
|
( useCampaigns as jest.Mock ).mockReturnValue( {
|
|
|
|
loading: false,
|
|
|
|
error: undefined,
|
2023-02-28 15:51:20 +00:00
|
|
|
data: [ createTestCampaign( '1' ) ],
|
2023-02-26 18:23:11 +00:00
|
|
|
meta: {
|
|
|
|
total: 1,
|
|
|
|
},
|
|
|
|
} );
|
2023-03-02 19:25:00 +00:00
|
|
|
( useNewCampaignTypes as jest.Mock ).mockReturnValue( {
|
|
|
|
loading: false,
|
|
|
|
} );
|
2023-02-26 18:23:11 +00:00
|
|
|
|
|
|
|
const { container } = render( <Campaigns /> );
|
|
|
|
|
2023-02-28 15:51:20 +00:00
|
|
|
expect( screen.getByText( 'Campaign 1' ) ).toBeInTheDocument();
|
|
|
|
expect( screen.getByText( 'USD 30' ) ).toBeInTheDocument();
|
2023-02-26 18:23:11 +00:00
|
|
|
|
|
|
|
const pagination = container.querySelector( '.woocommerce-pagination' );
|
|
|
|
expect( pagination ).not.toBeInTheDocument();
|
|
|
|
} );
|
|
|
|
|
|
|
|
it( 'renders a table with campaign info and with pagination when loading is done and data is an array with length more than page size', async () => {
|
|
|
|
( useCampaigns as jest.Mock ).mockReturnValue( {
|
|
|
|
loading: false,
|
|
|
|
error: undefined,
|
|
|
|
data: [
|
2023-02-28 15:51:20 +00:00
|
|
|
createTestCampaign( '1' ),
|
|
|
|
createTestCampaign( '2' ),
|
|
|
|
createTestCampaign( '3' ),
|
|
|
|
createTestCampaign( '4' ),
|
|
|
|
createTestCampaign( '5' ),
|
|
|
|
createTestCampaign( '6' ),
|
2023-02-26 18:23:11 +00:00
|
|
|
],
|
|
|
|
meta: {
|
|
|
|
total: 6,
|
|
|
|
},
|
|
|
|
} );
|
2023-03-02 19:25:00 +00:00
|
|
|
( useNewCampaignTypes as jest.Mock ).mockReturnValue( {
|
|
|
|
loading: false,
|
|
|
|
} );
|
2023-02-26 18:23:11 +00:00
|
|
|
|
|
|
|
render( <Campaigns /> );
|
|
|
|
|
|
|
|
// Campaign info.
|
2023-02-28 15:51:20 +00:00
|
|
|
expect( screen.getByText( 'Campaign 1' ) ).toBeInTheDocument();
|
2023-02-26 18:23:11 +00:00
|
|
|
|
|
|
|
// Pagination.
|
|
|
|
expect( screen.getByText( 'Page 1 of 2' ) ).toBeInTheDocument();
|
|
|
|
|
|
|
|
// Click on the next button to go to next page.
|
|
|
|
await userEvent.click(
|
|
|
|
screen.getByRole( 'button', { name: 'Next Page' } )
|
|
|
|
);
|
|
|
|
|
|
|
|
// Campaign info in the second page.
|
2023-02-28 15:51:20 +00:00
|
|
|
expect( screen.getByText( 'Campaign 6' ) ).toBeInTheDocument();
|
2023-02-26 18:23:11 +00:00
|
|
|
} );
|
2023-03-02 19:25:00 +00:00
|
|
|
|
|
|
|
it( 'renders a "Create new campaign" button in the card header, and upon clicking, displays the "Create a new campaign" modal', async () => {
|
|
|
|
( useCampaigns as jest.Mock ).mockReturnValue( {
|
|
|
|
loading: false,
|
|
|
|
error: undefined,
|
|
|
|
data: [ createTestCampaign( '1' ) ],
|
|
|
|
meta: {
|
|
|
|
total: 1,
|
|
|
|
},
|
|
|
|
} );
|
|
|
|
( useNewCampaignTypes as jest.Mock ).mockReturnValue( {
|
|
|
|
loading: false,
|
|
|
|
} );
|
|
|
|
|
|
|
|
render( <Campaigns /> );
|
|
|
|
|
|
|
|
expect( screen.getByText( 'Create new campaign' ) ).toBeInTheDocument();
|
|
|
|
|
|
|
|
await userEvent.click(
|
|
|
|
screen.getByRole( 'button', { name: 'Create new campaign' } )
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(
|
|
|
|
screen.getByText( 'Create a new campaign' )
|
|
|
|
).toBeInTheDocument();
|
|
|
|
} );
|
2023-02-26 18:23:11 +00:00
|
|
|
} );
|