-
Notifications
You must be signed in to change notification settings - Fork 2
401 lines (366 loc) · 14.2 KB
/
installation-and-varnish-test-suite.yml
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
name: Installation and Varnish tests
on:
push:
branches:
- main
paths-ignore:
- '**.md'
workflow_dispatch:
inputs:
debug_enabled:
type: boolean
description: Debug with tmate
default: false
permissions:
contents: read
env:
# Allow ddev get to use a GitHub token to prevent rate limiting by tests
DDEV_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
installation-and-varnish-test-suite:
strategy:
fail-fast: false
matrix:
# Last patch for the current and previous minor, greatest php version
include:
- m2-version: '2.3.7'
php-version: '7.4'
- m2-version: '2.4.6'
php-version: '8.2'
name: Installation and Varnish test suite
# @see https://devdocs.magento.com/marketplace/sellers/installation-and-varnish-tests.html
runs-on: ubuntu-latest
if: ${{ !contains(github.event.head_commit.message, 'chore(') }}
env:
EXTENSION_PACKAGE_NAME: "crowdsec/magento2-module-engine"
EXTENSION_NAME: "CrowdSec_Engine"
EXTENSION_PATH: "crowdsec-engine"
steps:
- name: Install Magento 2 with DDEV
uses: julienloizelet/[email protected]
id: magento2-install
with:
php_version: ${{ matrix.php-version }}
magento_version: ${{ matrix.m2-version }}
composer_auth: ${{ secrets.M2_COMPOSER_AUTH }}
magento_repository: "https://repo.magento.com/"
varnish_setup: "true"
- name: Clone M2 ${{ env.EXTENSION_NAME }} files
uses: actions/checkout@v3
with:
path: my-own-modules/${{ env.EXTENSION_PATH }}
- name: Prepare composer repositories
run: |
ddev composer config --unset repositories.0
ddev composer config repositories.0 '{"type": "path", "url":"my-own-modules/${{ env.EXTENSION_PATH }}/", "canonical": true}'
ddev composer config repositories.1 '{"type": "composer", "url":"https://repo.magento.com/", "exclude": ["${{ env.EXTENSION_PACKAGE_NAME }}", "magento/composer-dependency-version-audit-plugin"]}'
- name: Add ${{ env.EXTENSION_NAME }} as composer dependency
run: ddev composer require ${{ env.EXTENSION_PACKAGE_NAME }}:@dev --no-interaction
- name: Installation tests
# @see https://developer.adobe.com/commerce/marketplace/guides/sellers/installation-and-varnish-tests/#what-is-being-checked
uses: nick-fields/retry@v2
with:
timeout_minutes: 5
max_attempts: 3
shell: bash
command: |
ddev magento module:enable ${{ env.EXTENSION_NAME }}
ddev magento setup:upgrade
ddev magento setup:static-content:deploy -f
ddev magento deploy:mode:set production
ddev magento indexer:reindex
- name: Prepare for Varnish tests
run: |
ddev magento config:set system/full_page_cache/caching_application 2
ddev magento setup:performance:generate-fixtures ./varnish-profile.xml
- name: Disable some extensions for 2.4.6
if: startsWith(matrix.m2-version, '2.4.6')
run: |
ddev magento maintenance:enable
ddev magento module:disable --clear-static-content Magento_AdminAdobeImsTwoFactorAuth
ddev magento setup:static-content:deploy -f
ddev magento maintenance:disable
- name: Disable some extensions for 2.4
if: startsWith(matrix.m2-version, '2.4')
run: |
ddev magento maintenance:enable
ddev magento module:disable --clear-static-content Magento_TwoFactorAuth
ddev magento setup:static-content:deploy -f
ddev magento maintenance:disable
- name: Varnish MISS and HIT test
# @see https://developer.adobe.com/commerce/marketplace/guides/sellers/installation-and-varnish-tests/#varnish-test-execution
run: |
# TEST 1
curl -sSLD - ${{ steps.magento2-install.outputs.m2_url }}/simple-product-1.html > curl_response.txt
# Some debug for the first call (503, report)
HTTP_CODE=$(grep -oP "^HTTP\K(.*)$" curl_response.txt)
if [[ "$HTTP_CODE" != *"200"* ]]
then
echo "Bad HTTP code : ${HTTP_CODE}"
cat curl_response.txt
fi
LOG_NUM=$(grep -oP "Error log record number: \K(.*)$" curl_response.txt | sed 's,</p>,,')
if [[ -n "$LOG_NUM" ]]
then
cat var/report/${LOG_NUM}
fi
if [[ "$HTTP_CODE" != *"200"* ]]
then
# try to restart
ddev restart
ddev replace-acl $(ddev find-ip ddev-router)
ddev reload-vcl
sleep 2
curl -sSLD - ${{ steps.magento2-install.outputs.m2_url }}/simple-product-1.html > curl_response.txt
fi
VERIF=$(grep -E "^x-eqp-cache:" curl_response.txt | sed 's/ //g')
if [[ $VERIF != *"x-eqp-cache:MISS"* ]]
then
echo "Test 1 failed"
echo "Bad Varnish x-eqp-cache : ${VERIF}"
exit 1
else
echo "Test 1 OK"
fi
sleep 1
# TEST 2
curl -sSLD - ${{ steps.magento2-install.outputs.m2_url }}/simple-product-1.html > curl_response.txt
VERIF=$(grep -E "^x-eqp-cache:" curl_response.txt | sed 's/ //g')
if [[ $VERIF != *"x-eqp-cache:HIT"* ]]
then
echo "Test 2 failed"
echo "Bad Varnish x-eqp-cache : ${VERIF}"
exit 1
else
echo "Test 2 OK"
fi
sleep 1
# TEST 3
curl -sSLD - ${{ steps.magento2-install.outputs.m2_url }}/simple-product-2.html > curl_response.txt
VERIF=$(grep -E "^x-eqp-cache:" curl_response.txt | sed 's/ //g')
if [[ $VERIF != *"x-eqp-cache:MISS"* ]]
then
echo "Test 3 failed"
echo "Bad Varnish x-eqp-cache : ${VERIF}"
exit 1
else
echo "Test 3 OK"
fi
sleep 1
# TEST 4
curl -sSLD - ${{ steps.magento2-install.outputs.m2_url }}/simple-product-2.html > curl_response.txt
VERIF=$(grep -E "^x-eqp-cache:" curl_response.txt | sed 's/ //g')
if [[ $VERIF != *"x-eqp-cache:HIT"* ]]
then
echo "Test 4 failed"
echo "Bad Varnish x-eqp-cache : ${VERIF}"
exit 1
else
echo "Test 4 OK"
fi
sleep 1
# TEST 5
curl -sSLD - ${{ steps.magento2-install.outputs.m2_url }}/simple-product-3.html > curl_response.txt
VERIF=$(grep -E "^x-eqp-cache:" curl_response.txt | sed 's/ //g')
if [[ $VERIF != *"x-eqp-cache:MISS"* ]]
then
echo "Test 5 failed"
echo "Bad Varnish x-eqp-cache : ${VERIF}"
exit 1
else
echo "Test 5 OK"
fi
sleep 1
#TEST 6
curl -sSLD - ${{ steps.magento2-install.outputs.m2_url }}/simple-product-3.html > curl_response.txt
VERIF=$(grep -E "^x-eqp-cache:" curl_response.txt | sed 's/ //g')
if [[ $VERIF != *"x-eqp-cache:HIT"* ]]
then
echo "Test 6 failed"
echo "Bad Varnish x-eqp-cache : ${VERIF}"
exit 1
else
echo "Test 6 OK"
fi
sleep 1
# TEST 7
curl -sSLD - ${{ steps.magento2-install.outputs.m2_url }}/category-1.html > curl_response.txt
VERIF=$(grep -E "^x-eqp-cache:" curl_response.txt | sed 's/ //g')
if [[ $VERIF != *"x-eqp-cache:MISS"* ]]
then
echo "Test 7 failed"
echo "Bad Varnish x-eqp-cache : ${VERIF}"
exit 1
else
echo "Test 7 OK"
fi
sleep 1
# TEST 8
curl -sSLD - ${{ steps.magento2-install.outputs.m2_url }}/category-1.html > curl_response.txt
VERIF=$(grep -E "^x-eqp-cache:" curl_response.txt | sed 's/ //g')
if [[ $VERIF != *"x-eqp-cache:HIT"* ]]
then
echo "Test 8 failed"
echo "Bad Varnish x-eqp-cache : ${VERIF}"
exit 1
else
echo "Test 8 OK"
fi
sleep 1
# TEST 9
curl -sSLD - ${{ steps.magento2-install.outputs.m2_url }}/category-2.html > curl_response.txt
VERIF=$(grep -E "^x-eqp-cache:" curl_response.txt | sed 's/ //g')
if [[ $VERIF != *"x-eqp-cache:MISS"* ]]
then
echo "Test 9 failed"
echo "Bad Varnish x-eqp-cache : ${VERIF}"
exit 1
else
echo "Test 9 OK"
fi
sleep 1
# TEST 10
curl -sSLD - ${{ steps.magento2-install.outputs.m2_url }}/category-2.html > curl_response.txt
VERIF=$(grep -E "^x-eqp-cache:" curl_response.txt | sed 's/ //g')
if [[ $VERIF != *"x-eqp-cache:HIT"* ]]
then
echo "Test 10 failed"
echo "Bad Varnish x-eqp-cache : ${VERIF}"
exit 1
else
echo "Test 10 OK"
fi
sleep 1
# TEST 11
curl -sSLD - ${{ steps.magento2-install.outputs.m2_url }} > curl_response.txt
VERIF=$(grep -E "^x-eqp-cache:" curl_response.txt | sed 's/ //g')
if [[ $VERIF != *"x-eqp-cache:MISS"* ]]
then
echo "Test 11 failed"
echo "Bad Varnish x-eqp-cache : ${VERIF}"
exit 1
else
echo "Test 11 OK"
fi
sleep 1
# TEST 12
curl -sSLD - ${{ steps.magento2-install.outputs.m2_url }} > curl_response.txt
VERIF=$(grep -E "^x-eqp-cache:" curl_response.txt | sed 's/ //g')
if [[ $VERIF != *"x-eqp-cache:HIT"* ]]
then
echo "Test 12 failed"
echo "Bad Varnish x-eqp-cache : ${VERIF}"
exit 1
else
echo "Test 12 OK"
fi
- name: Varnish product update test
run: |
cp .ddev/okaeli-add-on/magento2/custom_scripts/update-product-price.sh update-product-price.sh
chmod +x update-product-price.sh
ddev exec ./update-product-price.sh ${{ steps.magento2-install.outputs.m2_url }} product_dynamic_1
ddev exec ./update-product-price.sh ${{ steps.magento2-install.outputs.m2_url }} product_dynamic_2
ddev exec ./update-product-price.sh ${{ steps.magento2-install.outputs.m2_url }} product_dynamic_3
# TEST 1
VERIF=$(curl -sSLD - ${{ steps.magento2-install.outputs.m2_url }}/simple-product-1.html | grep -E "^x-eqp-cache:" | sed 's/ //g')
if [[ $VERIF != *"x-eqp-cache:MISS"* ]]
then
echo "Test 1 failed"
echo "Bad Varnish x-eqp-cache : ${VERIF}"
exit 1
else
echo "Test 1 OK"
fi
sleep 1
# TEST 2
curl -sSLD - ${{ steps.magento2-install.outputs.m2_url }}/simple-product-1.html > curl_response.txt
VERIF=$(grep -E "^x-eqp-cache:" curl_response.txt | sed 's/ //g')
if [[ $VERIF != *"x-eqp-cache:HIT"* ]]
then
echo "Test 2 failed"
echo "Bad Varnish x-eqp-cache : ${VERIF}"
exit 1
else
echo "Test 2 OK"
fi
sleep 1
# TEST 3
curl -sSLD - ${{ steps.magento2-install.outputs.m2_url }}/simple-product-2.html > curl_response.txt
VERIF=$(grep -E "^x-eqp-cache:" curl_response.txt | sed 's/ //g')
if [[ $VERIF != *"x-eqp-cache:MISS"* ]]
then
echo "Test 3 failed"
echo "Bad Varnish x-eqp-cache : ${VERIF}"
exit 1
else
echo "Test 3 OK"
fi
sleep 1
# TEST 4
curl -sSLD - ${{ steps.magento2-install.outputs.m2_url }}/simple-product-2.html > curl_response.txt
VERIF=$(grep -E "^x-eqp-cache:" curl_response.txt | sed 's/ //g')
if [[ $VERIF != *"x-eqp-cache:HIT"* ]]
then
echo "Test 4 failed"
echo "Bad Varnish x-eqp-cache : ${VERIF}"
exit 1
else
echo "Test 4 OK"
fi
sleep 1
# TEST 5
curl -sSLD - ${{ steps.magento2-install.outputs.m2_url }}/simple-product-3.html > curl_response.txt
VERIF=$(grep -E "^x-eqp-cache:" curl_response.txt | sed 's/ //g')
if [[ $VERIF != *"x-eqp-cache:MISS"* ]]
then
echo "Test 5 failed"
echo "Bad Varnish x-eqp-cache : ${VERIF}"
exit 1
else
echo "Test 5 OK"
fi
sleep 1
# TEST 6
curl -sSLD - ${{ steps.magento2-install.outputs.m2_url }}/simple-product-3.html > curl_response.txt
VERIF=$(grep -E "^x-eqp-cache:" curl_response.txt | sed 's/ //g')
if [[ $VERIF != *"x-eqp-cache:HIT"* ]]
then
echo "Test 6 failed"
echo "Bad Varnish x-eqp-cache : ${VERIF}"
exit 1
else
echo "Test 6 OK"
fi
- name: Varnish FPC clean test
run: |
ddev magento cache:clean full_page
# TEST 1
curl -sSLD - ${{ steps.magento2-install.outputs.m2_url }} > curl_response.txt
VERIF=$(grep -E "^x-eqp-cache:" curl_response.txt | sed 's/ //g')
if [[ $VERIF != *"x-eqp-cache:MISS"* ]]
then
echo "Test 1 failed"
echo "Bad Varnish x-eqp-cache : ${VERIF}"
exit 1
else
echo "Test 1 OK"
fi
sleep 1
# TEST 2
curl -sSLD - ${{ steps.magento2-install.outputs.m2_url }} > curl_response.txt
VERIF=$(grep -E "^x-eqp-cache:" curl_response.txt | sed 's/ //g')
if [[ $VERIF != *"x-eqp-cache:HIT"* ]]
then
echo "Test 2 failed"
echo "Bad Varnish x-eqp-cache : ${VERIF}"
exit 1
else
echo "Test 2 OK"
fi
- name: Debug with tmate
uses: mxschmitt/action-tmate@v3
with:
limit-access-to-actor: true
github-token: ${{ secrets.GITHUB_TOKEN }}
timeout-minutes: 30
if: failure() && github.event.inputs.debug_enabled == 'true'