documentation cleanse, sprints work and planning. remaining non EF DAL migration to EF

This commit is contained in:
master
2026-02-25 01:24:07 +02:00
parent b07d27772e
commit 4db038123b
9090 changed files with 4836 additions and 2909 deletions

View File

@@ -0,0 +1,5 @@
capturedAtUtc=2026-02-11T07:09:01.2516010Z
request=GET /health
headers=
---
HTTP/1.1 200 OK Content-Type: application/json; charset=utf-8 Date: Wed, 11 Feb 2026 07:09:00 GMT Server: Kestrel Transfer-Encoding: chunked X-Correlation-Id: 0HNJ97HNEJPD0:00000001 {"status":"ok","started":true,"ready":true,"traceId":"0HNJ97HNEJPD0:00000001"}

View File

@@ -0,0 +1,5 @@
capturedAtUtc=2026-02-11T07:09:01.2516010Z
request=GET /metrics
headers=
---
HTTP/1.1 200 OK Content-Type: text/plain; version=0.0.4 Date: Wed, 11 Feb 2026 07:09:00 GMT Server: Kestrel Transfer-Encoding: chunked X-Correlation-Id: 0HNJ97HNEJPD1:00000001 # TYPE gateway_active_connections gauge gateway_active_connections 0 # TYPE gateway_registered_endpoints gauge gateway_registered_endpoints 0

View File

@@ -0,0 +1,5 @@
capturedAtUtc=2026-02-11T07:09:01.2516010Z
request=GET /__qa_missing_route__
headers=
---
HTTP/1.1 404 Not Found Content-Type: application/json; charset=utf-8 Date: Wed, 11 Feb 2026 07:09:00 GMT Server: Kestrel Transfer-Encoding: chunked X-Correlation-Id: 0HNJ97HNEJPD2:00000001 {"error":"Endpoint not found","status":404,"traceId":"0HNJ97HNEJPD2:00000001","method":"GET","path":"/__qa_missing_route__","service":null,"version":null,"message":null,"details":null}

View File

@@ -0,0 +1,5 @@
capturedAtUtc=2026-02-11T07:09:01.2516010Z
request=GET /health
headers=X-Correlation-Id: qa-e2e-run014-problem-fix
---
HTTP/1.1 200 OK Content-Type: application/json; charset=utf-8 Date: Wed, 11 Feb 2026 07:09:01 GMT Server: Kestrel Transfer-Encoding: chunked X-Correlation-Id: qa-e2e-run014-problem-fix {"status":"ok","started":true,"ready":true,"traceId":"qa-e2e-run014-problem-fix"}

View File

@@ -0,0 +1,6 @@
capturedAtUtc=2026-02-11T07:09:26.2682203Z
command=dotnet test src/Gateway/__Tests/StellaOps.Gateway.WebService.Tests/StellaOps.Gateway.WebService.Tests.csproj -c Release --nologo
command=dotnet test src/Router/__Tests/StellaOps.Gateway.WebService.Tests/StellaOps.Gateway.WebService.Tests.csproj -c Release --nologo
command=dotnet test src/Router/__Tests/StellaOps.Router.Gateway.Tests/StellaOps.Router.Gateway.Tests.csproj -c Release --nologo
testsRun=432 testsPassed=432 testsFailed=0
requests=/health(200), /metrics(200), /__qa_missing_route__(404), /health with X-Correlation-Id(200)

View File

@@ -0,0 +1,18 @@
{
"filesChecked": [
"src/Gateway/StellaOps.Gateway.WebService/Program.cs",
"src/Gateway/StellaOps.Gateway.WebService/Services/GatewayHostedService.cs",
"src/Gateway/StellaOps.Gateway.WebService/Services/GatewayHealthMonitorService.cs",
"src/Gateway/StellaOps.Gateway.WebService/Services/GatewayPerformanceMetrics.cs"
],
"found": [
"src/Gateway/StellaOps.Gateway.WebService/Program.cs",
"src/Gateway/StellaOps.Gateway.WebService/Services/GatewayHostedService.cs",
"src/Gateway/StellaOps.Gateway.WebService/Services/GatewayHealthMonitorService.cs",
"src/Gateway/StellaOps.Gateway.WebService/Services/GatewayPerformanceMetrics.cs"
],
"missing": [
],
"verdict": "pass"
}

