-
Notifications
You must be signed in to change notification settings - Fork 321
145 lines (123 loc) · 5.11 KB
/
playwright.yml
File metadata and controls
145 lines (123 loc) · 5.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
name: E2e Tests
permissions:
contents: read
pull-requests: write
env:
CI: true
COMPOSER_VERSION: "2"
COMPOSER_CACHE: "${{ github.workspace }}/.composer-cache"
NODE_VERSION: "20"
NODE_CACHE: "${{ github.workspace }}/node_modules_cache"
on:
push:
branches:
- develop
- trunk
pull_request:
branches:
- develop
- trunk # useful for hotfix releases
- '[0-9].[0-9x]*' # Version branches: 4.x.x, 4.1.x, 5.x
jobs:
e2e_local:
name: ES ${{ matrix.esVersion }} - ${{ matrix.core.name }} (${{ matrix.testGroup }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
testGroup: ['@group1', '@group2', '@paidPlugins']
esVersion: ['7.10.1', '8.12.2', '9.1.5', 'EP.io']
core:
- {name: 'WP latest', version: '', wcVersion: ''}
- {name: 'WP minimum', version: '6.2', wcVersion: '6.4.0'}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare npm cache
uses: actions/cache@v4
with:
path: ${{ env.NODE_CACHE }}
key: npm-${{ env.NODE_VERSION }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
npm-${{ env.NODE_VERSION }}-
- name: Prepare composer cache
uses: actions/cache@v4
with:
path: ${{ env.COMPOSER_CACHE }}
key: composer-${{ env.COMPOSER_VERSION }}-${{ hashFiles('**/composer.lock') }}
restore-keys: |
composer-${{ env.COMPOSER_VERSION }}-
- name: Set PHP version
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
extensions: :php-psr
tools: cs2pr
coverage: none
- name: composer install
run: composer install
- name: "Install node v${{ env.NODE_VERSION }}"
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install dependencies
run: npm ci --include=dev
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Set up WP environment with Elasticsearch
run: ES_VERSION=${{ matrix.esVersion }} npm run env:start
if: matrix.esVersion != 'EP.io'
- name: Set up WP environment with Elasticsearch (EP.io)
run: |
npm run env start
npm run env:install-tests-cli
if: matrix.esVersion == 'EP.io'
- name: Check ES response
run: curl --connect-timeout 5 --max-time 10 --retry 5 --retry-max-time 40 --retry-all-errors http://localhost:8890
if: matrix.esVersion != 'EP.io'
- name: Build asset
run: npm run build
- name: Set up database
run: |
if [ "${{ matrix.testGroup }}" == "@paidPlugins" ]; then
npm run e2e:setup -- --wp-version=${{ matrix.core.version }} --wc-version=${{ matrix.core.wcVersion }} --acf-pro-license='${{ secrets.ACF_PRO_LICENSE_KEY }}'
else
npm run e2e:setup -- --wp-version=${{ matrix.core.version }} --wc-version=${{ matrix.core.wcVersion }}
fi
if: matrix.esVersion != 'EP.io'
- name: Set up database (EP.io)
run: |
if [ "${{ matrix.testGroup }}" == "@paidPlugins" ]; then
npm run e2e:setup -- --ep-host=${{ secrets.EPIO_HOST }} --ep-credentials='${{ secrets.EPIO_SHIELD }}' --ep-index-prefix=${{ secrets.EPIO_INDEX_PREFIX }} --wp-version=${{ matrix.core.version }} --wc-version=${{ matrix.core.wcVersion }} --acf-pro-license='${{ secrets.ACF_PRO_LICENSE_KEY }}'
else
npm run e2e:setup -- --ep-host=${{ secrets.EPIO_HOST }} --ep-credentials='${{ secrets.EPIO_SHIELD }}' --ep-index-prefix=${{ secrets.EPIO_INDEX_PREFIX }} --wp-version=${{ matrix.core.version }} --wc-version=${{ matrix.core.wcVersion }}
fi
if: matrix.esVersion == 'EP.io'
- name: Run Playwright tests
run: npm run playwright:test -- --grep ${{ matrix.testGroup }}
- name: Make artifacts available
uses: actions/upload-artifact@v6
if: failure()
with:
name: playwright-report-${{ matrix.esVersion }}-${{ matrix.core.name }}-${{ matrix.testGroup }}
retention-days: 2
path: |
${{ github.workspace }}/playwright-report/
${{ github.workspace }}/tests/e2e/playwright-report/
- name: Stop Elasticsearch
if: matrix.esVersion != 'EP.io'
run: cd bin/es-docker/ && docker compose down
- name: Delete Elasticsearch indices
if: ${{ !cancelled() && matrix.esVersion == 'EP.io' }}
run: |
PLUGIN_NAME=$(basename "$PWD")
./bin/wp-env-cli tests-wordpress "wp --allow-root plugin activate ${PLUGIN_NAME} --network"
./bin/wp-env-cli tests-wordpress "wp --allow-root elasticpress-tests delete-all-indices"
- name: Test plugin uninstall
if: always()
run: |
PLUGIN_NAME=$(basename "$PWD")
! ./bin/wp-env-cli tests-wordpress "wp --allow-root plugin deactivate ${PLUGIN_NAME} --network"
! ./bin/wp-env-cli tests-wordpress "wp --allow-root plugin deactivate ${PLUGIN_NAME}"
./bin/wp-env-cli tests-wordpress "cp -r wp-content/plugins/${PLUGIN_NAME} wp-content/plugins/ep-delete"
./bin/wp-env-cli tests-wordpress "wp --allow-root plugin uninstall ep-delete"