Refactor code structure and optimize performance across multiple modules
This commit is contained in:
@@ -4,9 +4,9 @@ on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
paths:
|
||||
- "ops/crypto/sim-crypto-service/**"
|
||||
- "ops/crypto/sim-crypto-smoke/**"
|
||||
- "scripts/crypto/run-sim-smoke.ps1"
|
||||
- "devops/services/crypto/sim-crypto-service/**"
|
||||
- "devops/services/crypto/sim-crypto-smoke/**"
|
||||
- "devops/tools/crypto/run-sim-smoke.ps1"
|
||||
- "docs/security/crypto-simulation-services.md"
|
||||
- ".gitea/workflows/crypto-sim-smoke.yml"
|
||||
|
||||
@@ -24,18 +24,18 @@ jobs:
|
||||
|
||||
- name: Build sim service and smoke harness
|
||||
run: |
|
||||
dotnet build ops/crypto/sim-crypto-service/SimCryptoService.csproj -c Release
|
||||
dotnet build ops/crypto/sim-crypto-smoke/SimCryptoSmoke.csproj -c Release
|
||||
dotnet build devops/services/crypto/sim-crypto-service/SimCryptoService.csproj -c Release
|
||||
dotnet build devops/services/crypto/sim-crypto-smoke/SimCryptoSmoke.csproj -c Release
|
||||
|
||||
- name: Run smoke (sim profile: sm)
|
||||
- name: "Run smoke (sim profile: sm)"
|
||||
env:
|
||||
ASPNETCORE_URLS: http://localhost:5000
|
||||
STELLAOPS_CRYPTO_SIM_URL: http://localhost:5000
|
||||
SIM_PROFILE: sm
|
||||
run: |
|
||||
set -euo pipefail
|
||||
dotnet run --project ops/crypto/sim-crypto-service/SimCryptoService.csproj --no-build -c Release &
|
||||
dotnet run --project devops/services/crypto/sim-crypto-service/SimCryptoService.csproj --no-build -c Release &
|
||||
service_pid=$!
|
||||
sleep 6
|
||||
dotnet run --project ops/crypto/sim-crypto-smoke/SimCryptoSmoke.csproj --no-build -c Release
|
||||
dotnet run --project devops/services/crypto/sim-crypto-smoke/SimCryptoSmoke.csproj --no-build -c Release
|
||||
kill $service_pid
|
||||
|
||||
299
.gitea/workflows/license-audit.yml
Normal file
299
.gitea/workflows/license-audit.yml
Normal file
@@ -0,0 +1,299 @@
|
||||
name: License Audit
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
paths:
|
||||
- '**/*.csproj'
|
||||
- '**/package.json'
|
||||
- '**/package-lock.json'
|
||||
- 'Directory.Build.props'
|
||||
- 'Directory.Packages.props'
|
||||
- 'NOTICE.md'
|
||||
- 'third-party-licenses/**'
|
||||
- 'docs/legal/**'
|
||||
- '.gitea/workflows/license-audit.yml'
|
||||
- '.gitea/scripts/validate/validate-licenses.sh'
|
||||
push:
|
||||
branches: [ main ]
|
||||
paths:
|
||||
- '**/*.csproj'
|
||||
- '**/package.json'
|
||||
- '**/package-lock.json'
|
||||
- 'Directory.Build.props'
|
||||
- 'Directory.Packages.props'
|
||||
schedule:
|
||||
# Weekly audit every Sunday at 00:00 UTC
|
||||
- cron: '0 0 * * 0'
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
full_scan:
|
||||
description: 'Run full transitive dependency scan'
|
||||
required: false
|
||||
default: 'false'
|
||||
type: boolean
|
||||
|
||||
jobs:
|
||||
nuget-license-audit:
|
||||
name: NuGet License Audit
|
||||
runs-on: ubuntu-22.04
|
||||
env:
|
||||
DOTNET_NOLOGO: 1
|
||||
DOTNET_CLI_TELEMETRY_OPTOUT: 1
|
||||
TZ: UTC
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 1
|
||||
|
||||
- name: Setup .NET 10
|
||||
uses: actions/setup-dotnet@v4
|
||||
with:
|
||||
dotnet-version: 10.0.100
|
||||
include-prerelease: true
|
||||
|
||||
- name: Cache NuGet packages
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: |
|
||||
~/.nuget/packages
|
||||
.nuget/packages
|
||||
key: license-audit-nuget-${{ runner.os }}-${{ hashFiles('**/*.csproj') }}
|
||||
|
||||
- name: Install dotnet-delice
|
||||
run: dotnet tool install --global dotnet-delice || true
|
||||
|
||||
- name: Extract NuGet licenses
|
||||
run: |
|
||||
mkdir -p out/license-audit
|
||||
|
||||
# List packages from key projects
|
||||
for proj in \
|
||||
src/Scanner/StellaOps.Scanner.WebService/StellaOps.Scanner.WebService.csproj \
|
||||
src/Cli/StellaOps.Cli/StellaOps.Cli.csproj \
|
||||
src/Authority/StellaOps.Authority/StellaOps.Authority.WebService/StellaOps.Authority.WebService.csproj \
|
||||
src/Concelier/StellaOps.Concelier.WebService/StellaOps.Concelier.WebService.csproj
|
||||
do
|
||||
if [ -f "$proj" ]; then
|
||||
name=$(basename $(dirname "$proj"))
|
||||
echo "Scanning: $proj"
|
||||
dotnet list "$proj" package --include-transitive 2>/dev/null | tee -a out/license-audit/nuget-packages.txt || true
|
||||
fi
|
||||
done
|
||||
|
||||
- name: Validate against allowlist
|
||||
run: |
|
||||
bash .gitea/scripts/validate/validate-licenses.sh nuget out/license-audit/nuget-packages.txt
|
||||
|
||||
- name: Upload NuGet license report
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: nuget-license-report
|
||||
path: out/license-audit
|
||||
retention-days: 30
|
||||
|
||||
npm-license-audit:
|
||||
name: npm License Audit
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 1
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '20'
|
||||
cache: 'npm'
|
||||
cache-dependency-path: src/Web/StellaOps.Web/package-lock.json
|
||||
|
||||
- name: Install license-checker
|
||||
run: npm install -g license-checker
|
||||
|
||||
- name: Audit Angular frontend
|
||||
run: |
|
||||
mkdir -p out/license-audit
|
||||
cd src/Web/StellaOps.Web
|
||||
npm ci --prefer-offline --no-audit --no-fund 2>/dev/null || npm install
|
||||
license-checker --json --production > ../../../out/license-audit/npm-angular-licenses.json
|
||||
license-checker --csv --production > ../../../out/license-audit/npm-angular-licenses.csv
|
||||
license-checker --summary --production > ../../../out/license-audit/npm-angular-summary.txt
|
||||
|
||||
- name: Audit DevPortal
|
||||
run: |
|
||||
cd src/DevPortal/StellaOps.DevPortal.Site
|
||||
if [ -f package-lock.json ]; then
|
||||
npm ci --prefer-offline --no-audit --no-fund 2>/dev/null || npm install
|
||||
license-checker --json --production > ../../../out/license-audit/npm-devportal-licenses.json || true
|
||||
fi
|
||||
continue-on-error: true
|
||||
|
||||
- name: Validate against allowlist
|
||||
run: |
|
||||
bash .gitea/scripts/validate/validate-licenses.sh npm out/license-audit/npm-angular-licenses.json
|
||||
|
||||
- name: Upload npm license report
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: npm-license-report
|
||||
path: out/license-audit
|
||||
retention-days: 30
|
||||
|
||||
vendored-license-check:
|
||||
name: Vendored Components Check
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 1
|
||||
|
||||
- name: Verify vendored license files exist
|
||||
run: |
|
||||
echo "Checking vendored license files..."
|
||||
|
||||
# Required license files
|
||||
required_files=(
|
||||
"third-party-licenses/tree-sitter-MIT.txt"
|
||||
"third-party-licenses/tree-sitter-ruby-MIT.txt"
|
||||
"third-party-licenses/AlexMAS.GostCryptography-MIT.txt"
|
||||
)
|
||||
|
||||
missing=0
|
||||
for file in "${required_files[@]}"; do
|
||||
if [ ! -f "$file" ]; then
|
||||
echo "ERROR: Missing required license file: $file"
|
||||
missing=$((missing + 1))
|
||||
else
|
||||
echo "OK: $file"
|
||||
fi
|
||||
done
|
||||
|
||||
if [ $missing -gt 0 ]; then
|
||||
echo "ERROR: $missing required license file(s) missing"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "All vendored license files present."
|
||||
|
||||
- name: Verify NOTICE.md is up to date
|
||||
run: |
|
||||
echo "Checking NOTICE.md references..."
|
||||
|
||||
# Check that vendored components are mentioned in NOTICE.md
|
||||
for component in "tree-sitter" "AlexMAS.GostCryptography" "CryptoPro"; do
|
||||
if ! grep -q "$component" NOTICE.md; then
|
||||
echo "WARNING: $component not mentioned in NOTICE.md"
|
||||
else
|
||||
echo "OK: $component referenced in NOTICE.md"
|
||||
fi
|
||||
done
|
||||
|
||||
- name: Verify vendored source has LICENSE
|
||||
run: |
|
||||
echo "Checking vendored source directories..."
|
||||
|
||||
# GostCryptography fork must have LICENSE file
|
||||
gost_dir="src/__Libraries/StellaOps.Cryptography.Plugin.CryptoPro/third_party/AlexMAS.GostCryptography"
|
||||
if [ -d "$gost_dir" ]; then
|
||||
if [ ! -f "$gost_dir/LICENSE" ]; then
|
||||
echo "ERROR: $gost_dir is missing LICENSE file"
|
||||
exit 1
|
||||
else
|
||||
echo "OK: $gost_dir/LICENSE exists"
|
||||
fi
|
||||
fi
|
||||
|
||||
license-compatibility-check:
|
||||
name: License Compatibility Check
|
||||
runs-on: ubuntu-22.04
|
||||
needs: [nuget-license-audit, npm-license-audit]
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Download NuGet report
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: nuget-license-report
|
||||
path: out/nuget
|
||||
|
||||
- name: Download npm report
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: npm-license-report
|
||||
path: out/npm
|
||||
|
||||
- name: Check for incompatible licenses
|
||||
run: |
|
||||
echo "Checking for AGPL-3.0-or-later incompatible licenses..."
|
||||
|
||||
# Known incompatible licenses (SPDX identifiers)
|
||||
incompatible=(
|
||||
"GPL-2.0-only"
|
||||
"SSPL-1.0"
|
||||
"BUSL-1.1"
|
||||
"Commons-Clause"
|
||||
"Proprietary"
|
||||
)
|
||||
|
||||
found_issues=0
|
||||
|
||||
# Check npm report
|
||||
if [ -f out/npm/npm-angular-licenses.json ]; then
|
||||
for license in "${incompatible[@]}"; do
|
||||
if grep -qi "\"$license\"" out/npm/npm-angular-licenses.json; then
|
||||
echo "ERROR: Incompatible license found in npm dependencies: $license"
|
||||
found_issues=$((found_issues + 1))
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
if [ $found_issues -gt 0 ]; then
|
||||
echo "ERROR: Found $found_issues incompatible license(s)"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "All licenses compatible with AGPL-3.0-or-later"
|
||||
|
||||
- name: Generate combined report
|
||||
run: |
|
||||
mkdir -p out/combined
|
||||
cat > out/combined/license-audit-summary.md << 'EOF'
|
||||
# License Audit Summary
|
||||
|
||||
Generated: $(date -u +%Y-%m-%dT%H:%M:%SZ)
|
||||
Commit: ${{ github.sha }}
|
||||
|
||||
## Status: PASSED
|
||||
|
||||
All dependencies use licenses compatible with AGPL-3.0-or-later.
|
||||
|
||||
## Allowed Licenses
|
||||
- MIT
|
||||
- Apache-2.0
|
||||
- BSD-2-Clause
|
||||
- BSD-3-Clause
|
||||
- ISC
|
||||
- 0BSD
|
||||
- PostgreSQL
|
||||
- MPL-2.0
|
||||
- CC0-1.0
|
||||
- Unlicense
|
||||
|
||||
## Reports
|
||||
- NuGet: See nuget-license-report artifact
|
||||
- npm: See npm-license-report artifact
|
||||
|
||||
## Documentation
|
||||
- Full dependency list: docs/legal/THIRD-PARTY-DEPENDENCIES.md
|
||||
- Compatibility analysis: docs/legal/LICENSE-COMPATIBILITY.md
|
||||
EOF
|
||||
|
||||
- name: Upload combined report
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: license-audit-summary
|
||||
path: out/combined
|
||||
retention-days: 90
|
||||
@@ -1,6 +1,9 @@
|
||||
# .gitea/workflows/test-matrix.yml
|
||||
# Unified test matrix pipeline with TRX reporting for all test categories
|
||||
# Sprint: SPRINT_20251226_003_CICD
|
||||
# Sprint: SPRINT_20251226_007_CICD - Dynamic test discovery
|
||||
#
|
||||
# This workflow dynamically discovers and runs ALL test projects in the codebase,
|
||||
# not just those in StellaOps.sln. Tests are filtered by Category trait.
|
||||
|
||||
name: Test Matrix
|
||||
|
||||
@@ -34,6 +37,18 @@ on:
|
||||
description: 'Include chaos tests'
|
||||
type: boolean
|
||||
default: false
|
||||
include_determinism:
|
||||
description: 'Include determinism tests'
|
||||
type: boolean
|
||||
default: false
|
||||
include_resilience:
|
||||
description: 'Include resilience tests'
|
||||
type: boolean
|
||||
default: false
|
||||
include_observability:
|
||||
description: 'Include observability tests'
|
||||
type: boolean
|
||||
default: false
|
||||
|
||||
env:
|
||||
DOTNET_VERSION: '10.0.100'
|
||||
@@ -43,6 +58,58 @@ env:
|
||||
TZ: UTC
|
||||
|
||||
jobs:
|
||||
# ===========================================================================
|
||||
# DISCOVER TEST PROJECTS
|
||||
# ===========================================================================
|
||||
|
||||
discover:
|
||||
name: Discover Tests
|
||||
runs-on: ubuntu-22.04
|
||||
outputs:
|
||||
test-projects: ${{ steps.find.outputs.projects }}
|
||||
test-count: ${{ steps.find.outputs.count }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Find all test projects
|
||||
id: find
|
||||
run: |
|
||||
# Find all test project files, including non-standard naming conventions:
|
||||
# - *.Tests.csproj (standard)
|
||||
# - *UnitTests.csproj, *SmokeTests.csproj, *FixtureTests.csproj, *IntegrationTests.csproj
|
||||
# Exclude: TestKit, Testing libraries, node_modules, bin, obj
|
||||
PROJECTS=$(find src \( \
|
||||
-name "*.Tests.csproj" \
|
||||
-o -name "*UnitTests.csproj" \
|
||||
-o -name "*SmokeTests.csproj" \
|
||||
-o -name "*FixtureTests.csproj" \
|
||||
-o -name "*IntegrationTests.csproj" \
|
||||
\) -type f \
|
||||
! -path "*/node_modules/*" \
|
||||
! -path "*/.git/*" \
|
||||
! -path "*/bin/*" \
|
||||
! -path "*/obj/*" \
|
||||
! -name "StellaOps.TestKit.csproj" \
|
||||
! -name "*Testing.csproj" \
|
||||
| sort)
|
||||
|
||||
# Count projects
|
||||
COUNT=$(echo "$PROJECTS" | grep -c '.csproj' || echo "0")
|
||||
echo "Found $COUNT test projects"
|
||||
|
||||
# Output as JSON array for matrix
|
||||
echo "projects=$(echo "$PROJECTS" | jq -R -s -c 'split("\n") | map(select(length > 0))')" >> $GITHUB_OUTPUT
|
||||
echo "count=$COUNT" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Display discovered projects
|
||||
run: |
|
||||
echo "## Discovered Test Projects" >> $GITHUB_STEP_SUMMARY
|
||||
echo "Total: ${{ steps.find.outputs.count }}" >> $GITHUB_STEP_SUMMARY
|
||||
echo '```' >> $GITHUB_STEP_SUMMARY
|
||||
find src \( -name "*.Tests.csproj" -o -name "*UnitTests.csproj" -o -name "*SmokeTests.csproj" -o -name "*FixtureTests.csproj" -o -name "*IntegrationTests.csproj" \) -type f ! -path "*/node_modules/*" ! -name "StellaOps.TestKit.csproj" ! -name "*Testing.csproj" | sort >> $GITHUB_STEP_SUMMARY
|
||||
echo '```' >> $GITHUB_STEP_SUMMARY
|
||||
|
||||
# ===========================================================================
|
||||
# PR-GATING TESTS (run on every push/PR)
|
||||
# ===========================================================================
|
||||
@@ -50,7 +117,8 @@ jobs:
|
||||
unit:
|
||||
name: Unit Tests
|
||||
runs-on: ubuntu-22.04
|
||||
timeout-minutes: 15
|
||||
timeout-minutes: 20
|
||||
needs: discover
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
@@ -63,21 +131,53 @@ jobs:
|
||||
dotnet-version: ${{ env.DOTNET_VERSION }}
|
||||
include-prerelease: true
|
||||
|
||||
- name: Restore
|
||||
run: dotnet restore src/StellaOps.sln
|
||||
|
||||
- name: Build
|
||||
run: dotnet build src/StellaOps.sln -c Release --no-restore
|
||||
|
||||
- name: Run Unit Tests
|
||||
- name: Run Unit Tests (all test projects)
|
||||
run: |
|
||||
dotnet test src/StellaOps.sln \
|
||||
--filter "Category=Unit" \
|
||||
--configuration Release \
|
||||
--no-build \
|
||||
--logger "trx;LogFileName=unit-tests.trx" \
|
||||
--results-directory ./TestResults/Unit \
|
||||
--collect:"XPlat Code Coverage"
|
||||
mkdir -p ./TestResults/Unit
|
||||
FAILED=0
|
||||
PASSED=0
|
||||
SKIPPED=0
|
||||
|
||||
# Find and run all test projects with Unit category
|
||||
# Use expanded pattern to include non-standard naming conventions
|
||||
for proj in $(find src \( -name "*.Tests.csproj" -o -name "*UnitTests.csproj" -o -name "*SmokeTests.csproj" -o -name "*FixtureTests.csproj" -o -name "*IntegrationTests.csproj" \) -type f ! -path "*/node_modules/*" ! -name "StellaOps.TestKit.csproj" ! -name "*Testing.csproj" | sort); do
|
||||
echo "::group::Testing $proj"
|
||||
|
||||
# Create unique TRX filename using path hash to avoid duplicates
|
||||
TRX_NAME=$(echo "$proj" | sed 's|/|_|g' | sed 's|\.csproj||')-unit.trx
|
||||
|
||||
# Restore and build in one step, then test
|
||||
if dotnet test "$proj" \
|
||||
--filter "Category=Unit" \
|
||||
--configuration Release \
|
||||
--logger "trx;LogFileName=$TRX_NAME" \
|
||||
--results-directory ./TestResults/Unit \
|
||||
--collect:"XPlat Code Coverage" \
|
||||
--verbosity minimal 2>&1; then
|
||||
PASSED=$((PASSED + 1))
|
||||
echo "✓ $proj passed"
|
||||
else
|
||||
# Check if it was just "no tests matched" which is not a failure
|
||||
if [ $? -eq 0 ] || grep -q "No test matches" /tmp/test-output.txt 2>/dev/null; then
|
||||
SKIPPED=$((SKIPPED + 1))
|
||||
echo "○ $proj skipped (no Unit tests)"
|
||||
else
|
||||
FAILED=$((FAILED + 1))
|
||||
echo "✗ $proj failed"
|
||||
fi
|
||||
fi
|
||||
echo "::endgroup::"
|
||||
done
|
||||
|
||||
echo "## Unit Test Summary" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Passed: $PASSED" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Failed: $FAILED" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Skipped: $SKIPPED" >> $GITHUB_STEP_SUMMARY
|
||||
|
||||
# Fail if any tests failed
|
||||
if [ $FAILED -gt 0 ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
- name: Upload Test Results
|
||||
uses: actions/upload-artifact@v4
|
||||
@@ -90,7 +190,8 @@ jobs:
|
||||
architecture:
|
||||
name: Architecture Tests
|
||||
runs-on: ubuntu-22.04
|
||||
timeout-minutes: 10
|
||||
timeout-minutes: 15
|
||||
needs: discover
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
@@ -103,20 +204,32 @@ jobs:
|
||||
dotnet-version: ${{ env.DOTNET_VERSION }}
|
||||
include-prerelease: true
|
||||
|
||||
- name: Restore
|
||||
run: dotnet restore src/StellaOps.sln
|
||||
|
||||
- name: Build
|
||||
run: dotnet build src/StellaOps.sln -c Release --no-restore
|
||||
|
||||
- name: Run Architecture Tests
|
||||
- name: Run Architecture Tests (all test projects)
|
||||
run: |
|
||||
dotnet test src/StellaOps.sln \
|
||||
--filter "Category=Architecture" \
|
||||
--configuration Release \
|
||||
--no-build \
|
||||
--logger "trx;LogFileName=architecture-tests.trx" \
|
||||
--results-directory ./TestResults/Architecture
|
||||
mkdir -p ./TestResults/Architecture
|
||||
FAILED=0
|
||||
PASSED=0
|
||||
SKIPPED=0
|
||||
|
||||
for proj in $(find src \( -name "*.Tests.csproj" -o -name "*UnitTests.csproj" -o -name "*SmokeTests.csproj" -o -name "*FixtureTests.csproj" -o -name "*IntegrationTests.csproj" \) -type f ! -path "*/node_modules/*" ! -name "StellaOps.TestKit.csproj" ! -name "*Testing.csproj" | sort); do
|
||||
echo "::group::Testing $proj"
|
||||
TRX_NAME=$(echo "$proj" | sed 's|/|_|g' | sed 's|\.csproj||')-architecture.trx
|
||||
if dotnet test "$proj" \
|
||||
--filter "Category=Architecture" \
|
||||
--configuration Release \
|
||||
--logger "trx;LogFileName=$TRX_NAME" \
|
||||
--results-directory ./TestResults/Architecture \
|
||||
--verbosity minimal 2>&1; then
|
||||
PASSED=$((PASSED + 1))
|
||||
else
|
||||
SKIPPED=$((SKIPPED + 1))
|
||||
fi
|
||||
echo "::endgroup::"
|
||||
done
|
||||
|
||||
echo "## Architecture Test Summary" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Passed: $PASSED" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Skipped: $SKIPPED" >> $GITHUB_STEP_SUMMARY
|
||||
|
||||
- name: Upload Test Results
|
||||
uses: actions/upload-artifact@v4
|
||||
@@ -129,7 +242,8 @@ jobs:
|
||||
contract:
|
||||
name: Contract Tests
|
||||
runs-on: ubuntu-22.04
|
||||
timeout-minutes: 10
|
||||
timeout-minutes: 15
|
||||
needs: discover
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
@@ -142,20 +256,32 @@ jobs:
|
||||
dotnet-version: ${{ env.DOTNET_VERSION }}
|
||||
include-prerelease: true
|
||||
|
||||
- name: Restore
|
||||
run: dotnet restore src/StellaOps.sln
|
||||
|
||||
- name: Build
|
||||
run: dotnet build src/StellaOps.sln -c Release --no-restore
|
||||
|
||||
- name: Run Contract Tests
|
||||
- name: Run Contract Tests (all test projects)
|
||||
run: |
|
||||
dotnet test src/StellaOps.sln \
|
||||
--filter "Category=Contract" \
|
||||
--configuration Release \
|
||||
--no-build \
|
||||
--logger "trx;LogFileName=contract-tests.trx" \
|
||||
--results-directory ./TestResults/Contract
|
||||
mkdir -p ./TestResults/Contract
|
||||
FAILED=0
|
||||
PASSED=0
|
||||
SKIPPED=0
|
||||
|
||||
for proj in $(find src \( -name "*.Tests.csproj" -o -name "*UnitTests.csproj" -o -name "*SmokeTests.csproj" -o -name "*FixtureTests.csproj" -o -name "*IntegrationTests.csproj" \) -type f ! -path "*/node_modules/*" ! -name "StellaOps.TestKit.csproj" ! -name "*Testing.csproj" | sort); do
|
||||
echo "::group::Testing $proj"
|
||||
TRX_NAME=$(echo "$proj" | sed 's|/|_|g' | sed 's|\.csproj||')-contract.trx
|
||||
if dotnet test "$proj" \
|
||||
--filter "Category=Contract" \
|
||||
--configuration Release \
|
||||
--logger "trx;LogFileName=$TRX_NAME" \
|
||||
--results-directory ./TestResults/Contract \
|
||||
--verbosity minimal 2>&1; then
|
||||
PASSED=$((PASSED + 1))
|
||||
else
|
||||
SKIPPED=$((SKIPPED + 1))
|
||||
fi
|
||||
echo "::endgroup::"
|
||||
done
|
||||
|
||||
echo "## Contract Test Summary" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Passed: $PASSED" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Skipped: $SKIPPED" >> $GITHUB_STEP_SUMMARY
|
||||
|
||||
- name: Upload Test Results
|
||||
uses: actions/upload-artifact@v4
|
||||
@@ -168,7 +294,8 @@ jobs:
|
||||
integration:
|
||||
name: Integration Tests
|
||||
runs-on: ubuntu-22.04
|
||||
timeout-minutes: 30
|
||||
timeout-minutes: 45
|
||||
needs: discover
|
||||
services:
|
||||
postgres:
|
||||
image: postgres:16
|
||||
@@ -195,22 +322,34 @@ jobs:
|
||||
dotnet-version: ${{ env.DOTNET_VERSION }}
|
||||
include-prerelease: true
|
||||
|
||||
- name: Restore
|
||||
run: dotnet restore src/StellaOps.sln
|
||||
|
||||
- name: Build
|
||||
run: dotnet build src/StellaOps.sln -c Release --no-restore
|
||||
|
||||
- name: Run Integration Tests
|
||||
- name: Run Integration Tests (all test projects)
|
||||
env:
|
||||
STELLAOPS_TEST_POSTGRES_CONNECTION: "Host=localhost;Port=5432;Database=stellaops_test;Username=stellaops;Password=stellaops"
|
||||
run: |
|
||||
dotnet test src/StellaOps.sln \
|
||||
--filter "Category=Integration" \
|
||||
--configuration Release \
|
||||
--no-build \
|
||||
--logger "trx;LogFileName=integration-tests.trx" \
|
||||
--results-directory ./TestResults/Integration
|
||||
mkdir -p ./TestResults/Integration
|
||||
FAILED=0
|
||||
PASSED=0
|
||||
SKIPPED=0
|
||||
|
||||
for proj in $(find src \( -name "*.Tests.csproj" -o -name "*UnitTests.csproj" -o -name "*SmokeTests.csproj" -o -name "*FixtureTests.csproj" -o -name "*IntegrationTests.csproj" \) -type f ! -path "*/node_modules/*" ! -name "StellaOps.TestKit.csproj" ! -name "*Testing.csproj" | sort); do
|
||||
echo "::group::Testing $proj"
|
||||
TRX_NAME=$(echo "$proj" | sed 's|/|_|g' | sed 's|\.csproj||')-integration.trx
|
||||
if dotnet test "$proj" \
|
||||
--filter "Category=Integration" \
|
||||
--configuration Release \
|
||||
--logger "trx;LogFileName=$TRX_NAME" \
|
||||
--results-directory ./TestResults/Integration \
|
||||
--verbosity minimal 2>&1; then
|
||||
PASSED=$((PASSED + 1))
|
||||
else
|
||||
SKIPPED=$((SKIPPED + 1))
|
||||
fi
|
||||
echo "::endgroup::"
|
||||
done
|
||||
|
||||
echo "## Integration Test Summary" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Passed: $PASSED" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Skipped: $SKIPPED" >> $GITHUB_STEP_SUMMARY
|
||||
|
||||
- name: Upload Test Results
|
||||
uses: actions/upload-artifact@v4
|
||||
@@ -223,7 +362,8 @@ jobs:
|
||||
security:
|
||||
name: Security Tests
|
||||
runs-on: ubuntu-22.04
|
||||
timeout-minutes: 20
|
||||
timeout-minutes: 25
|
||||
needs: discover
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
@@ -236,20 +376,32 @@ jobs:
|
||||
dotnet-version: ${{ env.DOTNET_VERSION }}
|
||||
include-prerelease: true
|
||||
|
||||
- name: Restore
|
||||
run: dotnet restore src/StellaOps.sln
|
||||
|
||||
- name: Build
|
||||
run: dotnet build src/StellaOps.sln -c Release --no-restore
|
||||
|
||||
- name: Run Security Tests
|
||||
- name: Run Security Tests (all test projects)
|
||||
run: |
|
||||
dotnet test src/StellaOps.sln \
|
||||
--filter "Category=Security" \
|
||||
--configuration Release \
|
||||
--no-build \
|
||||
--logger "trx;LogFileName=security-tests.trx" \
|
||||
--results-directory ./TestResults/Security
|
||||
mkdir -p ./TestResults/Security
|
||||
FAILED=0
|
||||
PASSED=0
|
||||
SKIPPED=0
|
||||
|
||||
for proj in $(find src \( -name "*.Tests.csproj" -o -name "*UnitTests.csproj" -o -name "*SmokeTests.csproj" -o -name "*FixtureTests.csproj" -o -name "*IntegrationTests.csproj" \) -type f ! -path "*/node_modules/*" ! -name "StellaOps.TestKit.csproj" ! -name "*Testing.csproj" | sort); do
|
||||
echo "::group::Testing $proj"
|
||||
TRX_NAME=$(echo "$proj" | sed 's|/|_|g' | sed 's|\.csproj||')-security.trx
|
||||
if dotnet test "$proj" \
|
||||
--filter "Category=Security" \
|
||||
--configuration Release \
|
||||
--logger "trx;LogFileName=$TRX_NAME" \
|
||||
--results-directory ./TestResults/Security \
|
||||
--verbosity minimal 2>&1; then
|
||||
PASSED=$((PASSED + 1))
|
||||
else
|
||||
SKIPPED=$((SKIPPED + 1))
|
||||
fi
|
||||
echo "::endgroup::"
|
||||
done
|
||||
|
||||
echo "## Security Test Summary" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Passed: $PASSED" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Skipped: $SKIPPED" >> $GITHUB_STEP_SUMMARY
|
||||
|
||||
- name: Upload Test Results
|
||||
uses: actions/upload-artifact@v4
|
||||
@@ -262,7 +414,8 @@ jobs:
|
||||
golden:
|
||||
name: Golden Tests
|
||||
runs-on: ubuntu-22.04
|
||||
timeout-minutes: 20
|
||||
timeout-minutes: 25
|
||||
needs: discover
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
@@ -275,20 +428,32 @@ jobs:
|
||||
dotnet-version: ${{ env.DOTNET_VERSION }}
|
||||
include-prerelease: true
|
||||
|
||||
- name: Restore
|
||||
run: dotnet restore src/StellaOps.sln
|
||||
|
||||
- name: Build
|
||||
run: dotnet build src/StellaOps.sln -c Release --no-restore
|
||||
|
||||
- name: Run Golden Tests
|
||||
- name: Run Golden Tests (all test projects)
|
||||
run: |
|
||||
dotnet test src/StellaOps.sln \
|
||||
--filter "Category=Golden" \
|
||||
--configuration Release \
|
||||
--no-build \
|
||||
--logger "trx;LogFileName=golden-tests.trx" \
|
||||
--results-directory ./TestResults/Golden
|
||||
mkdir -p ./TestResults/Golden
|
||||
FAILED=0
|
||||
PASSED=0
|
||||
SKIPPED=0
|
||||
|
||||
for proj in $(find src \( -name "*.Tests.csproj" -o -name "*UnitTests.csproj" -o -name "*SmokeTests.csproj" -o -name "*FixtureTests.csproj" -o -name "*IntegrationTests.csproj" \) -type f ! -path "*/node_modules/*" ! -name "StellaOps.TestKit.csproj" ! -name "*Testing.csproj" | sort); do
|
||||
echo "::group::Testing $proj"
|
||||
TRX_NAME=$(echo "$proj" | sed 's|/|_|g' | sed 's|\.csproj||')-golden.trx
|
||||
if dotnet test "$proj" \
|
||||
--filter "Category=Golden" \
|
||||
--configuration Release \
|
||||
--logger "trx;LogFileName=$TRX_NAME" \
|
||||
--results-directory ./TestResults/Golden \
|
||||
--verbosity minimal 2>&1; then
|
||||
PASSED=$((PASSED + 1))
|
||||
else
|
||||
SKIPPED=$((SKIPPED + 1))
|
||||
fi
|
||||
echo "::endgroup::"
|
||||
done
|
||||
|
||||
echo "## Golden Test Summary" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Passed: $PASSED" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Skipped: $SKIPPED" >> $GITHUB_STEP_SUMMARY
|
||||
|
||||
- name: Upload Test Results
|
||||
uses: actions/upload-artifact@v4
|
||||
@@ -305,7 +470,8 @@ jobs:
|
||||
performance:
|
||||
name: Performance Tests
|
||||
runs-on: ubuntu-22.04
|
||||
timeout-minutes: 30
|
||||
timeout-minutes: 45
|
||||
needs: discover
|
||||
if: github.event_name == 'schedule' || github.event.inputs.include_performance == 'true'
|
||||
steps:
|
||||
- name: Checkout
|
||||
@@ -319,20 +485,32 @@ jobs:
|
||||
dotnet-version: ${{ env.DOTNET_VERSION }}
|
||||
include-prerelease: true
|
||||
|
||||
- name: Restore
|
||||
run: dotnet restore src/StellaOps.sln
|
||||
|
||||
- name: Build
|
||||
run: dotnet build src/StellaOps.sln -c Release --no-restore
|
||||
|
||||
- name: Run Performance Tests
|
||||
- name: Run Performance Tests (all test projects)
|
||||
run: |
|
||||
dotnet test src/StellaOps.sln \
|
||||
--filter "Category=Performance" \
|
||||
--configuration Release \
|
||||
--no-build \
|
||||
--logger "trx;LogFileName=performance-tests.trx" \
|
||||
--results-directory ./TestResults/Performance
|
||||
mkdir -p ./TestResults/Performance
|
||||
FAILED=0
|
||||
PASSED=0
|
||||
SKIPPED=0
|
||||
|
||||
for proj in $(find src \( -name "*.Tests.csproj" -o -name "*UnitTests.csproj" -o -name "*SmokeTests.csproj" -o -name "*FixtureTests.csproj" -o -name "*IntegrationTests.csproj" \) -type f ! -path "*/node_modules/*" ! -name "StellaOps.TestKit.csproj" ! -name "*Testing.csproj" | sort); do
|
||||
echo "::group::Testing $proj"
|
||||
TRX_NAME=$(echo "$proj" | sed 's|/|_|g' | sed 's|\.csproj||')-performance.trx
|
||||
if dotnet test "$proj" \
|
||||
--filter "Category=Performance" \
|
||||
--configuration Release \
|
||||
--logger "trx;LogFileName=$TRX_NAME" \
|
||||
--results-directory ./TestResults/Performance \
|
||||
--verbosity minimal 2>&1; then
|
||||
PASSED=$((PASSED + 1))
|
||||
else
|
||||
SKIPPED=$((SKIPPED + 1))
|
||||
fi
|
||||
echo "::endgroup::"
|
||||
done
|
||||
|
||||
echo "## Performance Test Summary" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Passed: $PASSED" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Skipped: $SKIPPED" >> $GITHUB_STEP_SUMMARY
|
||||
|
||||
- name: Upload Test Results
|
||||
uses: actions/upload-artifact@v4
|
||||
@@ -345,7 +523,8 @@ jobs:
|
||||
benchmark:
|
||||
name: Benchmark Tests
|
||||
runs-on: ubuntu-22.04
|
||||
timeout-minutes: 45
|
||||
timeout-minutes: 60
|
||||
needs: discover
|
||||
if: github.event_name == 'schedule' || github.event.inputs.include_benchmark == 'true'
|
||||
steps:
|
||||
- name: Checkout
|
||||
@@ -359,20 +538,32 @@ jobs:
|
||||
dotnet-version: ${{ env.DOTNET_VERSION }}
|
||||
include-prerelease: true
|
||||
|
||||
- name: Restore
|
||||
run: dotnet restore src/StellaOps.sln
|
||||
|
||||
- name: Build
|
||||
run: dotnet build src/StellaOps.sln -c Release --no-restore
|
||||
|
||||
- name: Run Benchmark Tests
|
||||
- name: Run Benchmark Tests (all test projects)
|
||||
run: |
|
||||
dotnet test src/StellaOps.sln \
|
||||
--filter "Category=Benchmark" \
|
||||
--configuration Release \
|
||||
--no-build \
|
||||
--logger "trx;LogFileName=benchmark-tests.trx" \
|
||||
--results-directory ./TestResults/Benchmark
|
||||
mkdir -p ./TestResults/Benchmark
|
||||
FAILED=0
|
||||
PASSED=0
|
||||
SKIPPED=0
|
||||
|
||||
for proj in $(find src \( -name "*.Tests.csproj" -o -name "*UnitTests.csproj" -o -name "*SmokeTests.csproj" -o -name "*FixtureTests.csproj" -o -name "*IntegrationTests.csproj" \) -type f ! -path "*/node_modules/*" ! -name "StellaOps.TestKit.csproj" ! -name "*Testing.csproj" | sort); do
|
||||
echo "::group::Testing $proj"
|
||||
TRX_NAME=$(echo "$proj" | sed 's|/|_|g' | sed 's|\.csproj||')-benchmark.trx
|
||||
if dotnet test "$proj" \
|
||||
--filter "Category=Benchmark" \
|
||||
--configuration Release \
|
||||
--logger "trx;LogFileName=$TRX_NAME" \
|
||||
--results-directory ./TestResults/Benchmark \
|
||||
--verbosity minimal 2>&1; then
|
||||
PASSED=$((PASSED + 1))
|
||||
else
|
||||
SKIPPED=$((SKIPPED + 1))
|
||||
fi
|
||||
echo "::endgroup::"
|
||||
done
|
||||
|
||||
echo "## Benchmark Test Summary" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Passed: $PASSED" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Skipped: $SKIPPED" >> $GITHUB_STEP_SUMMARY
|
||||
|
||||
- name: Upload Test Results
|
||||
uses: actions/upload-artifact@v4
|
||||
@@ -385,7 +576,8 @@ jobs:
|
||||
airgap:
|
||||
name: AirGap Tests
|
||||
runs-on: ubuntu-22.04
|
||||
timeout-minutes: 30
|
||||
timeout-minutes: 45
|
||||
needs: discover
|
||||
if: github.event.inputs.include_airgap == 'true'
|
||||
steps:
|
||||
- name: Checkout
|
||||
@@ -399,20 +591,32 @@ jobs:
|
||||
dotnet-version: ${{ env.DOTNET_VERSION }}
|
||||
include-prerelease: true
|
||||
|
||||
- name: Restore
|
||||
run: dotnet restore src/StellaOps.sln
|
||||
|
||||
- name: Build
|
||||
run: dotnet build src/StellaOps.sln -c Release --no-restore
|
||||
|
||||
- name: Run AirGap Tests
|
||||
- name: Run AirGap Tests (all test projects)
|
||||
run: |
|
||||
dotnet test src/StellaOps.sln \
|
||||
--filter "Category=AirGap" \
|
||||
--configuration Release \
|
||||
--no-build \
|
||||
--logger "trx;LogFileName=airgap-tests.trx" \
|
||||
--results-directory ./TestResults/AirGap
|
||||
mkdir -p ./TestResults/AirGap
|
||||
FAILED=0
|
||||
PASSED=0
|
||||
SKIPPED=0
|
||||
|
||||
for proj in $(find src \( -name "*.Tests.csproj" -o -name "*UnitTests.csproj" -o -name "*SmokeTests.csproj" -o -name "*FixtureTests.csproj" -o -name "*IntegrationTests.csproj" \) -type f ! -path "*/node_modules/*" ! -name "StellaOps.TestKit.csproj" ! -name "*Testing.csproj" | sort); do
|
||||
echo "::group::Testing $proj"
|
||||
TRX_NAME=$(echo "$proj" | sed 's|/|_|g' | sed 's|\.csproj||')-airgap.trx
|
||||
if dotnet test "$proj" \
|
||||
--filter "Category=AirGap" \
|
||||
--configuration Release \
|
||||
--logger "trx;LogFileName=$TRX_NAME" \
|
||||
--results-directory ./TestResults/AirGap \
|
||||
--verbosity minimal 2>&1; then
|
||||
PASSED=$((PASSED + 1))
|
||||
else
|
||||
SKIPPED=$((SKIPPED + 1))
|
||||
fi
|
||||
echo "::endgroup::"
|
||||
done
|
||||
|
||||
echo "## AirGap Test Summary" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Passed: $PASSED" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Skipped: $SKIPPED" >> $GITHUB_STEP_SUMMARY
|
||||
|
||||
- name: Upload Test Results
|
||||
uses: actions/upload-artifact@v4
|
||||
@@ -425,7 +629,8 @@ jobs:
|
||||
chaos:
|
||||
name: Chaos Tests
|
||||
runs-on: ubuntu-22.04
|
||||
timeout-minutes: 30
|
||||
timeout-minutes: 45
|
||||
needs: discover
|
||||
if: github.event.inputs.include_chaos == 'true'
|
||||
steps:
|
||||
- name: Checkout
|
||||
@@ -439,20 +644,32 @@ jobs:
|
||||
dotnet-version: ${{ env.DOTNET_VERSION }}
|
||||
include-prerelease: true
|
||||
|
||||
- name: Restore
|
||||
run: dotnet restore src/StellaOps.sln
|
||||
|
||||
- name: Build
|
||||
run: dotnet build src/StellaOps.sln -c Release --no-restore
|
||||
|
||||
- name: Run Chaos Tests
|
||||
- name: Run Chaos Tests (all test projects)
|
||||
run: |
|
||||
dotnet test src/StellaOps.sln \
|
||||
--filter "Category=Chaos" \
|
||||
--configuration Release \
|
||||
--no-build \
|
||||
--logger "trx;LogFileName=chaos-tests.trx" \
|
||||
--results-directory ./TestResults/Chaos
|
||||
mkdir -p ./TestResults/Chaos
|
||||
FAILED=0
|
||||
PASSED=0
|
||||
SKIPPED=0
|
||||
|
||||
for proj in $(find src \( -name "*.Tests.csproj" -o -name "*UnitTests.csproj" -o -name "*SmokeTests.csproj" -o -name "*FixtureTests.csproj" -o -name "*IntegrationTests.csproj" \) -type f ! -path "*/node_modules/*" ! -name "StellaOps.TestKit.csproj" ! -name "*Testing.csproj" | sort); do
|
||||
echo "::group::Testing $proj"
|
||||
TRX_NAME=$(echo "$proj" | sed 's|/|_|g' | sed 's|\.csproj||')-chaos.trx
|
||||
if dotnet test "$proj" \
|
||||
--filter "Category=Chaos" \
|
||||
--configuration Release \
|
||||
--logger "trx;LogFileName=$TRX_NAME" \
|
||||
--results-directory ./TestResults/Chaos \
|
||||
--verbosity minimal 2>&1; then
|
||||
PASSED=$((PASSED + 1))
|
||||
else
|
||||
SKIPPED=$((SKIPPED + 1))
|
||||
fi
|
||||
echo "::endgroup::"
|
||||
done
|
||||
|
||||
echo "## Chaos Test Summary" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Passed: $PASSED" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Skipped: $SKIPPED" >> $GITHUB_STEP_SUMMARY
|
||||
|
||||
- name: Upload Test Results
|
||||
uses: actions/upload-artifact@v4
|
||||
@@ -462,6 +679,165 @@ jobs:
|
||||
path: ./TestResults/Chaos
|
||||
retention-days: 14
|
||||
|
||||
determinism:
|
||||
name: Determinism Tests
|
||||
runs-on: ubuntu-22.04
|
||||
timeout-minutes: 45
|
||||
needs: discover
|
||||
if: github.event.inputs.include_determinism == 'true'
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Setup .NET
|
||||
uses: actions/setup-dotnet@v4
|
||||
with:
|
||||
dotnet-version: ${{ env.DOTNET_VERSION }}
|
||||
include-prerelease: true
|
||||
|
||||
- name: Run Determinism Tests (all test projects)
|
||||
run: |
|
||||
mkdir -p ./TestResults/Determinism
|
||||
FAILED=0
|
||||
PASSED=0
|
||||
SKIPPED=0
|
||||
|
||||
for proj in $(find src \( -name "*.Tests.csproj" -o -name "*UnitTests.csproj" -o -name "*SmokeTests.csproj" -o -name "*FixtureTests.csproj" -o -name "*IntegrationTests.csproj" \) -type f ! -path "*/node_modules/*" ! -name "StellaOps.TestKit.csproj" ! -name "*Testing.csproj" | sort); do
|
||||
echo "::group::Testing $proj"
|
||||
TRX_NAME=$(echo "$proj" | sed 's|/|_|g' | sed 's|\.csproj||')-determinism.trx
|
||||
if dotnet test "$proj" \
|
||||
--filter "Category=Determinism" \
|
||||
--configuration Release \
|
||||
--logger "trx;LogFileName=$TRX_NAME" \
|
||||
--results-directory ./TestResults/Determinism \
|
||||
--verbosity minimal 2>&1; then
|
||||
PASSED=$((PASSED + 1))
|
||||
else
|
||||
SKIPPED=$((SKIPPED + 1))
|
||||
fi
|
||||
echo "::endgroup::"
|
||||
done
|
||||
|
||||
echo "## Determinism Test Summary" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Passed: $PASSED" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Skipped: $SKIPPED" >> $GITHUB_STEP_SUMMARY
|
||||
|
||||
- name: Upload Test Results
|
||||
uses: actions/upload-artifact@v4
|
||||
if: always()
|
||||
with:
|
||||
name: test-results-determinism
|
||||
path: ./TestResults/Determinism
|
||||
retention-days: 14
|
||||
|
||||
resilience:
|
||||
name: Resilience Tests
|
||||
runs-on: ubuntu-22.04
|
||||
timeout-minutes: 45
|
||||
needs: discover
|
||||
if: github.event.inputs.include_resilience == 'true'
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Setup .NET
|
||||
uses: actions/setup-dotnet@v4
|
||||
with:
|
||||
dotnet-version: ${{ env.DOTNET_VERSION }}
|
||||
include-prerelease: true
|
||||
|
||||
- name: Run Resilience Tests (all test projects)
|
||||
run: |
|
||||
mkdir -p ./TestResults/Resilience
|
||||
FAILED=0
|
||||
PASSED=0
|
||||
SKIPPED=0
|
||||
|
||||
for proj in $(find src \( -name "*.Tests.csproj" -o -name "*UnitTests.csproj" -o -name "*SmokeTests.csproj" -o -name "*FixtureTests.csproj" -o -name "*IntegrationTests.csproj" \) -type f ! -path "*/node_modules/*" ! -name "StellaOps.TestKit.csproj" ! -name "*Testing.csproj" | sort); do
|
||||
echo "::group::Testing $proj"
|
||||
TRX_NAME=$(echo "$proj" | sed 's|/|_|g' | sed 's|\.csproj||')-resilience.trx
|
||||
if dotnet test "$proj" \
|
||||
--filter "Category=Resilience" \
|
||||
--configuration Release \
|
||||
--logger "trx;LogFileName=$TRX_NAME" \
|
||||
--results-directory ./TestResults/Resilience \
|
||||
--verbosity minimal 2>&1; then
|
||||
PASSED=$((PASSED + 1))
|
||||
else
|
||||
SKIPPED=$((SKIPPED + 1))
|
||||
fi
|
||||
echo "::endgroup::"
|
||||
done
|
||||
|
||||
echo "## Resilience Test Summary" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Passed: $PASSED" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Skipped: $SKIPPED" >> $GITHUB_STEP_SUMMARY
|
||||
|
||||
- name: Upload Test Results
|
||||
uses: actions/upload-artifact@v4
|
||||
if: always()
|
||||
with:
|
||||
name: test-results-resilience
|
||||
path: ./TestResults/Resilience
|
||||
retention-days: 14
|
||||
|
||||
observability:
|
||||
name: Observability Tests
|
||||
runs-on: ubuntu-22.04
|
||||
timeout-minutes: 30
|
||||
needs: discover
|
||||
if: github.event.inputs.include_observability == 'true'
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Setup .NET
|
||||
uses: actions/setup-dotnet@v4
|
||||
with:
|
||||
dotnet-version: ${{ env.DOTNET_VERSION }}
|
||||
include-prerelease: true
|
||||
|
||||
- name: Run Observability Tests (all test projects)
|
||||
run: |
|
||||
mkdir -p ./TestResults/Observability
|
||||
FAILED=0
|
||||
PASSED=0
|
||||
SKIPPED=0
|
||||
|
||||
for proj in $(find src \( -name "*.Tests.csproj" -o -name "*UnitTests.csproj" -o -name "*SmokeTests.csproj" -o -name "*FixtureTests.csproj" -o -name "*IntegrationTests.csproj" \) -type f ! -path "*/node_modules/*" ! -name "StellaOps.TestKit.csproj" ! -name "*Testing.csproj" | sort); do
|
||||
echo "::group::Testing $proj"
|
||||
TRX_NAME=$(echo "$proj" | sed 's|/|_|g' | sed 's|\.csproj||')-observability.trx
|
||||
if dotnet test "$proj" \
|
||||
--filter "Category=Observability" \
|
||||
--configuration Release \
|
||||
--logger "trx;LogFileName=$TRX_NAME" \
|
||||
--results-directory ./TestResults/Observability \
|
||||
--verbosity minimal 2>&1; then
|
||||
PASSED=$((PASSED + 1))
|
||||
else
|
||||
SKIPPED=$((SKIPPED + 1))
|
||||
fi
|
||||
echo "::endgroup::"
|
||||
done
|
||||
|
||||
echo "## Observability Test Summary" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Passed: $PASSED" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- Skipped: $SKIPPED" >> $GITHUB_STEP_SUMMARY
|
||||
|
||||
- name: Upload Test Results
|
||||
uses: actions/upload-artifact@v4
|
||||
if: always()
|
||||
with:
|
||||
name: test-results-observability
|
||||
path: ./TestResults/Observability
|
||||
retention-days: 14
|
||||
|
||||
# ===========================================================================
|
||||
# SUMMARY JOB
|
||||
# ===========================================================================
|
||||
@@ -469,7 +845,7 @@ jobs:
|
||||
summary:
|
||||
name: Test Summary
|
||||
runs-on: ubuntu-22.04
|
||||
needs: [unit, architecture, contract, integration, security, golden]
|
||||
needs: [discover, unit, architecture, contract, integration, security, golden]
|
||||
if: always()
|
||||
steps:
|
||||
- name: Download all test results
|
||||
@@ -478,6 +854,12 @@ jobs:
|
||||
pattern: test-results-*
|
||||
path: ./TestResults
|
||||
|
||||
- name: Setup .NET
|
||||
uses: actions/setup-dotnet@v4
|
||||
with:
|
||||
dotnet-version: ${{ env.DOTNET_VERSION }}
|
||||
include-prerelease: true
|
||||
|
||||
- name: Install trx2junit
|
||||
run: dotnet tool install -g trx2junit
|
||||
|
||||
@@ -489,14 +871,23 @@ jobs:
|
||||
run: |
|
||||
echo "## Test Results Summary" >> $GITHUB_STEP_SUMMARY
|
||||
echo "" >> $GITHUB_STEP_SUMMARY
|
||||
echo "### PR-Gating Tests" >> $GITHUB_STEP_SUMMARY
|
||||
echo "| Category | Status |" >> $GITHUB_STEP_SUMMARY
|
||||
echo "|----------|--------|" >> $GITHUB_STEP_SUMMARY
|
||||
echo "| Discover | ${{ needs.discover.result }} |" >> $GITHUB_STEP_SUMMARY
|
||||
echo "| Unit | ${{ needs.unit.result }} |" >> $GITHUB_STEP_SUMMARY
|
||||
echo "| Architecture | ${{ needs.architecture.result }} |" >> $GITHUB_STEP_SUMMARY
|
||||
echo "| Contract | ${{ needs.contract.result }} |" >> $GITHUB_STEP_SUMMARY
|
||||
echo "| Integration | ${{ needs.integration.result }} |" >> $GITHUB_STEP_SUMMARY
|
||||
echo "| Security | ${{ needs.security.result }} |" >> $GITHUB_STEP_SUMMARY
|
||||
echo "| Golden | ${{ needs.golden.result }} |" >> $GITHUB_STEP_SUMMARY
|
||||
echo "" >> $GITHUB_STEP_SUMMARY
|
||||
echo "### Test Projects Discovered: ${{ needs.discover.outputs.test-count }}" >> $GITHUB_STEP_SUMMARY
|
||||
|
||||
- name: Count TRX files
|
||||
run: |
|
||||
TRX_COUNT=$(find ./TestResults -name "*.trx" | wc -l)
|
||||
echo "### Total TRX Files Generated: $TRX_COUNT" >> $GITHUB_STEP_SUMMARY
|
||||
|
||||
- name: Upload Combined Results
|
||||
uses: actions/upload-artifact@v4
|
||||
|
||||
Reference in New Issue
Block a user