/** * External dependencies */ import TestRenderer from 'react-test-renderer'; /** * Internal dependencies */ import withProductVariations from '../with-product-variations'; import * as mockUtils from '../../components/utils'; import * as mockBaseUtils from '../../base/utils/errors'; jest.mock( '../../components/utils', () => ( { getProductVariations: jest.fn(), } ) ); jest.mock( '../../base/utils/errors', () => ( { formatError: jest.fn(), } ) ); const mockProducts = [ { id: 1, name: 'Hoodie', variations: [ 3, 4 ] }, { id: 2, name: 'Backpack' }, ]; const mockVariations = [ { id: 3, name: 'Blue' }, { id: 4, name: 'Red' } ]; const TestComponent = withProductVariations( ( props ) => { return (
); } ); const render = () => { return TestRenderer.create( ); }; describe( 'withProductVariations Component', () => { let renderer; afterEach( () => { mockUtils.getProductVariations.mockReset(); } ); describe( 'lifecycle events', () => { beforeEach( () => { mockUtils.getProductVariations.mockImplementation( () => Promise.resolve( mockVariations ) ); } ); it( 'getProductVariations is called on mount', () => { renderer = render(); const { getProductVariations } = mockUtils; expect( getProductVariations ).toHaveBeenCalledWith( 1 ); expect( getProductVariations ).toHaveBeenCalledTimes( 1 ); } ); it( 'getProductVariations is called on component update', () => { renderer = TestRenderer.create( ); const { getProductVariations } = mockUtils; expect( getProductVariations ).toHaveBeenCalledTimes( 0 ); renderer.update( ); expect( getProductVariations ).toHaveBeenCalledWith( 1 ); expect( getProductVariations ).toHaveBeenCalledTimes( 1 ); } ); it( 'getProductVariations is not called if selected product has no variations', () => { TestRenderer.create( ); const { getProductVariations } = mockUtils; expect( getProductVariations ).toHaveBeenCalledTimes( 0 ); } ); it( 'getProductVariations is called if selected product is a variation', () => { TestRenderer.create( ); const { getProductVariations } = mockUtils; expect( getProductVariations ).toHaveBeenCalledWith( 1 ); expect( getProductVariations ).toHaveBeenCalledTimes( 1 ); } ); } ); describe( 'when the API returns variations data', () => { beforeEach( () => { mockUtils.getProductVariations.mockImplementation( () => Promise.resolve( mockVariations ) ); renderer = render(); } ); it( 'sets the variations props', () => { const props = renderer.root.findByType( 'div' ).props; const expectedVariations = { 1: [ { id: 3, name: 'Blue', parent: 1 }, { id: 4, name: 'Red', parent: 1 }, ], }; expect( props.error ).toBeNull(); expect( props.isLoading ).toBe( false ); expect( props.variations ).toEqual( expectedVariations ); } ); } ); describe( 'when the API returns an error', () => { const error = { message: 'There was an error.' }; const getProductVariationsPromise = Promise.reject( error ); const formattedError = { message: 'There was an error.', type: 'api' }; beforeEach( () => { mockUtils.getProductVariations.mockImplementation( () => getProductVariationsPromise ); mockBaseUtils.formatError.mockImplementation( () => formattedError ); renderer = render(); } ); test( 'sets the error prop', async () => { await expect( () => getProductVariationsPromise() ).toThrow(); const { formatError } = mockBaseUtils; const props = renderer.root.findByType( 'div' ).props; expect( formatError ).toHaveBeenCalledWith( error ); expect( formatError ).toHaveBeenCalledTimes( 1 ); expect( props.error ).toEqual( formattedError ); expect( props.isLoading ).toBe( false ); expect( props.variations ).toEqual( { 1: null } ); } ); } ); } );