200 lines
7.3 KiB
YAML
200 lines
7.3 KiB
YAML
name: Smoke test release
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
release_id:
|
|
description: 'WooCommerce Release Id'
|
|
required: true
|
|
jobs:
|
|
login-run:
|
|
name: Daily smoke test on release.
|
|
runs-on: ubuntu-18.04
|
|
steps:
|
|
|
|
- name: Create dirs.
|
|
run: |
|
|
mkdir -p code/woocommerce
|
|
mkdir -p package/woocommerce
|
|
mkdir -p tmp/woocommerce
|
|
mkdir -p node_modules
|
|
|
|
- name: Checkout code.
|
|
uses: actions/checkout@v2
|
|
with:
|
|
path: package/woocommerce
|
|
ref: trunk
|
|
|
|
- name: Install prerequisites.
|
|
working-directory: package/woocommerce/plugins/woocommerce
|
|
run: |
|
|
npm install -g pnpm
|
|
pnpm install
|
|
pnpm nx composer-install-no-dev woocommerce
|
|
pnpm nx build-assets woocommerce
|
|
pnpm install jest
|
|
|
|
- name: Run smoke test.
|
|
working-directory: package/woocommerce/plugins/woocommerce
|
|
env:
|
|
SMOKE_TEST_URL: ${{ secrets.RELEASE_TEST_URL }}
|
|
SMOKE_TEST_ADMIN_USER: ${{ secrets.RELEASE_TEST_ADMIN_USER }}
|
|
SMOKE_TEST_ADMIN_PASSWORD: ${{ secrets.RELEASE_TEST_ADMIN_PASSWORD }}
|
|
SMOKE_TEST_ADMIN_USER_EMAIL: ${{ secrets.RELEASE_TEST_ADMIN_USER_EMAIL }}
|
|
SMOKE_TEST_CUSTOMER_USER: ${{ secrets.RELEASE_TEST_CUSTOMER_USER }}
|
|
SMOKE_TEST_CUSTOMER_PASSWORD: ${{ secrets.RELEASE_TEST_CUSTOMER_PASSWORD }}
|
|
WC_E2E_SCREENSHOTS: 1
|
|
E2E_RETEST: 1
|
|
E2E_SLACK_TOKEN: ${{ secrets.SMOKE_TEST_SLACK_TOKEN }}
|
|
E2E_SLACK_CHANNEL: ${{ secrets.RELEASE_TEST_SLACK_CHANNEL }}
|
|
TEST_RELEASE: 1
|
|
UPDATE_WC: 1
|
|
DEFAULT_TIMEOUT_OVERRIDE: 120000
|
|
BASE_URL: ${{ secrets.RELEASE_TEST_URL }}
|
|
USER_KEY: ${{ secrets.RELEASE_TEST_ADMIN_USER }}
|
|
USER_SECRET: ${{ secrets.RELEASE_TEST_ADMIN_PASSWORD }}
|
|
run: |
|
|
pnpx wc-e2e test:e2e tests/e2e/specs/smoke-tests/update-woocommerce.js
|
|
pnpx wc-e2e test:e2e
|
|
pnpx wc-api-tests test api
|
|
test-wp-version:
|
|
name: Smoke test on L-${{ matrix.wp }} WordPress version
|
|
runs-on: ubuntu-18.04
|
|
strategy:
|
|
matrix:
|
|
wp: [ '1', '2' ]
|
|
steps:
|
|
|
|
- name: Create dirs.
|
|
run: |
|
|
mkdir -p code/woocommerce
|
|
mkdir -p package/woocommerce
|
|
mkdir -p tmp/woocommerce
|
|
mkdir -p node_modules
|
|
|
|
- name: Checkout code.
|
|
uses: actions/checkout@v2
|
|
with:
|
|
path: package/woocommerce
|
|
- name: Fetch Asset ID
|
|
id: fetch_asset_id
|
|
uses: actions/github-script@v5
|
|
env:
|
|
RELEASE_ID: ${{ github.event.inputs.release_id }}
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
REPO: ${{ github.repository }}
|
|
with:
|
|
script: |
|
|
const script = require( './package/woocommerce/.github/workflows/scripts/fetch-asset-id.js' )
|
|
await script({github, context, core})
|
|
|
|
- name: Install PNPM and install dependencies
|
|
working-directory: package/woocommerce
|
|
run: |
|
|
npm install -g pnpm
|
|
pnpm install
|
|
|
|
- name: Load docker images and start containers.
|
|
working-directory: package/woocommerce/plugins/woocommerce
|
|
env:
|
|
LATEST_WP_VERSION_MINUS: ${{ matrix.wp }}
|
|
run: pnpm nx docker-up woocommerce
|
|
|
|
- name: Move current directory to code. We will install zip file in this dir later.
|
|
run: mv ./package/woocommerce/plugins/woocommerce/* ./code/woocommerce
|
|
|
|
- name: Download WooCommerce release zip
|
|
working-directory: tmp
|
|
run: |
|
|
curl https://api.github.com/repos/${{ github.repository }}/releases/assets/${{ steps.fetch_asset_id.outputs.asset_id }} -LJOH 'Accept: application/octet-stream'
|
|
|
|
unzip woocommerce.zip -d woocommerce
|
|
mv woocommerce/woocommerce/* ../package/woocommerce/plugins/woocommerce/
|
|
|
|
- name: Run tests command.
|
|
working-directory: package/woocommerce/plugins/woocommerce
|
|
env:
|
|
WC_E2E_SCREENSHOTS: 1
|
|
E2E_SLACK_TOKEN: ${{ secrets.SMOKE_TEST_SLACK_TOKEN }}
|
|
E2E_SLACK_CHANNEL: ${{ secrets.RELEASE_TEST_SLACK_CHANNEL }}
|
|
run: pnpm nx test-e2e woocommerce
|
|
|
|
test-plugins:
|
|
name: Smoke tests with ${{ matrix.plugin }} plugin installed
|
|
runs-on: ubuntu-18.04
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- plugin: 'WooCommerce Payments'
|
|
repo: 'automattic/woocommerce-payments'
|
|
- plugin: 'WooCommerce PayPal Payments'
|
|
repo: 'woocommerce/woocommerce-paypal-payments'
|
|
- plugin: 'WooCommerce Shipping & Tax'
|
|
repo: 'automattic/woocommerce-services'
|
|
- plugin: 'WooCommerce Subscriptions'
|
|
repo: WC_SUBSCRIPTIONS_REPO
|
|
private: true
|
|
- plugin: 'WordPress SEO' # Yoast SEO in the UI, but the slug is wordpress-seo
|
|
repo: 'Yoast/wordpress-seo'
|
|
- plugin: 'Contact Form 7'
|
|
repo: 'takayukister/contact-form-7'
|
|
steps:
|
|
- name: Create dirs.
|
|
run: |
|
|
mkdir -p code/woocommerce
|
|
mkdir -p package/woocommerce
|
|
mkdir -p tmp/woocommerce
|
|
mkdir -p node_modules
|
|
|
|
- name: Checkout code.
|
|
uses: actions/checkout@v2
|
|
with:
|
|
path: package/woocommerce
|
|
- name: Fetch Asset ID
|
|
id: fetch_asset_id
|
|
uses: actions/github-script@v5
|
|
env:
|
|
RELEASE_ID: ${{ github.event.inputs.release_id }}
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
REPO: ${{ github.repository }}
|
|
with:
|
|
script: |
|
|
const script = require( './package/woocommerce/.github/workflows/scripts/fetch-asset-id.js' )
|
|
await script({github, context, core})
|
|
|
|
- name: Install PNPM and install dependencies
|
|
working-directory: package/woocommerce
|
|
run: |
|
|
npm install -g pnpm
|
|
pnpm install
|
|
|
|
- name: Load docker images and start containers.
|
|
working-directory: package/woocommerce/plugins/woocommerce
|
|
env:
|
|
LATEST_WP_VERSION_MINUS: ${{ matrix.wp }}
|
|
run: pnpm nx docker-up woocommerce
|
|
|
|
- name: Move current directory to code. We will install zip file in this dir later.
|
|
run: mv ./package/woocommerce/plugins/woocommerce/* ./code/woocommerce
|
|
|
|
- name: Download WooCommerce release zip
|
|
working-directory: tmp
|
|
run: |
|
|
curl https://api.github.com/repos/${{ github.repository }}/releases/assets/${{ steps.fetch_asset_id.outputs.asset_id }} -LJOH 'Accept: application/octet-stream'
|
|
|
|
unzip woocommerce.zip -d woocommerce
|
|
mv woocommerce/woocommerce/* ../package/woocommerce/plugins/woocommerce/
|
|
|
|
- name: Run tests command.
|
|
working-directory: package/woocommerce/plugins/woocommerce
|
|
env:
|
|
WC_E2E_SCREENSHOTS: 1
|
|
E2E_SLACK_TOKEN: ${{ secrets.SMOKE_TEST_SLACK_TOKEN }}
|
|
E2E_SLACK_CHANNEL: ${{ secrets.RELEASE_TEST_SLACK_CHANNEL }}
|
|
PLUGIN_REPOSITORY: ${{ matrix.private && secrets[matrix.repo] || matrix.repo }}
|
|
PLUGIN_NAME: ${{ matrix.plugin }}
|
|
GITHUB_TOKEN: ${{ secrets.E2E_GH_TOKEN }}
|
|
run: |
|
|
pnpx wc-e2e test:e2e tests/e2e/specs/smoke-tests/upload-plugin.js
|
|
pnpx wc-e2e test:e2e
|