woocommerce/plugins/woocommerce-blocks/tests/utils/shopper.js

298 lines
7.9 KiB
JavaScript
Raw Normal View History

/**
* External dependencies
*/
import {
shopper as wcShopper,
uiUnblocked,
SHOP_CART_PAGE,
} from '@woocommerce/e2e-utils';
/**
* Internal dependencies
*/
import { BASE_URL } from '../e2e/utils';
export const shopper = {
...wcShopper,
// We use the .block property to avoid overriding any wcShopper functionality
// This is important as we might one day merge this into core WC.
block: {
// All block pages have a title composed of the block name followed by "Block".
// E.g. "Checkout Block or Mini Cart Block". The permalinks are generated from
// the page title so we can derive them directly
goToBlockPage: async ( blockName ) => {
const pageTitle = `${ blockName } Block`;
const url = BASE_URL + pageTitle.toLowerCase().replace( / /g, '-' );
await page.goto( url, {
waitUntil: 'networkidle0',
} );
await expect( page ).toMatchElement( 'h1', {
text: blockName,
} );
},
goToCart: async () => {
await shopper.block.goToBlockPage( 'Cart' );
},
goToCheckout: async () => {
await shopper.block.goToBlockPage( 'Checkout' );
},
productIsInCheckout: async ( productTitle, quantity, total ) => {
// Make sure Order summary is expanded
const [ button ] = await page.$x(
`//button[contains(@aria-expanded, 'false')]//span[contains(text(), 'Order summary')]`
);
if ( button ) {
await button.click();
}
await expect( page ).toMatchElement( 'span', {
text: productTitle,
} );
await expect(
page
).toMatchElement(
'div.wc-block-components-order-summary-item__quantity',
{ text: quantity }
);
await expect( page ).toMatchElement(
'span.wc-block-components-product-price__value',
{
text: total,
}
);
},
/**
* For some reason "wcShopper.emptyCart" sometimes result in an error, but using the same
* implementation here fixes the problem.
*/
emptyCart: async () => {
await page.goto( SHOP_CART_PAGE, {
waitUntil: 'networkidle0',
} );
// Remove products if they exist
if ( ( await page.$( '.remove' ) ) !== null ) {
let products = await page.$$( '.remove' );
while ( products && products.length > 0 ) {
await page.click( '.remove' );
await uiUnblocked();
products = await page.$$( '.remove' );
}
}
// Remove coupons if they exist
if ( ( await page.$( '.woocommerce-remove-coupon' ) ) !== null ) {
await page.click( '.woocommerce-remove-coupon' );
await uiUnblocked();
}
await page.waitForSelector( '.woocommerce-info' );
// eslint-disable-next-line jest/no-standalone-expect
await expect( page ).toMatchElement( '.woocommerce-info', {
text: 'Your cart is currently empty.',
} );
},
placeOrder: async () => {
await Promise.all( [
Critical flow: Can see correct tax (https://github.com/woocommerce/woocommerce-blocks/pull/5900) * Tax is displayed correctly e2e test * Add extra utils to shopper * add single e2e test script oin package.json * Feedback changes from Niels * Test tax is correct on summary page * Check if CI test passes * Longer timeout for tax test * change timeout in jest config * increate jest timeout * Test * Test * Test * setTimeout outside of tests to 120000 * Address raluca's feedback and timeout everywheregaa * Increase timeout on for search box * set jest timeout to 120000 * Raluca's suggestions * Debug * Increase search timeout to 5000 * Only run Tax e2e tests in CI for quicker debug - REMOVE THIS * use waitforSelector * 30s delay for toMatchElement * Let'shope this works * Remove toMatchElement * waitForSelector * Run debug test only * Debug tax test * debug taxes * shopper using toMatchElement again * Remove the 30000 timeout delay from toMatchElement * Run all tests but only once * Remove tax test * Revert "Remove tax test" This reverts commit 7db34120e1e91f4fd26514fdb9525cac2a6066bb. * Delete the minicart test * Revert "Revert "Remove tax test"" This reverts commit 31dd654e52f37fcd02ccd25336958248bef495c6. * Revert "Delete the minicart test" This reverts commit 5595f0834a975d097a300bc0c7cbf643caa8b764. * tax test * block addToCart * Put back block functions * Refactor block.addToCart * mini-cart e2e test uses shopper.block.emptyCart() * only run shopper tests in CI * Run frontend and shopper tests and change waitFor -> waitForTimeout * Run frontend tests in CI * Run CI e2e tests again * Skip legacy template blocks * Skip legacy template test but run all others * Switch to storefront instead of twentytwentyone after legacy-template-blocks tests finish * Tidy up * fix typo * Fix ESLint issue Co-authored-by: Saad Tarhi <saad.trh@gmail.com> Co-authored-by: Saad Tarhi <saad.tarhi@automattic.com>
2022-03-08 14:50:16 +00:00
expect( page ).toClick(
'.wc-block-components-checkout-place-order-button',
{
text: 'Place Order',
}
),
page.waitForNavigation( { waitUntil: 'networkidle0' } ),
] );
},
Critical flow: Can see correct tax (https://github.com/woocommerce/woocommerce-blocks/pull/5900) * Tax is displayed correctly e2e test * Add extra utils to shopper * add single e2e test script oin package.json * Feedback changes from Niels * Test tax is correct on summary page * Check if CI test passes * Longer timeout for tax test * change timeout in jest config * increate jest timeout * Test * Test * Test * setTimeout outside of tests to 120000 * Address raluca's feedback and timeout everywheregaa * Increase timeout on for search box * set jest timeout to 120000 * Raluca's suggestions * Debug * Increase search timeout to 5000 * Only run Tax e2e tests in CI for quicker debug - REMOVE THIS * use waitforSelector * 30s delay for toMatchElement * Let'shope this works * Remove toMatchElement * waitForSelector * Run debug test only * Debug tax test * debug taxes * shopper using toMatchElement again * Remove the 30000 timeout delay from toMatchElement * Run all tests but only once * Remove tax test * Revert "Remove tax test" This reverts commit 7db34120e1e91f4fd26514fdb9525cac2a6066bb. * Delete the minicart test * Revert "Revert "Remove tax test"" This reverts commit 31dd654e52f37fcd02ccd25336958248bef495c6. * Revert "Delete the minicart test" This reverts commit 5595f0834a975d097a300bc0c7cbf643caa8b764. * tax test * block addToCart * Put back block functions * Refactor block.addToCart * mini-cart e2e test uses shopper.block.emptyCart() * only run shopper tests in CI * Run frontend and shopper tests and change waitFor -> waitForTimeout * Run frontend tests in CI * Run CI e2e tests again * Skip legacy template blocks * Skip legacy template test but run all others * Switch to storefront instead of twentytwentyone after legacy-template-blocks tests finish * Tidy up * fix typo * Fix ESLint issue Co-authored-by: Saad Tarhi <saad.trh@gmail.com> Co-authored-by: Saad Tarhi <saad.tarhi@automattic.com>
2022-03-08 14:50:16 +00:00
/* We need to overwrite this function from wcShopper because clicking through to the
product doesn't work. There is a fix in https://github.com/woocommerce/woocommerce/pull/31915
We can delete this function once the PR is merged
*/
searchForProduct: async ( productname ) => {
const searchFieldSelector = '.wp-block-search__input';
await expect( page ).toMatchElement( searchFieldSelector );
// await page.waitForSelector( searchFieldSelector, { timeout: 5000 } );
await expect( page ).toFill( searchFieldSelector, productname );
await expect( page ).toClick( '.wp-block-search__button' );
// Single search results may go directly to product page
if ( await page.waitForSelector( 'h2.entry-title' ) ) {
await expect( page ).toMatchElement( 'h2.entry-title', {
text: productname,
} );
await expect( page ).toClick( 'h2.entry-title > a', {
text: productname,
} );
}
await page.waitForSelector( 'h1.entry-title' );
await expect( page.title() ).resolves.toMatch( productname );
await expect( page ).toMatchElement(
'h1.entry-title',
productname
);
},
addCoupon: async ( couponCode ) => {
const title = await page.title();
if ( ! title.includes( 'Cart Block' ) ) {
await shopper.block.goToCart();
Critical flow: Can see correct tax (https://github.com/woocommerce/woocommerce-blocks/pull/5900) * Tax is displayed correctly e2e test * Add extra utils to shopper * add single e2e test script oin package.json * Feedback changes from Niels * Test tax is correct on summary page * Check if CI test passes * Longer timeout for tax test * change timeout in jest config * increate jest timeout * Test * Test * Test * setTimeout outside of tests to 120000 * Address raluca's feedback and timeout everywheregaa * Increase timeout on for search box * set jest timeout to 120000 * Raluca's suggestions * Debug * Increase search timeout to 5000 * Only run Tax e2e tests in CI for quicker debug - REMOVE THIS * use waitforSelector * 30s delay for toMatchElement * Let'shope this works * Remove toMatchElement * waitForSelector * Run debug test only * Debug tax test * debug taxes * shopper using toMatchElement again * Remove the 30000 timeout delay from toMatchElement * Run all tests but only once * Remove tax test * Revert "Remove tax test" This reverts commit 7db34120e1e91f4fd26514fdb9525cac2a6066bb. * Delete the minicart test * Revert "Revert "Remove tax test"" This reverts commit 31dd654e52f37fcd02ccd25336958248bef495c6. * Revert "Delete the minicart test" This reverts commit 5595f0834a975d097a300bc0c7cbf643caa8b764. * tax test * block addToCart * Put back block functions * Refactor block.addToCart * mini-cart e2e test uses shopper.block.emptyCart() * only run shopper tests in CI * Run frontend and shopper tests and change waitFor -> waitForTimeout * Run frontend tests in CI * Run CI e2e tests again * Skip legacy template blocks * Skip legacy template test but run all others * Switch to storefront instead of twentytwentyone after legacy-template-blocks tests finish * Tidy up * fix typo * Fix ESLint issue Co-authored-by: Saad Tarhi <saad.trh@gmail.com> Co-authored-by: Saad Tarhi <saad.tarhi@automattic.com>
2022-03-08 14:50:16 +00:00
}
// Make sure the coupon panel is open
const applyButton = await page.$(
'.wc-block-components-totals-coupon__button'
);
if ( ! applyButton ) {
await page.click( '.wc-block-components-panel__button' );
}
await page.type(
'.wc-block-components-totals-coupon__input input',
couponCode
);
await page.click( '.wc-block-components-totals-coupon__button' );
await expect( page ).toMatchElement(
'.wc-block-components-chip__text',
{
text: couponCode,
}
);
},
fillInCheckoutWithTestData: async () => {
const shippingOrBilling = ( await page.$( '#shipping-first_name' ) )
? 'shipping'
: 'billing';
const testData = {
first_name: 'John',
last_name: 'Doe',
shipping_address_1: '123 Easy Street',
country: 'United States (US)',
city: 'New York',
state: 'New York',
postcode: '90210',
};
await shopper.block.fillInCheckoutAddress(
testData,
shippingOrBilling
);
},
fillInCheckoutAddress: async (
address,
shippingOrBilling = 'shipping'
) => {
await expect( page ).toFill(
`#${ shippingOrBilling }-first_name`,
address.first_name
);
await expect( page ).toFill(
`#${ shippingOrBilling }-first_name`,
address.first_name
);
await expect( page ).toFill(
`#${ shippingOrBilling }-last_name`,
address.last_name
);
await expect( page ).toFill(
`#${ shippingOrBilling }-address_1`,
address.shipping_address_1
);
await expect( page ).toFill(
`#${ shippingOrBilling }-country input`,
address.country
);
await expect( page ).toFill(
`#${ shippingOrBilling }-city`,
address.city
);
await expect( page ).toFill(
`#${ shippingOrBilling }-state input`,
address.state
);
await expect( page ).toFill(
`#${ shippingOrBilling }-postcode`,
address.postcode
);
},
fillBillingDetails: async ( customerBillingDetails ) => {
await expect( page ).toFill(
'#billing-first_name',
customerBillingDetails.firstname
);
await expect( page ).toFill(
'#billing-last_name',
customerBillingDetails.lastname
);
await expect( page ).toFill(
'#components-form-token-input-0',
customerBillingDetails.country
);
await expect( page ).toFill(
'#billing-address_1',
customerBillingDetails.addressfirstline
);
await expect( page ).toFill(
'#billing-address_2',
customerBillingDetails.addresssecondline
);
await expect( page ).toFill(
'#billing-city',
customerBillingDetails.city
);
await expect( page ).toFill(
'#components-form-token-input-2',
customerBillingDetails.state
);
await expect( page ).toFill(
'#billing-postcode',
customerBillingDetails.postcode
);
await expect( page ).toFill(
'#phone',
customerBillingDetails.phone
);
await expect( page ).toFill(
'#email',
customerBillingDetails.email
);
},
/**
* Instead of using the permalink to go to checkout (e.g. "shopper.block.goToCheckout"),
* with this method we actually click on the "Proceed to Checkout" button
*/
proceedToCheckout: async () => {
await Promise.all( [
expect( page ).toClick( 'a.wc-block-cart__submit-button', {
text: 'Proceed to Checkout',
} ),
page.waitForNavigation( { waitUntil: 'networkidle0' } ),
] );
},
selectAndVerifyShippingOption: async (
shippingName,
shippingPrice
) => {
await expect( page ).toClick(
'.wc-block-components-radio-control__label',
{
text: shippingName,
}
);
await page.waitForTimeout( 1000 );
await expect( page ).toMatchElement(
'.wc-block-components-totals-shipping .wc-block-formatted-money-amount',
{
text: shippingPrice,
}
);
},
},
};