-
-
Notifications
You must be signed in to change notification settings - Fork 47
318 lines (275 loc) · 8.24 KB
/
test-core.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
name: Test boyka-framework project
on:
pull_request:
branches:
- main
paths:
- 'core-java/**'
- '.github/**'
push:
branches:
- main
paths:
- 'core-java/**'
concurrency:
group: boyka-tests-${{ github.ref }}-1
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Install Java and Maven
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'
check-latest: true
- name: Build the project
run: mvn clean install -f core-java/pom.xml -DskipTests
check-cloud:
runs-on: ubuntu-latest
needs:
- build
env:
LT_USER: ${{ secrets.LT_USER }}
BS_USER: ${{ secrets.BS_USER }}
outputs:
bs-present: ${{ steps.bs-secrets.outputs.present }}
lt-present: ${{ steps.lt-secrets.outputs.present }}
steps:
- name: Check BrowserStack secrets presence
id: bs-secrets
shell: bash
run: |
if [ "$BS_USER" == "" ]; then
echo "present=NO" >> $GITHUB_OUTPUT
else
echo "present=YES" >> $GITHUB_OUTPUT
fi
- name: Check BrowserStack secrets presence
id: lt-secrets
shell: bash
run: |
if [ "$LT_USER" == "" ]; then
echo "present=NO" >> $GITHUB_OUTPUT
else
echo "present=YES" >> $GITHUB_OUTPUT
fi
test-api:
needs:
- check-cloud
uses: ./.github/workflows/_test-core-java.yml
with:
suite-name: testng-api
test-others:
needs:
- check-cloud
uses: ./.github/workflows/_test-core-java.yml
with:
suite-name: testng-others
test-web-local:
needs:
- check-cloud
uses: ./.github/workflows/_test-core-java.yml
with:
suite-name: testng-web-local
runs-on: macos-latest
test-web-bs:
needs:
- check-cloud
if: ${{ needs.check-cloud.outputs.bs-present == 'YES' }}
uses: ./.github/workflows/_test-core-java.yml
secrets:
cloudUser: ${{ secrets.BS_USER }}
cloudKey: ${{ secrets.BS_KEY }}
with:
suite-name: testng-web-bs
test-web-lt:
needs:
- check-cloud
if: ${{ needs.check-cloud.outputs.lt-present == 'YES' }}
uses: ./.github/workflows/_test-core-java.yml
secrets:
cloudUser: ${{ secrets.LT_USER }}
cloudKey: ${{ secrets.LT_KEY }}
with:
suite-name: testng-web-lt
test-web-grid:
needs:
- check-cloud
uses: ./.github/workflows/_test-core-java.yml
with:
suite-name: testng-web-grid
run-grid: true
test-mobile-local:
needs:
- check-cloud
uses: ./.github/workflows/_test-core-java.yml
with:
runs-on: macos-latest
suite-name: testng-mobile-local
run-appium: true
run-ios: true
run-android: true
emulator-channel: canary
emulator-arch: x86
emulator-target: aosp_atd
test-mobile-web:
needs:
- check-cloud
uses: ./.github/workflows/_test-core-java.yml
with:
runs-on: macos-latest
suite-name: testng-mobile-web
run-appium: true
run-ios: true
run-android: true
emulator-target: playstore
test-mobile-bs:
needs:
- check-cloud
if: ${{ needs.check-cloud.outputs.bs-present == 'YES' }}
uses: ./.github/workflows/_test-core-java.yml
secrets:
cloudUser: ${{ secrets.BS_USER }}
cloudKey: ${{ secrets.BS_KEY }}
with:
suite-name: testng-mobile-bs
test-mobile-lt:
needs:
- check-cloud
if: ${{ needs.check-cloud.outputs.lt-present == 'YES' }}
uses: ./.github/workflows/_test-core-java.yml
secrets:
cloudUser: ${{ secrets.LT_USER }}
cloudKey: ${{ secrets.LT_KEY }}
with:
suite-name: testng-mobile-lt
report:
needs:
- test-api
- test-others
- test-web-local
- test-web-bs
- test-web-lt
- test-web-grid
- test-mobile-local
- test-mobile-web
- test-mobile-bs
- test-mobile-lt
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Install Java and Maven
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'
check-latest: true
- name: Download reports-testng-api files
uses: actions/download-artifact@v3
with:
name: reports-testng-api
path: ${{ github.workspace }}/core-java/reports
- name: Download reports-testng-mobile-bs files
uses: actions/download-artifact@v3
with:
name: reports-testng-mobile-bs
path: ${{ github.workspace }}/core-java/reports
- name: Download reports-testng-mobile-local files
uses: actions/download-artifact@v3
with:
name: reports-testng-mobile-local
path: ${{ github.workspace }}/core-java/reports
- name: Download reports-testng-mobile-web files
uses: actions/download-artifact@v3
with:
name: reports-testng-mobile-web
path: ${{ github.workspace }}/core-java/reports
- name: Download reports-testng-mobile-lt files
uses: actions/download-artifact@v3
with:
name: reports-testng-mobile-lt
path: ${{ github.workspace }}/core-java/reports
- name: Download reports-testng-others files
uses: actions/download-artifact@v3
with:
name: reports-testng-others
path: ${{ github.workspace }}/core-java/reports
- name: Download reports-testng-web-bs files
uses: actions/download-artifact@v3
with:
name: reports-testng-web-bs
path: ${{ github.workspace }}/core-java/reports
- name: Download reports-testng-web-grid files
uses: actions/download-artifact@v3
with:
name: reports-testng-web-grid
path: ${{ github.workspace }}/core-java/reports
- name: Download reports-testng-web-local files
uses: actions/download-artifact@v3
with:
name: reports-testng-web-local
path: ${{ github.workspace }}/core-java/reports
- name: Download reports-testng-web-lt files
uses: actions/download-artifact@v3
with:
name: reports-testng-web-lt
path: ${{ github.workspace }}/core-java/reports
- name: Generate Code Coverage Report
run: |
mvn verify org.jacoco:jacoco-maven-plugin:prepare-agent -f core-java/pom.xml -Pcoverage-report
- name: Upload target folder
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: target-${{ github.run_id }}
retention-days: 1
path: |
${{ github.workspace }}/core-java/target
${{ github.workspace }}/core-java/logs
${{ github.workspace }}/core-java/selenium-grid.log
${{ github.workspace }}/core-java/screenshots
- name: Upload reports folder
uses: actions/upload-artifact@v3
with:
name: reports-${{ github.run_id }}
retention-days: 1
path: |
${{ github.workspace }}/core-java/reports
analysis:
needs:
- report
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Java and Maven
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: 'maven'
check-latest: true
- name: Download target folder
uses: actions/download-artifact@v3
with:
name: target-${{ github.run_id }}
path: ${{ github.workspace }}/core-java
- name: Download reports folder
uses: actions/download-artifact@v3
with:
name: reports-${{ github.run_id }}
path: ${{ github.workspace }}/core-java
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: mvn -B sonar:sonar -f core-java/pom.xml -DskipTests -Dcheckstyle.skip