mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-07-31 02:32:53 +08:00
95 lines
No EOL
4.2 KiB
YAML
95 lines
No EOL
4.2 KiB
YAML
name: E2E Tests
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
TEST_SUITE:
|
|
description: 'Test suite'
|
|
required: true
|
|
default: 'e2e:test:dev'
|
|
type: choice
|
|
options:
|
|
- e2e:test:plugin-foundation
|
|
- e2e:test:dev
|
|
- e2e:test:smoke
|
|
- e2e:test:critical
|
|
- e2e:test:stress
|
|
- e2e:test:all
|
|
- e2e:test:all:parallel
|
|
XRAY_TEST_EXEC_KEY:
|
|
description: 'Xray Test Execution Key'
|
|
required: false
|
|
default: ''
|
|
type: string
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
name: Build tested plugin package
|
|
uses: inpsyde/reusable-workflows/.github/workflows/build-and-distribute.yml@main
|
|
secrets:
|
|
GITHUB_USER_EMAIL: ${{ secrets.DEPLOYBOT_EMAIL }}
|
|
GITHUB_USER_NAME: ${{ secrets.DEPLOYBOT_USER }}
|
|
GITHUB_USER_SSH_KEY: ${{ secrets.DEPLOYBOT_SSH_PRIVATE_KEY }}
|
|
GITHUB_USER_SSH_PUBLIC_KEY: ${{ secrets.DEPLOYBOT_SSH_PUBLIC_KEY }}
|
|
NPM_REGISTRY_TOKEN: ${{ secrets.DEPLOYBOT_GITHUB_TOKEN_PACKAGES }}
|
|
with:
|
|
PACKAGE_NAME: woocommerce-paypal-payments
|
|
NODE_VERSION: 22
|
|
|
|
resolve-playwright-matrix:
|
|
name: Resolve Playwright matrix
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
matrix: ${{ steps.resolve.outputs.matrix }}
|
|
steps:
|
|
- name: Resolve test scripts
|
|
id: resolve
|
|
shell: bash
|
|
run: |
|
|
if [[ '${{ inputs.TEST_SUITE }}' == 'e2e:test:all:parallel' ]]; then
|
|
echo 'matrix={"include":[{"script":"e2e:test:shard:plugin-foundation","name_suffix":" / plugin-foundation","artifact_name":"playwright-artifact-plugin-foundation"},{"script":"e2e:test:shard:onboarding-settings","name_suffix":" / onboarding-settings","artifact_name":"playwright-artifact-onboarding-settings"},{"script":"e2e:test:shard:transactions","name_suffix":" / transactions","artifact_name":"playwright-artifact-transactions"},{"script":"e2e:test:shard:transactions-googlepay","name_suffix":" / transactions-googlepay","artifact_name":"playwright-artifact-transactions-googlepay"},{"script":"e2e:test:shard:refund","name_suffix":" / refund","artifact_name":"playwright-artifact-refund"},{"script":"e2e:test:shard:vaulting","name_suffix":" / vaulting","artifact_name":"playwright-artifact-vaulting"},{"script":"e2e:test:shard:subscription","name_suffix":" / subscription","artifact_name":"playwright-artifact-subscription"}]}' >> "$GITHUB_OUTPUT"
|
|
else
|
|
echo 'matrix={"include":[{"script":"${{ inputs.TEST_SUITE }}","name_suffix":"","artifact_name":"playwright-artifact"}]}' >> "$GITHUB_OUTPUT"
|
|
fi
|
|
|
|
e2e-playwright:
|
|
name: Run Playwright E2E Tests${{ matrix.name_suffix }}
|
|
needs:
|
|
- build
|
|
- resolve-playwright-matrix
|
|
strategy:
|
|
fail-fast: false
|
|
matrix: ${{ fromJson(needs.resolve-playwright-matrix.outputs.matrix) }}
|
|
uses: inpsyde/reusable-workflows/.github/workflows/test-playwright.yml@main
|
|
with:
|
|
PLAYWRIGHT_SCRIPT: ${{ matrix.script }}
|
|
PLAYWRIGHT_ARTIFACT_NAME: ${{ matrix.artifact_name }}
|
|
PLAYWRIGHT_ARTIFACT_PATH: |
|
|
artifacts/*
|
|
playwright-report/
|
|
test-results/
|
|
PLAYWRIGHT_ARTIFACT_INCLUDE_HIDDEN_FILES: true
|
|
NODE_VERSION: 22
|
|
PLAYWRIGHT_BROWSER_ARGS: 'chromium --with-deps'
|
|
XRAY_TEST_EXEC_KEY: ${{ inputs.XRAY_TEST_EXEC_KEY }}
|
|
PRE_SCRIPT: |
|
|
# 1. Download and unzip the built plugin
|
|
gh run download ${{ github.run_id }} -p "woocommerce-paypal-payments-*" -D tests/qa/resources/files
|
|
(
|
|
cd tests/qa/resources/files
|
|
mv woocommerce-paypal-payments-*/woocommerce-paypal-payments .
|
|
zip -rq woocommerce-paypal-payments.zip woocommerce-paypal-payments
|
|
rm -rf woocommerce-paypal-payments woocommerce-paypal-payments-*/
|
|
)
|
|
|
|
# 2. Add private composer repository and download WooCommerce Subscriptions
|
|
composer config repositories.repo-name composer https://repo.packagist.com/inpsyde/payment-gateways/
|
|
composer require inpsyde-mirror/woocommerce-subscriptions
|
|
secrets:
|
|
ENV_FILE_DATA: ${{ secrets.QA_ENV_FILE }}
|
|
NPM_REGISTRY_TOKEN: ${{ secrets.DEPLOYBOT_GITHUB_TOKEN_PACKAGES }}
|
|
COMPOSER_AUTH_JSON: ${{ secrets.COMPOSER_AUTH_JSON }} |