Add end-to-end tests to workflow #45
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 Serive | |
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 | |
codeql: | |
name: CodeQL | |
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} | |
needs: [integration-tests] | |
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }} | |
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}}" | |
end-to-end-tests: | |
name: End to End Tests | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
needs: [integration-tests] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install User dependencies | |
run: npm ci | |
working-directory: Services/UserWebApp | |
- name: Build User SvelteKit project | |
run: npm run build | |
working-directory: Services/UserWebApp | |
- name: Install Playwright Browsers | |
run: npx playwright install --with-deps | |
working-directory: Services/UserWebApp | |
- name: Run Playwright tests | |
run: npx playwright test | |
working-directory: Services/UserWebApp | |
- name: Install Admin dependencies | |
run: npm ci | |
working-directory: Services/AdminWebApp | |
- name: Build Admin SvelteKit project | |
run: npm run build | |
working-directory: Services/AdminWebApp | |
- name: Install Playwright Browsers | |
run: npx playwright install --with-deps | |
working-directory: Services/AdminWebApp | |
- name: Run Playwright tests | |
run: npx playwright test | |
working-directory: Services/AdminWebApp |