mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
Set checkout page before block/classic tests
This commit is contained in:
parent
e2e2897714
commit
54e740e396
5 changed files with 98 additions and 57 deletions
|
@ -3,8 +3,10 @@ PPCP_E2E_WP_DIR=${ROOT_DIR}/.ddev/wordpress
|
|||
BASEURL="https://woocommerce-paypal-payments.ddev.site"
|
||||
|
||||
CHECKOUT_URL="/checkout"
|
||||
CHECKOUT_PAGE_ID=7
|
||||
CART_URL="/cart"
|
||||
BLOCK_CHECKOUT_URL="/checkout-block"
|
||||
BLOCK_CHECKOUT_PAGE_ID=22
|
||||
BLOCK_CART_URL="/cart-block"
|
||||
|
||||
PRODUCT_URL="/product/prod"
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
"prearchive": "rm -rf $npm_package_name.zip",
|
||||
"archive": "zip -r $npm_package_name.zip . -x **.git/\\* **node_modules/\\*",
|
||||
"postarchive": "yarn run archive:cleanup && rm -rf $npm_package_name && unzip $npm_package_name.zip -d $npm_package_name && rm $npm_package_name.zip && zip -r $npm_package_name.zip $npm_package_name && rm -rf $npm_package_name",
|
||||
"archive:cleanup": "zip -d $npm_package_name.zip .env* .ddev/\\* \\*.idea/\\* .editorconfig tests/\\* .github/\\* .psalm/\\* wordpress_org_assets/\\* \\*.DS_Store \\*README.md \\*.gitattributes \\*.gitignore \\*composer.json \\*composer.lock patchwork.json phpunit.xml.dist .phpunit.result.cache phpcs.xml* psalm*.xml* playwright.config.js \\*.babelrc \\*package.json \\*webpack.config.js \\*yarn.lock \\*.travis.yml\\"
|
||||
"archive:cleanup": "zip -d $npm_package_name.zip .env* .ddev/\\* \\*.idea/\\* .editorconfig tests/\\* .github/\\* .psalm/\\* wordpress_org_assets/\\* \\*.DS_Store \\*README.md \\*.gitattributes \\*.gitignore \\*composer.json \\*composer.lock patchwork.json phpunit.xml.dist .phpunit.result.cache phpcs.xml* psalm*.xml* playwright.config.js wp-cli.yml \\*.babelrc \\*package.json \\*webpack.config.js \\*yarn.lock \\*.travis.yml\\"
|
||||
},
|
||||
"config": {
|
||||
"wp_org_slug": "woocommerce-paypal-payments"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
const {test, expect} = require('@playwright/test');
|
||||
const {serverExec} = require("./utils/server");
|
||||
|
||||
const {
|
||||
CUSTOMER_EMAIL,
|
||||
|
@ -9,8 +10,10 @@ const {
|
|||
PRODUCT_URL,
|
||||
PRODUCT_ID,
|
||||
CHECKOUT_URL,
|
||||
CHECKOUT_PAGE_ID,
|
||||
CART_URL,
|
||||
BLOCK_CHECKOUT_URL,
|
||||
BLOCK_CHECKOUT_PAGE_ID,
|
||||
BLOCK_CART_URL,
|
||||
} = process.env;
|
||||
|
||||
|
@ -91,8 +94,12 @@ async function completeBlockContinuation(page) {
|
|||
await expectOrderReceivedPage(page);
|
||||
}
|
||||
|
||||
test('PayPal button place order from Product page', async ({page}) => {
|
||||
test.describe('Classic checkout', () => {
|
||||
test.beforeAll(async ({ browser }) => {
|
||||
await serverExec('wp option update woocommerce_checkout_page_id ' + CHECKOUT_PAGE_ID);
|
||||
});
|
||||
|
||||
test('PayPal button place order from Product page', async ({page}) => {
|
||||
await page.goto(PRODUCT_URL);
|
||||
|
||||
const popup = await openPaypalPopup(page);
|
||||
|
@ -109,10 +116,9 @@ test('PayPal button place order from Product page', async ({page}) => {
|
|||
]);
|
||||
|
||||
await expectOrderReceivedPage(page);
|
||||
});
|
||||
|
||||
test('Advanced Credit and Debit Card (ACDC) place order from Checkout page', async ({page}) => {
|
||||
});
|
||||
|
||||
test('Advanced Credit and Debit Card (ACDC) place order from Checkout page', async ({page}) => {
|
||||
await page.goto(PRODUCT_URL);
|
||||
await page.locator('.single_add_to_cart_button').click();
|
||||
|
||||
|
@ -136,10 +142,15 @@ test('Advanced Credit and Debit Card (ACDC) place order from Checkout page', asy
|
|||
]);
|
||||
|
||||
await expectOrderReceivedPage(page);
|
||||
});
|
||||
});
|
||||
|
||||
test('PayPal express block checkout', async ({page}) => {
|
||||
test.describe('Block checkout', () => {
|
||||
test.beforeAll(async ({browser}) => {
|
||||
await serverExec('wp option update woocommerce_checkout_page_id ' + BLOCK_CHECKOUT_PAGE_ID);
|
||||
});
|
||||
|
||||
test('PayPal express block checkout', async ({page}) => {
|
||||
await page.goto('?add-to-cart=' + PRODUCT_ID);
|
||||
|
||||
await page.goto(BLOCK_CHECKOUT_URL)
|
||||
|
@ -151,10 +162,9 @@ test('PayPal express block checkout', async ({page}) => {
|
|||
await completePaypalPayment(popup);
|
||||
|
||||
await completeBlockContinuation(page);
|
||||
});
|
||||
|
||||
test('PayPal express block cart', async ({page}) => {
|
||||
});
|
||||
|
||||
test('PayPal express block cart', async ({page}) => {
|
||||
await page.goto(BLOCK_CART_URL + '?add-to-cart=' + PRODUCT_ID)
|
||||
|
||||
const popup = await openPaypalPopup(page);
|
||||
|
@ -164,4 +174,5 @@ test('PayPal express block cart', async ({page}) => {
|
|||
await completePaypalPayment(popup);
|
||||
|
||||
await completeBlockContinuation(page);
|
||||
});
|
||||
});
|
||||
|
|
27
tests/playwright/utils/server.js
Normal file
27
tests/playwright/utils/server.js
Normal file
|
@ -0,0 +1,27 @@
|
|||
const { exec } = require('node:child_process');
|
||||
|
||||
/**
|
||||
* Executes the command on the server (inside DDEV). Can be called inside and outside DDEV.
|
||||
*/
|
||||
export const serverExec = async (cmd) => {
|
||||
const isDdev = process.env.IS_DDEV_PROJECT === 'true';
|
||||
if (!isDdev) {
|
||||
cmd = 'ddev exec ' + cmd;
|
||||
}
|
||||
|
||||
console.log(cmd);
|
||||
|
||||
return new Promise((resolve) => exec(cmd, (error, stdout, stderr) => {
|
||||
if (stderr) {
|
||||
console.error(stderr);
|
||||
}
|
||||
if (stdout) {
|
||||
console.log(stdout);
|
||||
}
|
||||
if (error) {
|
||||
throw error;
|
||||
} else {
|
||||
resolve(stdout);
|
||||
}
|
||||
}))
|
||||
}
|
1
wp-cli.yml
Normal file
1
wp-cli.yml
Normal file
|
@ -0,0 +1 @@
|
|||
path: .ddev/wordpress/
|
Loading…
Add table
Add a link
Reference in a new issue