View File

@@ -0,0 +1,16 @@
{
"project": "Gateway/Router verification matrix",
"buildResult": "pass",
"testResult": "pass",
"errors": [
],
"commands": [
"dotnet test src/Gateway/__Tests/StellaOps.Gateway.WebService.Tests/StellaOps.Gateway.WebService.Tests.csproj -c Release --nologo",
"dotnet test src/Router/__Tests/StellaOps.Gateway.WebService.Tests/StellaOps.Gateway.WebService.Tests.csproj -c Release --nologo",
"dotnet test src/Router/__Tests/StellaOps.Router.Gateway.Tests/StellaOps.Router.Gateway.Tests.csproj -c Release --nologo"
],
"testsRun": 432,
"testsPassed": 432,
"testsFailed": 0
}

View File

@@ -0,0 +1,69 @@
{
"type": "api",
"module": "gateway",
"feature": "gateway-connection-lifecycle-management",
"runId": "run-014",
"dateUtc": "2026-02-11T07:09:26.2682203Z",
"baseUrl": "http://127.0.0.1:10041",
"capturedAtUtc": "2026-02-11T07:09:26.2682203Z",
"requests": [
{
"description": "Health endpoint reports ready state",
"method": "GET",
"path": "/health",
"expectedStatus": 200,
"actualStatus": 200,
"assertion": "ready=true for live gateway service",
"requestCapturedAtUtc": "2026-02-11T07:09:26.2682203Z",
"evidenceFile": "evidence/01-health.txt",
"result": "pass"
},
{
"description": "Metrics endpoint exports runtime gauges/counters",
"method": "GET",
"path": "/metrics",
"expectedStatus": 200,
"actualStatus": 200,
"assertion": "metrics endpoint available for operational probing",
"requestCapturedAtUtc": "2026-02-11T07:09:26.2682203Z",
"evidenceFile": "evidence/02-metrics.txt",
"result": "pass"
},
{
"description": "Unknown route returns deterministic not-found payload",
"method": "GET",
"path": "/__qa_missing_route__",
"expectedStatus": 404,
"actualStatus": 404,
"assertion": "unknown route surfaces stable 404 semantics",
"requestCapturedAtUtc": "2026-02-11T07:09:26.2682203Z",
"evidenceFile": "evidence/03-missing-route.txt",
"result": "pass"
},
{
"description": "Correlation ID is echoed through middleware chain",
"method": "GET",
"path": "/health",
"expectedStatus": 200,
"actualStatus": 200,
"assertion": "response carries qa-e2e-run014-problem-fix correlation id",
"requestCapturedAtUtc": "2026-02-11T07:09:26.2682203Z",
"evidenceFile": "evidence/04-health-correlation.txt",
"result": "pass"
}
],
"behaviorVerified": [
"Gateway connection lifecycle remains healthy and returns deterministic not-found semantics for unknown routes."
],
"suiteReplay": {
"commands": [
"dotnet test src/Gateway/__Tests/StellaOps.Gateway.WebService.Tests/StellaOps.Gateway.WebService.Tests.csproj -c Release --nologo",
"dotnet test src/Router/__Tests/StellaOps.Gateway.WebService.Tests/StellaOps.Gateway.WebService.Tests.csproj -c Release --nologo",
"dotnet test src/Router/__Tests/StellaOps.Router.Gateway.Tests/StellaOps.Router.Gateway.Tests.csproj -c Release --nologo"
],
"testsRun": 432,
"testsPassed": 432,
"testsFailed": 0
},
"verdict": "pass"
}