-
Notifications
You must be signed in to change notification settings - Fork 113
605 lines (534 loc) · 21.7 KB
/
Copy pathtests.yml
File metadata and controls
605 lines (534 loc) · 21.7 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
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
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
name: CI
on:
pull_request:
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
code-lint:
name: Run PHP Linter and Code Style checker
runs-on: ubuntu-24.04
steps:
- name: Checkout the project
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
persist-credentials: false
- name: Setup node and NPM
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238
with:
node-version: '20'
- name: Install npm
shell: bash
run: npm install -g npm@^8
- name: Get the date
id: date
run: echo "date=$(date +%Y-%m-%d)" >> $GITHUB_OUTPUT
- name: Cache NPM cache
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
with:
path: |
~/.npm
node_modules
key: ${{ runner.os }}-node-${{ steps.date.outputs.date }}-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-${{ steps.date.outputs.date }}-
${{ runner.os }}-node-
- name: Cache composer files
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
with:
path: |
vendor
key: ${{ runner.os }}-composer-${{ steps.date.outputs.date }}-${{ hashFiles('composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-${{ steps.date.outputs.date }}-
${{ runner.os }}-composer-
- name: Install PHP
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1
with:
php-version: '8.4'
tools: composer
- name: Get PHP version
shell: bash
run: php -v
- name: Install PHP packages
shell: bash
run: composer install
- name: Install Node packages
shell: bash
run: npm -q ci || { cat ~/.npm/eresolve-report.txt ; exit 1; }
- name: Run PHP linter
shell: bash
run: composer lint:lint
- name: Run PHP code style checker
shell: bash
run: composer cs:check
- name: Run PHP type checker Psalm
shell: bash
run: composer psalm
- name: Check for formatting issues with vue files (prettier)
shell: bash
run: >-
npm run prettier || {
echo '::error ::The prettier style checker failed.
Please run `npm run prettier-fix` in order to correct this.';
exit 1;
}
- name: Check for issues with vue and js files (eslint)
shell: bash
run: >-
npm run eslint || {
echo '::error ::The eslint style checker failed.
Please run `npm run eslint-fix` in order to correct this.';
exit 1;
}
- name: Check for formatting issues with CSS files (stylelint)
shell: bash
run: >-
npm run stylelint || {
echo '::error ::The stylelint checker failed.
Please run `npm run stylelint-fix` to help solving these issues if possible.';
exit 1;
}
unit-tests:
name: Run the unittests
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
database:
- mysql
coreVersion:
- 33
phpVersion:
- "8.5"
httpServer:
- "apache"
include:
- database: sqlite
coreVersion: 31
phpVersion: "8.3"
httpServer: "apache"
- database: pgsql
coreVersion: 32
phpVersion: "8.4"
httpServer: "nginx"
steps:
- name: Checkout the app
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
fetch-depth: 2
persist-credentials: false
- name: Ensure the appinfo is built
shell: bash
run: make appinfo/info.xml
#- name: Docker Layer Caching
#uses: satackey/action-docker-layer-caching@v0.0.8
- name: Install helper program
shell: bash
run: |-
pip install yq
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
- name: Get the min and max compatible server versions from manifest XML file
shell: bash
id: ncVersionRequirements
run: |-
minVersion="$(cat appinfo/info.xml | xq '.info.dependencies.nextcloud."@min-version"' -r)"
maxVersion="$(cat appinfo/info.xml | xq '.info.dependencies.nextcloud."@max-version"' -r)"
echo "minVersion=$minVersion" >> $GITHUB_OUTPUT
echo "maxVersion=$maxVersion" >> $GITHUB_OUTPUT
echo "Compatible NC server versions: [$minVersion, $maxVersion]"
if [ "${{ matrix.coreVersion }}" -ge "$minVersion" -a "${{ matrix.coreVersion }}" -le "$maxVersion" ]; then
mv="true"
else
mv="false"
echo "Skipping the main tests as this version is marked incompatible with the installed NC version." >> $GITHUB_STEP_SUMMARY
fi
echo "matchingVersion=$mv" >> $GITHUB_OUTPUT
echo "The app is compatible with the current NV core v${{ matrix.coreVersion }}: $mv"
- name: Prepare folder for installation of composer dependencies
run: mkdir -p vendor
- name: Install Python dependencies for test helper
run: cd .github/actions/run-tests && pip install -r requirements.txt
- name: Pull and build the test images
run: >-
cd .github/actions/run-tests &&
./run-locally.py
--pull
--create-images
--input-db ${{ matrix.database }}
--http-server ${{ matrix.httpServer }}
--php-version ${{ matrix.phpVersion }}
- name: Create the fixtures for the tests
run: >-
if [ "${{matrix.database}}" = 'pgsql' ]; then PARAM=''; else PARAM='--use-db-dump'; fi &&
cd .github/actions/run-tests &&
./run-locally.py
$PARAM
--create-fixture default stable${{ matrix.coreVersion }}
--activate-fixture default
--input-db ${{ matrix.database }}
--http-server ${{ matrix.httpServer }}
--php-version ${{ matrix.phpVersion }}
- name: Run the tests
run: >-
cd .github/actions/run-tests &&
./run-locally.py
--run-unit-tests
--run-integration-tests
--run-migration-tests
--extract-code-coverage
--keep-code-coverage
--install-composer-deps;
echo "test_result=$?" >> $GITHUB_ENV
- name: Export the annotations of unit tests to github
shell: bash
run: >-
if [ -r .github/actions/run-tests/volumes/coverage/teamcity.log ]; then
python .github/actions/run-tests/extract-annotations.py .github/actions/run-tests/volumes/coverage/teamcity.log ;
fi
- name: Export the annotations of integration tests to github
shell: bash
run: >-
if [ -r .github/actions/run-tests/volumes/coverage/teamcity.integration.log ]; then
python .github/actions/run-tests/extract-annotations.py .github/actions/run-tests/volumes/coverage/teamcity.integration.log ;
fi
- name: Export the annotations of migration tests to github
shell: bash
run: >-
if [ -r .github/actions/run-tests/volumes/coverage/teamcity.migration.log ]; then
python .github/actions/run-tests/extract-annotations.py .github/actions/run-tests/volumes/coverage/teamcity.migration.log ;
fi
# - name: Upload the code coverage files as artifacts
# if: always()
# uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
# with:
# name: Code coverage files (${{matrix.database}}, stable${{matrix.coreVersion}}, ${{matrix.httpServer}}, ${{matrix.phpVersion}})
# path: ".github/actions/run-tests/volumes/coverage"
- name: Upload the log file as artifact
if: steps.ncVersionRequirements.outputs.matchingVersion == 'true' && always()
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
with:
name: Nextcloud-logs (${{matrix.database}}, stable${{matrix.coreVersion}}, ${{matrix.httpServer}}, ${{matrix.phpVersion}})
path: .github/actions/run-tests/volumes/data/nextcloud.log
- name: Copy coverage-reports into non-link folder
if: steps.ncVersionRequirements.outputs.matchingVersion == 'true'
shell: bash
run: >-
mkdir /tmp/coverage &&
rsync -a .github/actions/run-tests/volumes/coverage/latest/ /tmp/coverage
- name: Upload the code coverage report for codecov as artifacts
if: steps.ncVersionRequirements.outputs.matchingVersion == 'true'
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
with:
name: Code coverage (XML) (${{matrix.database}}, stable${{matrix.coreVersion}}, ${{matrix.httpServer}}, ${{matrix.phpVersion}})
path: "/tmp/coverage/coverage.*.xml"
# - name: Upload the code coverage report (unit tests) as artifacts
# uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
# with:
# name: Code coverage (HTML) (${{matrix.database}}, stable${{matrix.coreVersion}}, ${{matrix.httpServer}}, ${{matrix.phpVersion}})
# path: "/tmp/coverage"
- name: Upload the junit log file artifact as artifact
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
with:
name: Junit test log files (${{matrix.database}}, stable${{matrix.coreVersion}}, ${{matrix.httpServer}}, ${{matrix.phpVersion}})
path: .github/actions/run-tests/volumes/coverage/junit*.xml
if: steps.ncVersionRequirements.outputs.matchingVersion == 'true' && always()
unit-tests-master:
name: Run the tests against the master branch of the NC server
runs-on: ubuntu-24.04
steps:
- name: Checkout the app
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
fetch-depth: 2
persist-credentials: false
- name: Ensure the appinfo is built
shell: bash
run: make appinfo/info.xml
#- name: Docker Layer Caching
#uses: satackey/action-docker-layer-caching@v0.0.8
- name: Prepare folder for installation of composer dependencies
run: mkdir -p vendor
- name: Install Python dependencies for test helper
run: cd .github/actions/run-tests && pip install -r requirements.txt
- name: Pull and build the test images
run: >-
cd .github/actions/run-tests &&
./run-locally.py
--pull
--create-images
--input-db mysql
--http-server nginx
--php-version 8.5
- name: Create the fixtures for the tests
run: >-
cd .github/actions/run-tests &&
./run-locally.py
--create-fixture default master
--activate-fixture default
--input-db mysql
--http-server nginx
--php-version latest
--install-untested
- name: Run the tests
run: >-
cd .github/actions/run-tests &&
./run-locally.py
--run-unit-tests
--run-integration-tests
--run-migration-tests
--extract-code-coverage
--keep-code-coverage
--install-composer-deps;
echo "test_result=$?" >> $GITHUB_ENV
- name: Export the annotations of unit tests to github
shell: bash
run: >-
if [ -r .github/actions/run-tests/volumes/coverage/teamcity.log ]; then
python .github/actions/run-tests/extract-annotations.py .github/actions/run-tests/volumes/coverage/teamcity.log ;
fi
- name: Export the annotations of integration tests to github
shell: bash
run: >-
if [ -r .github/actions/run-tests/volumes/coverage/teamcity.integration.log ]; then
python .github/actions/run-tests/extract-annotations.py .github/actions/run-tests/volumes/coverage/teamcity.integration.log ;
fi
- name: Export the annotations of migration tests to github
shell: bash
run: >-
if [ -r .github/actions/run-tests/volumes/coverage/teamcity.migration.log ]; then
python .github/actions/run-tests/extract-annotations.py .github/actions/run-tests/volumes/coverage/teamcity.migration.log ;
fi
# - name: Upload the coverage files as artifact
# uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
# with:
# name: Coverage files (mysql, master, apache)
# path: .github/actions/run-tests/volumes/coverage
# if: always()
- name: Upload the log file as artifact
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
if: always()
with:
name: Nextcloud-logs (mysql, master, apache)
path: .github/actions/run-tests/volumes/data/nextcloud.log
- name: Copy coverage-reports into non-link folder
shell: bash
run: >-
mkdir /tmp/coverage &&
rsync -a .github/actions/run-tests/volumes/coverage/latest/ /tmp/coverage
- name: Upload the code coverage report for codecov as artifacts
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
with:
name: Code coverage (XML) (mysql, master, apache)
path: "/tmp/coverage/coverage.*.xml"
- name: Upload the junit log file artifact as artifact
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
with:
name: Junit test log files (mysql, master, apache)
path: .github/actions/run-tests/volumes/coverage/junit*.xml
if: always()
upload-codecov:
name: Upload artifacts to codecov.io
needs:
- unit-tests
runs-on: ubuntu-24.04
steps:
- name: Create folder structure
run: mkdir artifacts code unit-coverage integration-coverage
- name: Download artifacts
if: ${{ github.event_name == 'push' }}
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
with:
path: artifacts
- name: Checkout of code base
if: ${{ github.event_name == 'push' }}
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
path: code
fetch-depth: 2
persist-credentials: false
- name: Download the uploader
if: ${{ github.event_name == 'push' }}
run: |
curl https://keybase.io/codecovsecurity/pgp_keys.asc | gpg --no-default-keyring --keyring trustedkeys.gpg --import
curl -Os https://uploader.codecov.io/latest/linux/codecov
curl -Os https://uploader.codecov.io/latest/linux/codecov.SHA256SUM
curl -Os https://uploader.codecov.io/latest/linux/codecov.SHA256SUM.sig
gpgv codecov.SHA256SUM.sig codecov.SHA256SUM
shasum -a 256 -c codecov.SHA256SUM
chmod +x codecov
- name: Copy Coverage reports to separate folders
if: ${{ github.event_name == 'push' }}
run: |
cd artifacts
for i in Code*
do
if [ -f "$i/coverage.unit.xml" ]; then
mkdir -p "../unit-coverage/$i"
cp "$i/coverage.unit.xml" "../unit-coverage/$i/coverage.xml"
fi
if [ -f "$i/coverage.integration.xml" ]; then
mkdir -p "../integration-coverage/$i"
cp "$i/coverage.integration.xml" "../integration-coverage/$i/coverage.xml"
fi
if [ -f "$i/coverage.migration.xml" ]; then
mkdir -p "../migration-coverage/$i"
cp "$i/coverage.migration.xml" "../migration-coverage/$i/coverage.xml"
fi
done
- name: Show file structure
if: ${{ github.event_name == 'push' }}
run: ls -lR *-coverage
- name: Upload unit test codecov reports
if: ${{ github.event_name == 'push' }}
run: >-
./codecov
-F unittests
-s unit-coverage
-R code
-X gcov
-v
- name: Upload integration test codecov reports
if: ${{ github.event_name == 'push' }}
run: >-
./codecov
-F integration
-s integration-coverage
-R code
-X gcov
-v
- name: Upload migration test codecov reports
if: ${{ github.event_name == 'push' }}
run: >-
./codecov
-F migration
-s migration-coverage
-R code
-X gcov
-v
source-package:
name: Create source code artifacts
runs-on: ubuntu-24.04
steps:
- name: Checkout the app
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
persist-credentials: false
- name: Setup node and NPM
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238
with:
node-version: '20'
- name: Install npm
shell: bash
run: npm install -g npm@^8
- name: Get the date
id: date
run: echo "date=$(date +%Y-%m-%d)" >> $GITHUB_OUTPUT
- name: Use cache for NPM
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
with:
path: |
~/.npm
node_modules
key: ${{ runner.os }}-node-${{ steps.date.outputs.date }}-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-${{ steps.date.outputs.date }}-
${{ runner.os }}-node-
- name: Use cache for Composer
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
with:
path: |
vendor
key: ${{ runner.os }}-composer-${{ steps.date.outputs.date }}-${{ hashFiles('composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-${{ steps.date.outputs.date }}-
${{ runner.os }}-composer-
- name: Install the NPM dependencies
shell: bash
run: >-
npm ci
- name: Install the dependencies for composer
shell: bash
run: >-
make composer_dist
- name: Build node app
shell: bash
run: >-
make npm
- name: Create the app store package
shell: bash
run: >-
make appstore_package_name=/tmp/appstore appstore
- name: Publish the app store package as artifact
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
with:
name: cookbook-appstore
path: /tmp/appstore.tar.gz
event_file:
name: "Upload Event File"
runs-on: ubuntu-24.04
steps:
- name: Upload
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
with:
name: Event File
path: ${{ github.event_path }}
retention-days: 1
lint-php:
name: "Lint PHP files to be compatible"
runs-on: ubuntu-24.04
defaults:
run:
shell: bash
steps:
- name: Checkout of the app
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
persist-credentials: false
- name: build docker container image
run: docker build -t php-lint-tester .github/actions/php-linter
- name: Check the code base
run: docker run --rm -v $(pwd):/work:ro php-lint-tester
run-jest:
name: "Run JS tests"
runs-on: ubuntu-24.04
defaults:
run:
shell: bash
steps:
- name: Checkout of the app
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
persist-credentials: false
- name: Get the date
id: date
run: echo "date=$(date +%Y-%m-%d)" >> $GITHUB_OUTPUT
- name: Cache NPM cache
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
with:
path: |
~/.npm
node_modules
key: ${{ runner.os }}-node-${{ steps.date.outputs.date }}-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-${{ steps.date.outputs.date }}-
${{ runner.os }}-node-
- name: Install the NPM dependencies
run: npm ci
- name: Run the tests
run: npm run ci-test
successful_run:
name: The tests have successfully run
runs-on: ubuntu-24.04
needs:
- unit-tests
- code-lint
- source-package
- lint-php
- event_file
- run-jest
steps:
- name: Run successfully
shell: bash
run: echo "The tests have been running successfully"