2020-06-10 18:21:34 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import { render, screen, waitFor } from '@testing-library/react';
|
|
|
|
import { previewCart } from '@woocommerce/resource-previews';
|
|
|
|
import { dispatch } from '@wordpress/data';
|
|
|
|
import { CART_STORE_KEY as storeKey } from '@woocommerce/block-data';
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import CartBlock from '../block';
|
|
|
|
import { defaultCartState } from '../../../../data/default-states';
|
|
|
|
|
|
|
|
describe( 'Testing cart', () => {
|
|
|
|
beforeEach( async () => {
|
2020-07-02 19:10:19 +00:00
|
|
|
fetchMock.mockResponse( ( req ) => {
|
2020-06-10 18:21:34 +00:00
|
|
|
if ( req.url.match( /wc\/store\/cart/ ) ) {
|
|
|
|
return Promise.resolve( JSON.stringify( previewCart ) );
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
// need to clear the store resolution state between tests.
|
|
|
|
await dispatch( storeKey ).invalidateResolutionForStore();
|
2021-02-04 17:05:47 +00:00
|
|
|
await dispatch( storeKey ).receiveCart( defaultCartState.cartData );
|
2020-06-10 18:21:34 +00:00
|
|
|
} );
|
2020-07-02 19:10:19 +00:00
|
|
|
afterEach( () => {
|
|
|
|
fetchMock.resetMocks();
|
|
|
|
} );
|
2020-06-10 18:21:34 +00:00
|
|
|
it( 'renders cart if there are items in the cart', async () => {
|
|
|
|
render(
|
|
|
|
<CartBlock
|
|
|
|
emptyCart={ null }
|
|
|
|
attributes={ {
|
|
|
|
isShippingCalculatorEnabled: false,
|
|
|
|
} }
|
|
|
|
/>
|
|
|
|
);
|
2020-07-02 19:10:19 +00:00
|
|
|
await waitFor( () => expect( fetchMock ).toHaveBeenCalled() );
|
|
|
|
expect(
|
2020-09-26 21:59:51 +00:00
|
|
|
screen.getByText( /Proceed to Checkout/i )
|
2020-07-02 19:10:19 +00:00
|
|
|
).toBeInTheDocument();
|
|
|
|
|
2020-10-27 14:37:18 +00:00
|
|
|
expect( fetchMock ).toHaveBeenCalledTimes( 1 );
|
2020-06-10 18:21:34 +00:00
|
|
|
} );
|
|
|
|
it( 'renders empty cart if there are no items in the cart', async () => {
|
2020-07-02 19:10:19 +00:00
|
|
|
fetchMock.mockResponse( ( req ) => {
|
2020-06-10 18:21:34 +00:00
|
|
|
if ( req.url.match( /wc\/store\/cart/ ) ) {
|
2021-02-04 17:05:47 +00:00
|
|
|
return Promise.resolve(
|
|
|
|
JSON.stringify( defaultCartState.cartData )
|
|
|
|
);
|
2020-06-10 18:21:34 +00:00
|
|
|
}
|
|
|
|
} );
|
|
|
|
render(
|
|
|
|
<CartBlock
|
|
|
|
emptyCart={ '<div>Empty Cart</div>' }
|
|
|
|
attributes={ {
|
|
|
|
isShippingCalculatorEnabled: false,
|
|
|
|
} }
|
|
|
|
/>
|
|
|
|
);
|
2020-07-02 19:10:19 +00:00
|
|
|
|
|
|
|
await waitFor( () => expect( fetchMock ).toHaveBeenCalled() );
|
2020-09-26 21:59:51 +00:00
|
|
|
expect( screen.getByText( /Empty Cart/i ) ).toBeInTheDocument();
|
2020-07-02 19:10:19 +00:00
|
|
|
expect( fetchMock ).toHaveBeenCalledTimes( 1 );
|
2020-06-10 18:21:34 +00:00
|
|
|
} );
|
|
|
|
} );
|