2021-08-11 02:38:41 +00:00
|
|
|
name: Smoke test release
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [published]
|
|
|
|
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:
|
2021-11-03 13:24:18 +00:00
|
|
|
path: package/woocommerce
|
2021-08-11 02:38:41 +00:00
|
|
|
ref: trunk
|
|
|
|
|
|
|
|
- name: Install prerequisites.
|
2021-11-03 13:24:18 +00:00
|
|
|
working-directory: package/woocommerce/plugins/woocommerce
|
2021-08-11 02:38:41 +00:00
|
|
|
run: |
|
2021-11-03 13:24:18 +00:00
|
|
|
npm install -g pnpm
|
|
|
|
pnpm install
|
2021-11-18 15:25:19 +00:00
|
|
|
pnpm nx composer-install-no-dev woocommerce
|
|
|
|
pnpm nx build-assets woocommerce
|
2021-11-03 13:24:18 +00:00
|
|
|
pnpm install jest
|
2021-08-11 02:38:41 +00:00
|
|
|
|
|
|
|
- name: Run smoke test.
|
2021-11-03 13:24:18 +00:00
|
|
|
working-directory: package/woocommerce/plugins/woocommerce
|
2021-08-11 02:38:41 +00:00
|
|
|
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
|
2021-08-11 02:40:27 +00:00
|
|
|
E2E_SLACK_TOKEN: ${{ secrets.SMOKE_TEST_SLACK_TOKEN }}
|
2021-09-09 20:26:28 +00:00
|
|
|
E2E_SLACK_CHANNEL: ${{ secrets.RELEASE_TEST_SLACK_CHANNEL }}
|
2021-08-11 02:38:41 +00:00
|
|
|
TEST_RELEASE: 1
|
|
|
|
UPDATE_WC: 1
|
2021-08-12 22:05:55 +00:00
|
|
|
DEFAULT_TIMEOUT_OVERRIDE: 120000
|
2021-09-09 14:41:36 +00:00
|
|
|
BASE_URL: ${{ secrets.RELEASE_TEST_URL }}
|
|
|
|
USER_KEY: ${{ secrets.RELEASE_TEST_ADMIN_USER }}
|
|
|
|
USER_SECRET: ${{ secrets.RELEASE_TEST_ADMIN_PASSWORD }}
|
2021-08-11 02:38:41 +00:00
|
|
|
run: |
|
2021-11-03 13:24:18 +00:00
|
|
|
pnpx wc-e2e test:e2e plugins/woocommerce/tests/e2e/specs/smoke-tests/update-woocommerce.js
|
|
|
|
pnpx wc-e2e test:e2e
|
|
|
|
pnpx wc-api-tests test api
|
2021-10-01 16:08:55 +00:00
|
|
|
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
|
|
|
|
|
2021-11-22 14:22:33 +00:00
|
|
|
- name: Install PNPM and install dependencies
|
2021-11-22 14:28:18 +00:00
|
|
|
working-directory: package/woocommerce
|
2021-11-22 14:22:33 +00:00
|
|
|
run: |
|
|
|
|
npm install -g pnpm
|
|
|
|
pnpm install
|
2021-10-01 16:08:55 +00:00
|
|
|
|
|
|
|
- name: Load docker images and start containers.
|
2021-11-03 13:24:18 +00:00
|
|
|
working-directory: package/woocommerce/plugins/woocommerce
|
2021-10-01 16:13:03 +00:00
|
|
|
env:
|
|
|
|
LATEST_WP_VERSION_MINUS: ${{ matrix.wp }}
|
2021-11-18 15:25:19 +00:00
|
|
|
run: pnpm nx docker-up woocommerce
|
2021-10-01 16:08:55 +00:00
|
|
|
|
|
|
|
- name: Move current directory to code. We will install zip file in this dir later.
|
2021-11-03 13:24:18 +00:00
|
|
|
run: mv ./package/woocommerce/plugins/woocommerce/* ./code/woocommerce
|
2021-10-01 16:08:55 +00:00
|
|
|
|
|
|
|
- name: Download WooCommerce release zip
|
|
|
|
working-directory: tmp
|
|
|
|
run: |
|
|
|
|
ASSET_ID=$(jq ".release.assets[0].id" $GITHUB_EVENT_PATH)
|
|
|
|
|
|
|
|
curl https://api.github.com/repos/woocommerce/woocommerce/releases/assets/${ASSET_ID} -LJOH 'Accept: application/octet-stream'
|
|
|
|
|
|
|
|
unzip woocommerce.zip -d woocommerce
|
2021-11-03 13:24:18 +00:00
|
|
|
mv woocommerce/woocommerce/* ../package/woocommerce/plugins/woocommerce/
|
2021-10-01 16:08:55 +00:00
|
|
|
|
|
|
|
- name: Run tests command.
|
2021-11-03 13:24:18 +00:00
|
|
|
working-directory: package/woocommerce/plugins/woocommerce
|
2021-10-01 16:08:55 +00:00
|
|
|
env:
|
|
|
|
WC_E2E_SCREENSHOTS: 1
|
2021-10-01 16:13:35 +00:00
|
|
|
E2E_SLACK_TOKEN: ${{ secrets.SMOKE_TEST_SLACK_TOKEN }}
|
|
|
|
E2E_SLACK_CHANNEL: ${{ secrets.RELEASE_TEST_SLACK_CHANNEL }}
|
2021-11-18 15:25:19 +00:00
|
|
|
run: pnpm nx test-e2e woocommerce
|