-
Notifications
You must be signed in to change notification settings - Fork 7
272 lines (251 loc) · 10.4 KB
/
testing.js.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
name: Testing
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
inputs:
useRealFrontend:
description: If true, test the frontend inside the backend
type: boolean
default: false
required: true
mergeMasterToBranch:
description: If true, the checkout-out backend is merged with the backend master
type: boolean
default: false
required: true
frontendCommitToCheckout:
description: Tag or branch of ladybug-frontend to check out - timestamp releases are not tagged
required: false
backendCommitToCheckout:
description: Tag or branch of the backend to test against
required: false
jobs:
testing:
strategy:
matrix:
include:
- spring-profile: none
selected-specs: cypress/e2e/no-profile/**
- spring-profile: storage.xml
selected-specs: cypress/e2e/storage-xml/**
name: Unit tests
runs-on: ubuntu-latest
steps:
- name: Echo inputs
run: echo "useRealFrontend=${{ github.event.inputs.useRealFrontend}}, mergeMasterToBranch=${{ github.event.inputs.mergeMasterToBranch}}, frontendCommitToCheckout=${{ github.event.inputs.frontendCommitToCheckout}}, backendCommitToCheckout=${{ github.event.inputs.backendCommitToCheckout }}"
- name: Show chosen Spring profile for backend and chosen specs to run
run: echo "Start backend with Spring profile ${{ matrix.spring-profile }} and run specs ${{ matrix.selected-specs }}"
- name: Checkout repository
uses: actions/checkout@v2
with:
path: ladybug-frontend
- name: Fetch all tags
if: ${{ github.event.inputs.frontendCommitToCheckout }}
run: git fetch --all --tags
working-directory: "ladybug-frontend"
- name: Checkout required version
if: ${{ github.event.inputs.frontendCommitToCheckout }}
run: git checkout ${{ github.event.inputs.frontendCommitToCheckout }}
working-directory: "ladybug-frontend"
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
cache-dependency-path: 'ladybug-frontend/pnpm-lock.yaml'
- name: Get pnpm store directory
id: store-path
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ steps.store-path.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install --frozen-lockfile
working-directory: ladybug-frontend
- name: Install Cypress
run: npx cypress install
working-directory: ladybug-frontend
- uses: actions/cache@v4
name: Cache Cypress
with:
path: ~/.cache/Cypress
key: ${{ runner.os }}-cypress-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-cypress-
- name: Set Cypress environment variables
run: cp .github/workflows/cypress.env.json.cicd cypress.env.json
working-directory: ladybug-frontend
- name: Run linter
run: pnpm run lint
if: ${{ github.event.inputs.useRealFrontend != 'true' }}
working-directory: ladybug-frontend
- name: Build project
run: pnpm run build
if: ${{ github.event.inputs.useRealFrontend != 'true' }}
working-directory: ladybug-frontend
- name: Run unit tests
run: pnpm run test-headless
if: ${{ github.event.inputs.useRealFrontend != 'true' }}
working-directory: ladybug-frontend
continue-on-error: false
- name: Checkout frank-runner
uses: actions/checkout@v2
with:
repository: wearefrank/frank-runner
path: frank-runner
- name: Set property to skip backend unit tests
run: echo "maven.skip.tests=true" > frank-runner/specials/ladybug/build.properties
- name: Set properties to skip backend Javadoc
run: echo "maven.skip.javadoc=true" >> frank-runner/specials/ladybug/build.properties
- name: Set property to skip checking licenses
run: echo "maven.skip.copyright=true" >> frank-runner/specials/ladybug/build.properties
- name: Choose Spring profile for backend if it is not "none"
run: echo "spring.profiles.active=${{ matrix.spring-profile }}" >> frank-runner/specials/ladybug/build.properties
if: ${{ matrix.spring-profile != 'none' }}
- name: Set port where ladybug-test-webapp is served
run: echo "tomcat.connector.port=8090" > frank-runner/build.properties
- name: Prevent Java exception about binding port 443 (for https)
run: echo "tomcat.secure.port=8443" >> frank-runner/build.properties
- name: Make script executable that starts backend
run: chmod a+x frank-runner/specials/ladybug/restart.sh
- name: Checkout ladybug
uses: actions/checkout@v2
with:
repository: wearefrank/ladybug
path: ladybug
- name: Fetch all tags of ladybug
if: ${{ github.event.inputs.backendCommitToCheckout }}
run: git fetch --all --tags
working-directory: "ladybug"
- name: Checkout required version of ladybug
if: ${{ github.event.inputs.backendCommitToCheckout }}
run: git checkout ${{ github.event.inputs.backendCommitToCheckout }}
working-directory: "ladybug"
- name: Merge backend with its master
if: ${{ github.event.inputs.mergeMasterToBranch == 'true' }}
run: git merge master
working-directory: "ladybug"
- name: Checkout ladybug-test-webapp
uses: actions/checkout@v2
with:
repository: wearefrank/ladybug-test-webapp
path: ladybug-test-webapp
- name: Cache Frank!Runner dependencies - build
uses: actions/cache@v3
with:
path: frank-runner/build
key: ${{ runner.os }}-frank-runner-build
restore-keys: |
${{ runner.os }}-frank-runner-build
- name: Cache Frank!Runner dependencies - download
uses: actions/cache@v3
with:
path: frank-runner/download
key: ${{ runner.os }}-frank-runner-download
restore-keys: |
${{ runner.os }}-frank-runner-download
- name: Cache Maven downloads
uses: actions/cache@v3
with:
path: ~/.m2/repository/
key: ${{ runner.os }}-maven
restore-keys: |
${{ runner.os }}-maven
- name: Remove old Tomcat version to keep it out of cache
run: rm -rf frank-runner/download/apache-tomcat-9*; rm -rf frank-runner/build/apache-tomcat-9*;
- name: Show current time, allows you to check that logs are not old
run: date
- name: Remove old catalina.out
run: rm -rf frank-runner/build/apache-tomcat-9.0.56/logs/catalina.out
- name: Let Frank!Runner do its downloads
run: ./env.sh > installFrankRunnerEnv.log
working-directory: frank-runner
- name: Start server using Frank!Runner in background
run: ./restart.sh -Dupdate.strategy=none > serverStartLog.log
working-directory: frank-runner/specials/ladybug
- name: Run cypress with chrome browser (bypass ladybug-frontend within backend)
uses: cypress-io/[email protected]
if: ${{ github.event.inputs.useRealFrontend != 'true' }}
with:
working-directory: ladybug-frontend
start: |
pnpm ng serve --proxy-config .github/workflows/proxy.cicd.conf.json --host 0.0.0.0
wait-on: "http://0.0.0.0:8090, http://0.0.0.0:4200"
wait-on-timeout: 1000
spec: ${{ matrix.selected-specs }}
browser: chrome
- name: Run cypress with chrome browser (production frontend that is included in backend)
uses: cypress-io/[email protected]
if: ${{ github.event.inputs.useRealFrontend == 'true' }}
with:
working-directory: ladybug-frontend
wait-on: "http://0.0.0.0:8090"
wait-on-timeout: 1000
spec: ${{ matrix.selected-specs }}
config: baseUrl=http://localhost:8090/ladybug
browser: chrome
- name: Show files
run: tree -d -L 5 .
if: always()
- name: Store log of Frank!Runner downloads
uses: actions/upload-artifact@v4
if: always()
with:
name: installFrankRunnerEnv.log ${{ matrix.spring-profile }}
path: frank-runner/installFrankRunnerEnv.log
- name: Store log of starting the server with the Frank!Runner
uses: actions/upload-artifact@v4
if: always()
with:
name: serverStartLog.log ${{ matrix.spring-profile }}
path: frank-runner/specials/ladybug/serverStartLog.log
- name: Store build.properties
uses: actions/upload-artifact@v4
if: always()
with:
name: specials_build.properties ${{ matrix.spring-profile }}
path: frank-runner/specials/ladybug/build.properties
- name: Store Apache Tomcat log
uses: actions/upload-artifact@v4
if: always()
with:
name: logs ${{ matrix.spring-profile }}
path: frank-runner/build/*/logs/*
- name: Store Cypress screenshots
uses: actions/upload-artifact@v4
if: always()
with:
name: screenshots ${{ matrix.spring-profile }}
path: ladybug-frontend/cypress/screenshots/
- name: Store Cypress videos
uses: actions/upload-artifact@v4
if: always()
with:
name: videos ${{ matrix.spring-profile }}
path: ladybug-frontend/cypress/videos/
- name: Store Cypress screenshots for Firefox
uses: actions/upload-artifact@v4
if: always()
with:
name: Firefix screenshots ${{ matrix.spring-profile }}
path: ladybug-frontend/cypress/firefox/screenshots/
- name: Store Cypress videos for Firefox
uses: actions/upload-artifact@v4
if: always()
with:
name: Firefox videos ${{ matrix.spring-profile }}
path: ladybug-frontend/cypress/firefox/videos/