-
-
Notifications
You must be signed in to change notification settings - Fork 0
272 lines (229 loc) · 7.25 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
# 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:
account-service:
name: Account Service
runs-on: ubuntu-latest
env:
working-directory: Services/AccountService
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.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: 7.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: 7.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}}
integration-tests:
name: 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]
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: Test SNMP Details
run: dotnet test --logger "console;verbosity=detailed" --logger "trx;LogFileName=test-results.trx" Netmon.SNMPPolling.IntegrationTests.csproj
working-directory: ${{env.working-directory}}
- name: Test
run: |
ls -al
ls -al TestResults
cat TestResults/test-results.trx | tail -n 10
working-directory: ${{env.working-directory}}
- name: Integration Test Report
uses: dorny/test-reporter@v1
if: always()
with:
name: Integration Test Report
path: "**/test-results.trx"
reporter: dotnet-trx
fail-on-error: true
end-to-end-tests:
name: End to End Tests
runs-on: ubuntu-latest
needs: [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: [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
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