-
-
Notifications
You must be signed in to change notification settings - Fork 0
354 lines (295 loc) · 9.87 KB
/
test_all.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
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Test and Deploy
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
actions: read
checks: write
jobs:
api-gateway:
name: API Gateway
runs-on: ubuntu-latest
env:
working-directory: Services/Netmon.APIGateway
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
working-directory: ${{env.working-directory}}
- name: Build
run: dotnet build --no-restore
working-directory: ${{env.working-directory}}
- name: Test
run: dotnet test --no-build --verbosity normal --collect:"XPlat Code Coverage" --results-directory ./TestResults
working-directory: ${{env.working-directory}}
account-service:
name: Account Service
runs-on: ubuntu-latest
env:
working-directory: Services/Netmon.AccountService
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
working-directory: ${{env.working-directory}}
- name: Build
run: dotnet build --no-restore
working-directory: ${{env.working-directory}}
- name: Test
run: dotnet test --no-build --verbosity normal --collect:"XPlat Code Coverage" --results-directory ./TestResults
working-directory: ${{env.working-directory}}
device-manager-service:
name: Device Manager Service
runs-on: ubuntu-latest
env:
working-directory: Services/Netmon.DeviceManager
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore DeviceManagerService.sln
working-directory: ${{env.working-directory}}
- name: Build
run: dotnet build --no-restore DeviceManagerService.sln
working-directory: ${{env.working-directory}}
- name: Test
run: dotnet test --no-build --verbosity normal --collect:"XPlat Code Coverage" --results-directory ./TestResults DeviceManagerService.sln
working-directory: ${{env.working-directory}}
snmp-polling-service:
name: SNMP Polling Service
runs-on: ubuntu-latest
env:
working-directory: Services/Netmon.SNMPPolling
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore SNMPPollingService.sln
working-directory: ${{env.working-directory}}
- name: Build
run: dotnet build --no-restore SNMPPollingService.sln
working-directory: ${{env.working-directory}}
- name: Test
run: dotnet test --no-build --verbosity normal --collect:"XPlat Code Coverage" --results-directory ./TestResults --settings runsettings.xml --logger "trx;LogFileName=test-results.trx" SNMPPollingService.sln
working-directory: ${{env.working-directory}}
- name: Unit Test Report
uses: dorny/test-reporter@v1
if: always()
with:
name: Unit Test Report
path: "**/test-results.trx"
reporter: dotnet-trx
fail-on-error: true
- name: Code Coverage Report
uses: irongut/CodeCoverageSummary@v1.3.0
with:
filename: Services/Netmon.SNMPPolling/TestResults/**/coverage.cobertura.xml
badge: true
fail_below_min: true
format: markdown
hide_branch_rate: false
hide_complexity: true
indicators: true
output: both
thresholds: '60 80'
- name: Print Reports
if: always()
run: cat code-coverage-results.md >> $GITHUB_STEP_SUMMARY
user-web-app:
name: User Web App
timeout-minutes: 20
runs-on: ubuntu-latest
env:
working-directory: Services/UserWebApp
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm ci
working-directory: ${{env.working-directory}}
- name: Build SvelteKit project
run: npm run build
working-directory: ${{env.working-directory}}
admin-web-app:
name: Admin Web App
timeout-minutes: 20
runs-on: ubuntu-latest
env:
working-directory: Services/AdminWebApp
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm ci
working-directory: ${{env.working-directory}}
- name: Build SvelteKit project
run: npm run build
working-directory: ${{env.working-directory}}
snmp-polling-service-integration-tests:
name: SNMP Polling Service Integration Tests
runs-on: ubuntu-latest
env:
working-directory: Tests/Netmon.SNMPPolling.IntegrationTests
needs: [account-service, device-manager-service, snmp-polling-service, user-web-app, admin-web-app, api-gateway]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Docker Compose Action
uses: isbang/compose-action@v1.5.1
with:
compose-file: "./docker-compose.yml"
services: |
netmon-snmp-test-agent
netmon-mysql
- name: Run Integration Tests
run: dotnet test --logger "console;verbosity=detailed" --logger "trx;LogFileName=test-results.trx" Netmon.SNMPPolling.IntegrationTests.csproj
working-directory: ${{env.working-directory}}
- name: Integration Test Report
uses: dorny/test-reporter@v1
if: always()
with:
name: SNMP Polling Service Integration Test Report
path: "**/test-results.trx"
reporter: dotnet-trx
fail-on-error: true
device-manager-service-integration-tests:
name: Device Manager Service Integration Tests
runs-on: ubuntu-latest
env:
working-directory: Tests/Netmon.DeviceManager.IntegrationTests
needs: [account-service, device-manager-service, snmp-polling-service, user-web-app, admin-web-app, api-gateway]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run MySQL
run: docker-compose up -d netmon-mysql
- name: Run MongoDB
run: docker-compose up -d netmon-mongo
- name: Run Account Service
run: docker-compose up -d --build netmon-account-service
- name: Run Integration Tests
run: dotnet test --logger "console;verbosity=detailed" --logger "trx;LogFileName=test-results.trx" Netmon.DeviceManager.IntegrationTests.csproj
working-directory: ${{env.working-directory}}
- name: Integration Test Report
uses: dorny/test-reporter@v1
if: always()
with:
name: Device Manager Service Integration Test Report
path: "**/test-results.trx"
reporter: dotnet-trx
fail-on-error: true
- name: Log Docker
if: always()
run: docker logs netmon-account-service
end-to-end-tests:
name: End to End Tests
runs-on: ubuntu-latest
needs: [snmp-polling-service-integration-tests, device-manager-service-integration-tests]
timeout-minutes: 60
strategy:
fail-fast: true
matrix:
service: [ 'netmon-admin-web-app', 'netmon-user-web-app' ]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Docker Compose MySQL
run: docker-compose up -d --build netmon-mysql
- name: Docker Compose
run: docker-compose up -d --build
- name: Install dependencies
run: |
docker exec ${{matrix.service}} npm install vitest
docker exec ${{matrix.service}} npx playwright install --with-deps
- name: Run Tests
run: docker exec ${{matrix.service}} npx playwright test
codeql:
name: CodeQL
runs-on: ubuntu-latest
needs: [snmp-polling-service-integration-tests, device-manager-service-integration-tests]
timeout-minutes: 60
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'csharp', 'javascript' ]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v2
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"
deploy:
name: Deploy Docker Images
runs-on: ubuntu-latest
needs: [codeql, end-to-end-tests]
timeout-minutes: 20
steps:
- name: Log into Docker Hub
uses: docker/login-action@v2
with:
username: daqem
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Checkout repository
uses: actions/checkout@v3
- name: Build Images
run: docker-compose build
- name: Deploy Images
run: docker-compose push
test-deploy:
name: Test Deployed Images
runs-on: ubuntu-latest
needs: [deploy]
timeout-minutes: 20
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Sleep 2 minutes
run: sleep 2m
- name: Change directory
run: cd Deployment
- name: Start MySQL
run: docker-compose up -d --build netmon-mysql
- name: Start Environment
run: docker-compose up -d --build
- name: Install E2E dependencies
run: |
docker exec netmon-admin-web-app npm install vitest
docker exec netmon-admin-web-app npx playwright install --with-deps
- name: Run E2E Tests
run: docker exec netmon-admin-web-app npx playwright test