documentation cleanse, sprints work and planning. remaining non EF DAL migration to EF
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"project": "src/Router/__Tests/StellaOps.Gateway.WebService.Tests/StellaOps.Gateway.WebService.Tests.csproj",
|
||||
"buildResult": "pass",
|
||||
"testResult": "pass",
|
||||
"totalTests": 224,
|
||||
"passedTests": 224,
|
||||
"failedTests": 0,
|
||||
"skippedTests": 0,
|
||||
"capturedAtUtc": "2026-02-12T12:30:00Z",
|
||||
"errors": [],
|
||||
"codeReview": {
|
||||
"nonTrivialImplementation": true,
|
||||
"logicMatchesDescription": true,
|
||||
"unitTestsCoverCoreBehavior": true,
|
||||
"assertionsMeaningful": true
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
{
|
||||
"type": "api",
|
||||
"baseUrl": "http://127.0.0.1:15080",
|
||||
"capturedAtUtc": "2026-02-12T12:44:00Z",
|
||||
"requests": [
|
||||
{
|
||||
"description": "Exact path match: /favicon.ico resolves to StaticFile route",
|
||||
"method": "GET",
|
||||
"path": "/favicon.ico",
|
||||
"expectedStatus": 200,
|
||||
"actualStatus": 200,
|
||||
"assertion": "Returns 'fake-icon-data' content (exact path matched StaticFile route)",
|
||||
"result": "pass",
|
||||
"evidence": "fake-icon-data",
|
||||
"requestCapturedAtUtc": "2026-02-12T12:44:27Z",
|
||||
"responseSnippet": "HTTP/1.1 200 OK\nContent-Type: image/x-icon"
|
||||
},
|
||||
{
|
||||
"description": "Prefix match: /app/index.html resolves to StaticFiles route for /app",
|
||||
"method": "GET",
|
||||
"path": "/app/index.html",
|
||||
"expectedStatus": 200,
|
||||
"actualStatus": 200,
|
||||
"assertion": "Returns Test App HTML (prefix /app matched StaticFiles route)",
|
||||
"result": "pass",
|
||||
"evidence": "<!DOCTYPE html><html><body><h1>Test App</h1></body></html>",
|
||||
"requestCapturedAtUtc": "2026-02-12T12:44:28Z",
|
||||
"responseSnippet": "HTTP/1.1 200 OK\nContent-Type: text/html"
|
||||
},
|
||||
{
|
||||
"description": "Regex match: /api/v3/test resolves to ReverseProxy regex route ^/api/v[0-9]+/.*",
|
||||
"method": "GET",
|
||||
"path": "/api/v3/test",
|
||||
"expectedStatus": 200,
|
||||
"actualStatus": 200,
|
||||
"assertion": "Request proxied to upstream (regex pattern matched different version number v3)",
|
||||
"result": "pass",
|
||||
"evidence": "{\"method\": \"GET\", \"path\": \"/api/v3/test\", ..., \"proxied\": true}",
|
||||
"requestCapturedAtUtc": "2026-02-12T12:44:29Z",
|
||||
"responseSnippet": "HTTP/1.1 200 OK"
|
||||
},
|
||||
{
|
||||
"description": "No match: /unmatched/random/path falls through to microservice pipeline (404)",
|
||||
"method": "GET",
|
||||
"path": "/unmatched/random/path",
|
||||
"expectedStatus": 404,
|
||||
"actualStatus": 404,
|
||||
"assertion": "Unmatched path falls through resolver (returns null), reaches microservice pipeline which returns 404",
|
||||
"result": "pass",
|
||||
"evidence": "{\"error\":\"Endpoint not found\",\"status\":404,...}",
|
||||
"requestCapturedAtUtc": "2026-02-12T12:44:30Z",
|
||||
"responseSnippet": "HTTP/1.1 404 Not Found"
|
||||
},
|
||||
{
|
||||
"description": "Case-insensitive: /APP/index.html resolves to /app StaticFiles route",
|
||||
"method": "GET",
|
||||
"path": "/APP/index.html",
|
||||
"expectedStatus": 200,
|
||||
"actualStatus": 200,
|
||||
"assertion": "Case-insensitive matching: /APP matches route configured as /app",
|
||||
"result": "pass",
|
||||
"evidence": "<!DOCTYPE html><html><body><h1>Test App</h1></body></html>",
|
||||
"requestCapturedAtUtc": "2026-02-12T12:44:31Z",
|
||||
"responseSnippet": "HTTP/1.1 200 OK"
|
||||
}
|
||||
],
|
||||
"verdict": "pass"
|
||||
}
|
||||
Reference in New Issue
Block a user