2023-10-11 07:03:24 +00:00
|
|
|
name: Run tests against PR in an environment with HPOS disabled
|
2022-09-19 09:09:42 +00:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-01-02 17:28:11 +00:00
|
|
|
permissions: {}
|
|
|
|
|
2022-09-19 09:09:42 +00:00
|
|
|
jobs:
|
2023-10-11 07:03:24 +00:00
|
|
|
non-hpos-e2e-tests-run:
|
|
|
|
name: Runs E2E tests with HPOS disabled.
|
2022-09-19 09:09:42 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2023-01-02 17:28:11 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
2022-10-24 23:53:46 +00:00
|
|
|
env:
|
|
|
|
ALLURE_RESULTS_DIR: ${{ github.workspace }}/plugins/woocommerce/tests/e2e-pw/allure-results
|
|
|
|
ALLURE_REPORT_DIR: ${{ github.workspace }}/plugins/woocommerce/tests/e2e-pw/allure-report
|
2022-09-19 09:09:42 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2022-10-24 23:53:46 +00:00
|
|
|
|
2022-09-19 09:09:42 +00:00
|
|
|
- name: Setup WooCommerce Monorepo
|
|
|
|
uses: ./.github/actions/setup-woocommerce-monorepo
|
2023-11-17 17:52:19 +00:00
|
|
|
with:
|
|
|
|
install: '@woocommerce/plugin-woocommerce...'
|
|
|
|
build: '@woocommerce/plugin-woocommerce'
|
2022-09-19 09:09:42 +00:00
|
|
|
|
2023-10-11 07:03:24 +00:00
|
|
|
- name: Load docker images and start containers
|
2022-09-19 09:09:42 +00:00
|
|
|
working-directory: plugins/woocommerce
|
2023-10-23 20:16:16 +00:00
|
|
|
run: pnpm env:test --filter=@woocommerce/plugin-woocommerce
|
2022-09-19 09:09:42 +00:00
|
|
|
|
|
|
|
- name: Download and install Chromium browser.
|
|
|
|
working-directory: plugins/woocommerce
|
2022-09-22 15:14:19 +00:00
|
|
|
run: pnpm exec playwright install chromium
|
2022-09-19 09:09:42 +00:00
|
|
|
|
|
|
|
- name: Run Playwright E2E tests.
|
|
|
|
timeout-minutes: 60
|
|
|
|
id: run_playwright_e2e_tests
|
|
|
|
env:
|
2022-10-24 23:53:46 +00:00
|
|
|
USE_WP_ENV: 1
|
2023-10-11 07:03:24 +00:00
|
|
|
ENABLE_HPOS: 0
|
2022-09-19 09:09:42 +00:00
|
|
|
working-directory: plugins/woocommerce
|
2022-09-22 15:14:19 +00:00
|
|
|
run: pnpm exec playwright test --config=tests/e2e-pw/playwright.config.js
|
2022-09-19 09:09:42 +00:00
|
|
|
|
|
|
|
- name: Generate Playwright E2E Test report.
|
|
|
|
id: generate_e2e_report
|
|
|
|
if: |
|
|
|
|
always() &&
|
|
|
|
(
|
|
|
|
steps.run_playwright_e2e_tests.conclusion != 'cancelled' ||
|
|
|
|
steps.run_playwright_e2e_tests.conclusion != 'skipped'
|
|
|
|
)
|
|
|
|
working-directory: plugins/woocommerce
|
2022-10-24 23:53:46 +00:00
|
|
|
run: pnpm exec allure generate --clean ${{ env.ALLURE_RESULTS_DIR }} --output ${{ env.ALLURE_REPORT_DIR }}
|
2022-09-19 09:09:42 +00:00
|
|
|
|
|
|
|
- name: Archive Playwright E2E test report
|
|
|
|
if: |
|
|
|
|
always() &&
|
|
|
|
steps.generate_e2e_report.conclusion == 'success'
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: e2e-test-report---pr-${{ github.event.number }}
|
|
|
|
path: |
|
2022-10-24 23:53:46 +00:00
|
|
|
${{ env.ALLURE_RESULTS_DIR }}
|
|
|
|
${{ env.ALLURE_REPORT_DIR }}
|
2022-09-19 09:09:42 +00:00
|
|
|
if-no-files-found: ignore
|
|
|
|
retention-days: 5
|
|
|
|
|
2023-10-11 07:03:24 +00:00
|
|
|
non-hpos-api-tests-run:
|
|
|
|
name: Runs API tests with HPOS disabled.
|
2022-09-19 09:09:42 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2023-01-02 17:28:11 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
2022-09-19 09:09:42 +00:00
|
|
|
env:
|
2022-10-24 23:53:46 +00:00
|
|
|
ALLURE_RESULTS_DIR: ${{ github.workspace }}/plugins/woocommerce/tests/api-core-tests/api-test-report/allure-results
|
|
|
|
ALLURE_REPORT_DIR: ${{ github.workspace }}/plugins/woocommerce/tests/api-core-tests/api-test-report/allure-report
|
2022-09-19 09:09:42 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2022-10-24 23:53:46 +00:00
|
|
|
|
2022-09-19 09:09:42 +00:00
|
|
|
- name: Setup WooCommerce Monorepo
|
|
|
|
uses: ./.github/actions/setup-woocommerce-monorepo
|
2023-11-17 17:52:19 +00:00
|
|
|
with:
|
|
|
|
install: '@woocommerce/plugin-woocommerce...'
|
|
|
|
build: '@woocommerce/plugin-woocommerce'
|
2022-09-19 09:09:42 +00:00
|
|
|
|
2023-10-11 07:03:24 +00:00
|
|
|
- name: Load docker images and start containers
|
2022-09-19 09:09:42 +00:00
|
|
|
working-directory: plugins/woocommerce
|
2023-10-23 20:16:16 +00:00
|
|
|
run: pnpm env:test --filter=@woocommerce/plugin-woocommerce
|
2022-09-19 09:09:42 +00:00
|
|
|
|
2022-10-03 16:49:42 +00:00
|
|
|
- name: Run Playwright API tests.
|
|
|
|
id: run_playwright_api_tests
|
2022-09-19 09:09:42 +00:00
|
|
|
working-directory: plugins/woocommerce
|
|
|
|
env:
|
|
|
|
BASE_URL: http://localhost:8086
|
|
|
|
USER_KEY: admin
|
|
|
|
USER_SECRET: password
|
2023-10-11 07:03:24 +00:00
|
|
|
ENABLE_HPOS: 0
|
2022-10-03 16:49:42 +00:00
|
|
|
run: pnpm exec playwright test --config=tests/api-core-tests/playwright.config.js
|
2022-09-19 09:09:42 +00:00
|
|
|
|
2022-10-03 16:49:42 +00:00
|
|
|
- name: Generate Playwright API Test report.
|
|
|
|
id: generate_api_report
|
|
|
|
if: |
|
|
|
|
always() &&
|
|
|
|
(
|
|
|
|
steps.run_playwright_api_tests.conclusion != 'cancelled' ||
|
|
|
|
steps.run_playwright_api_tests.conclusion != 'skipped'
|
|
|
|
)
|
|
|
|
working-directory: plugins/woocommerce
|
2022-10-24 23:53:46 +00:00
|
|
|
run: pnpm exec allure generate --clean ${{ env.ALLURE_RESULTS_DIR }} --output ${{ env.ALLURE_REPORT_DIR }}
|
|
|
|
|
2022-10-03 16:49:42 +00:00
|
|
|
- name: Archive Playwright API test report
|
|
|
|
if: |
|
|
|
|
always() &&
|
|
|
|
steps.generate_api_report.conclusion == 'success'
|
2022-09-19 09:09:42 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: api-test-report---pr-${{ github.event.number }}
|
|
|
|
path: |
|
2022-10-24 23:53:46 +00:00
|
|
|
${{ env.ALLURE_RESULTS_DIR }}
|
|
|
|
${{ env.ALLURE_REPORT_DIR }}
|
2022-10-03 16:49:42 +00:00
|
|
|
if-no-files-found: ignore
|
2023-10-11 07:03:24 +00:00
|
|
|
retention-days: 5
|