/** * @jest-environment jsdom */ // @ts-nocheck - TODO: Fix TypeScript issues import { render, screen, waitFor } from '@testing-library/react'; import { dispatch } from '@wordpress/data'; import useCartKey from 'calypso/my-sites/checkout/use-cart-key'; import { isMarketplaceProduct } from 'calypso/state/products-list/selectors'; import { getDomainsBySiteId, hasLoadedSiteDomains } from 'calypso/state/sites/domains/selectors'; import { getPlansBySiteId } from 'calypso/state/sites/plans/selectors/get-plans-by-site'; import { isJetpackSite } from 'calypso/state/sites/selectors'; import { CHECKOUT_STORE } from '../lib/wpcom-store'; import { mockSetCartEndpointWith, getActivePersonalPlanDataForType, countryList, getBasicCart, mockMatchMediaOnWindow, mockGetPaymentMethodsEndpoint, mockLogStashEndpoint, mockGetVatInfoEndpoint, mockGetSupportedCountriesEndpoint, } from './util'; import { MockCheckout } from './util/mock-checkout'; /* eslint-disable jest/no-conditional-expect */ jest.mock( 'calypso/state/sites/selectors' ); jest.mock( 'calypso/state/sites/domains/selectors' ); jest.mock( 'calypso/state/selectors/is-site-automated-transfer' ); jest.mock( 'calypso/state/sites/plans/selectors/get-plans-by-site' ); jest.mock( 'calypso/my-sites/checkout/use-cart-key' ); jest.mock( 'calypso/lib/analytics/utils/refresh-country-code-cookie-gdpr' ); jest.mock( 'calypso/state/products-list/selectors/is-marketplace-product' ); jest.mock( 'calypso/lib/navigate' ); describe( 'Checkout payment methods list', () => { const initialCart = getBasicCart(); const mainCartKey = 123456; const mockSetCartEndpoint = mockSetCartEndpointWith( { currency: initialCart.currency, locale: initialCart.locale, } ); beforeEach( () => { dispatch( CHECKOUT_STORE ).reset(); jest.clearAllMocks(); getPlansBySiteId.mockImplementation( () => ( { data: getActivePersonalPlanDataForType( 'yearly' ), } ) ); hasLoadedSiteDomains.mockImplementation( () => true ); getDomainsBySiteId.mockImplementation( () => [] ); isMarketplaceProduct.mockImplementation( () => false ); isJetpackSite.mockImplementation( () => false ); ( useCartKey as jest.Mock ).mockImplementation( () => mainCartKey ); mockGetPaymentMethodsEndpoint( [] ); mockLogStashEndpoint(); mockGetVatInfoEndpoint( {} ); mockGetSupportedCountriesEndpoint( countryList ); mockMatchMediaOnWindow(); } ); it( 'renders the paypal payment method option', async () => { render( ); await waitFor( () => { expect( screen.getByText( 'PayPal' ) ).toBeInTheDocument(); } ); } ); it( 'does not render the full credits payment method option when no credits are available', async () => { render( ); await waitFor( () => { expect( screen.queryByText( /WordPress.com Credits:/ ) ).not.toBeInTheDocument(); } ); } ); it( 'does not render the full credits payment method option when partial credits are available', async () => { const cartChanges = { credits_integer: 15400 }; render( ); await waitFor( () => { expect( screen.queryByText( /WordPress.com Credits:/ ) ).not.toBeInTheDocument(); } ); } ); it( 'renders the paypal payment method option when partial credits are available', async () => { const cartChanges = { credits_integer: 15400 }; render( ); await waitFor( () => { expect( screen.getByText( 'PayPal' ) ).toBeInTheDocument(); } ); } ); it( 'renders the full credits payment method option when full credits are available', async () => { const cartChanges = { credits_integer: 15600, total_tax_integer: 0, total_cost_integer: 0, }; render( ); await waitFor( () => { expect( screen.getByText( 'Assign a payment method later' ) ).toBeInTheDocument(); } ); } ); it( 'renders the full credits payment method option when a coupon has made the purchase free for a one-time purchase', async () => { const cartChanges = { coupon: 'FREE', sub_total_integer: 0, credits_integer: 0, total_tax_integer: 0, total_cost_integer: 0, products: [ { ...initialCart.products[ 0 ], is_one_time_purchase: true, }, ], }; render( ); await waitFor( () => { expect( screen.getByText( 'Free Purchase' ) ).toBeInTheDocument(); } ); } ); it( 'renders the full credits payment method option when full credits are available for a one-time purchase', async () => { const cartChanges = { credits_integer: 15600, total_tax_integer: 0, total_cost_integer: 0, products: [ { ...initialCart.products[ 0 ], is_one_time_purchase: true, }, ], }; render( ); await waitFor( () => { expect( screen.getByText( /WordPress.com Credits/ ) ).toBeInTheDocument(); } ); } ); it( 'renders the full credits payment method option when full credits are available for a renewal with a saved payment method', async () => { const cartChanges = { credits_integer: 15600, total_tax_integer: 0, total_cost_integer: 0, products: [ { ...initialCart.products[ 0 ], is_renewal: true, is_renewal_and_will_auto_renew: true, }, ], }; render( ); await waitFor( () => { expect( screen.getByText( /WordPress.com Credits/ ) ).toBeInTheDocument(); } ); } ); it( 'renders the full credits payment method option when full credits are available for a renewal without a saved payment method', async () => { const cartChanges = { credits_integer: 15600, total_tax_integer: 0, total_cost_integer: 0, products: [ { ...initialCart.products[ 0 ], is_renewal: true, is_renewal_and_will_auto_renew: false, }, ], }; render( ); await waitFor( () => { expect( screen.getByText( 'Assign a payment method later' ) ).toBeInTheDocument(); } ); } ); it( 'does not render the other payment method options when full credits are available', async () => { const cartChanges = { credits_integer: 15600, total_tax_integer: 0, total_cost_integer: 0, }; render( ); await waitFor( () => { expect( screen.queryByText( 'PayPal' ) ).not.toBeInTheDocument(); } ); } ); it( 'does not render the free payment method option when the purchase is not free', async () => { render( ); await waitFor( () => { expect( screen.queryByText( 'Free Purchase' ) ).not.toBeInTheDocument(); expect( screen.queryByText( 'Assign a payment method later' ) ).not.toBeInTheDocument(); } ); } ); it( 'does not render the paypal payment method option when the purchase is free', async () => { const cartChanges = { total_cost_integer: 0 }; render( ); await waitFor( () => { expect( screen.queryByText( 'PayPal' ) ).not.toBeInTheDocument(); } ); } ); it( 'does not render the full credits payment method option when full credits are available but the purchase is free', async () => { const cartChanges = { total_tax_integer: 0, total_cost_integer: 0, credits_integer: 15600, }; render( ); await waitFor( () => { expect( screen.queryByText( /WordPress.com Credits:/ ) ).not.toBeInTheDocument(); } ); } ); it( 'renders the free payment method option when the purchase is free', async () => { const cartChanges = { total_cost_integer: 0 }; render( ); await waitFor( () => { expect( screen.getByText( 'Assign a payment method later' ) ).toBeInTheDocument(); } ); } ); it( 'does not render the contact step when the purchase is free', async () => { const cartChanges = { total_cost_integer: 0 }; render( ); await waitFor( () => { expect( screen.queryByText( /Enter your (billing|contact) information/ ) ).not.toBeInTheDocument(); } ); } ); } );