-
Notifications
You must be signed in to change notification settings - Fork 7
143 lines (139 loc) · 4.78 KB
/
test.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
name: Test
on:
pull_request:
push:
branches:
- main
- stable*
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: ['8.0', '8.1', '8.2']
nextcloud-version: ['master', 'stable27', 'stable26']
include:
- php-version: '8.0'
nextcloud-version: stable26
- php-version: '8.1'
nextcloud-version: stable26
name: Nextcloud ${{ matrix.nextcloud-version }} php${{ matrix.php-version }} unit tests
steps:
- name: Set up Nextcloud env
uses: ChristophWurst/setup-nextcloud@8bc31fe189b3cb3b44122dede08ce39e8932c554 # v0.3.1
with:
nextcloud-version: ${{ matrix.nextcloud-version }}
php-version: ${{ matrix.php-version }}
php-coverage: 'xdebug'
node-version: 'false'
install: true
- name: Checkout app
uses: actions/checkout@master
with:
path: nextcloud/apps/twofactor_webauthn
- name: Install dependencies
working-directory: nextcloud/apps/twofactor_webauthn
run: composer install
- name: Run tests
working-directory: nextcloud/apps/twofactor_webauthn
run: composer run test:unit
integration-tests:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [ '8.1' ]
nextcloud-version: [ 'master' ]
db: [ 'sqlite' ]
include:
- php-version: '8.1'
nextcloud-version: master
db: 'oci'
- php-version: '8.0'
nextcloud-version: stable26
db: 'pgsql'
- php-version: '8.0'
nextcloud-version: stable27
db: 'pgsql'
- php-version: '8.2'
nextcloud-version: master
db: 'mysql'
name: php${{ matrix.php-version }}-${{ matrix.db }} integration tests
services:
mysql-service:
image: mariadb:10.5
env:
MYSQL_ROOT_PASSWORD: my-secret-pw
MYSQL_DATABASE: nextcloud
MYSQL_USER: nextcloud
MYSQL_PASSWORD: nextcloud
ports:
- 3306:3306
options: >-
--health-cmd="mysqladmin ping"
--health-interval=10s
--health-timeout=5s
--health-retries=3
postgres-service:
image: postgres
env:
POSTGRES_USER: nextcloud
POSTGRES_DB: nextcloud
POSTGRES_PASSWORD: nextcloud
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
oracle:
image: deepdiver/docker-oracle-xe-11g
ports:
- 1521:1521/tcp
steps:
- name: Set up php${{ matrix.php-version }}
uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php-version }}
extensions: ctype,curl,dom,gd,iconv,intl,json,mbstring,openssl,posix,sqlite,xml,zip,gmp,oci8
coverage: xdebug
- name: Checkout Nextcloud
run: git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b ${{ matrix.nextcloud-version }} nextcloud
- name: Check out the app
uses: actions/checkout@master
with:
path: nextcloud/apps/twofactor_webauthn
- name: Install Nextcloud
if: ${{ matrix.db != 'oci' }}
run: php -f nextcloud/occ maintenance:install --database ${{ matrix.db }} --database-host 127.0.0.1 --database-name nextcloud --database-user nextcloud --database-pass nextcloud --admin-user admin --admin-pass admin
- name: Install Nextcloud
if: ${{ matrix.db == 'oci' }}
run: php -f nextcloud/occ maintenance:install --database ${{ matrix.db }} --database-host=127.0.0.1 --database-name=XE --database-port=1521 --database-user=autotest --database-pass=owncloud --admin-user admin --admin-pass admin
- name: Install dependencies
working-directory: nextcloud/apps/twofactor_webauthn
run: composer install
- name: Install the app
run: php -f nextcloud/occ app:enable twofactor_webauthn
- name: Configure Nextcloud for testing
run: |
php -f nextcloud/occ config:system:set debug --type bool --value true
- name: Run tests
working-directory: nextcloud/apps/twofactor_webauthn
run: composer run test:integration
env:
XDEBUG_MODE: coverage
frontend-unit-test:
runs-on: ubuntu-latest
name: Front-end unit tests
steps:
- uses: actions/checkout@master
- name: Set up Node
uses: actions/setup-node@f1f314fca9dfce2769ece7d933488f076716723e # v1
with:
node-version: 16.x
- name: npm install
run: npm install
- name: run tests
run: npm run test
env:
CI: true