documentation cleanse, sprints work and planning. remaining non EF DAL migration to EF
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
capturedAtUtc=2026-02-10T23:42:18Z
|
||||
request=GET /api/v1/timeline/nonexistent-correlation-013?fromHlc=invalid-hlc&toHlc=1700000000000-node-000001
|
||||
---
|
||||
HTTP/1.1 400 Bad Request
|
||||
Content-Type: application/json; charset=utf-8
|
||||
Date: Tue, 10 Feb 2026 23:42:18 GMT
|
||||
Server: Kestrel
|
||||
Transfer-Encoding: chunked
|
||||
|
||||
"Invalid fromHlc value 'invalid-hlc'. Expected format '{physicalTime13}-{nodeId}-{counter6}'."
|
||||
@@ -0,0 +1,7 @@
|
||||
capturedAtUtc=2026-02-10T23:42:18Z
|
||||
request=GET /api/v1/timeline/nonexistent-correlation-013
|
||||
---
|
||||
HTTP/1.1 404 Not Found
|
||||
Content-Length: 0
|
||||
Date: Tue, 10 Feb 2026 23:42:18 GMT
|
||||
Server: Kestrel
|
||||
@@ -0,0 +1,7 @@
|
||||
capturedAtUtc=2026-02-10T23:42:18Z
|
||||
request=GET /api/v1/timeline/nonexistent-correlation-013/critical-path
|
||||
---
|
||||
HTTP/1.1 404 Not Found
|
||||
Content-Length: 0
|
||||
Date: Tue, 10 Feb 2026 23:42:18 GMT
|
||||
Server: Kestrel
|
||||
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"filesChecked": [
|
||||
"src/Timeline/StellaOps.Timeline.WebService/Endpoints/TimelineEndpoints.cs",
|
||||
"src/Timeline/StellaOps.Timeline.WebService/Endpoints/ReplayEndpoints.cs",
|
||||
"src/Timeline/StellaOps.Timeline.WebService/Endpoints/ExportEndpoints.cs",
|
||||
"src/Timeline/__Libraries/StellaOps.Timeline.Core/ServiceCollectionExtensions.cs",
|
||||
"src/Timeline/__Tests/StellaOps.Timeline.WebService.Tests/TimelineApiIntegrationTests.cs"
|
||||
],
|
||||
"found": [
|
||||
"src/Timeline/StellaOps.Timeline.WebService/Endpoints/TimelineEndpoints.cs",
|
||||
"src/Timeline/StellaOps.Timeline.WebService/Endpoints/ReplayEndpoints.cs",
|
||||
"src/Timeline/StellaOps.Timeline.WebService/Endpoints/ExportEndpoints.cs",
|
||||
"src/Timeline/__Libraries/StellaOps.Timeline.Core/ServiceCollectionExtensions.cs",
|
||||
"src/Timeline/__Tests/StellaOps.Timeline.WebService.Tests/TimelineApiIntegrationTests.cs"
|
||||
],
|
||||
"missing": [
|
||||
|
||||
],
|
||||
"verdict": "pass"
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"project": "src/Timeline (__Tests matrix)",
|
||||
"buildResult": "pass",
|
||||
"testResult": "pass",
|
||||
"command": "dotnet test src/Timeline/__Tests/StellaOps.Timeline.Core.Tests/StellaOps.Timeline.Core.Tests.csproj -c Release --nologo; dotnet test src/Timeline/__Tests/StellaOps.Timeline.WebService.Tests/StellaOps.Timeline.WebService.Tests.csproj -c Release --nologo --no-build",
|
||||
"testProjects": [
|
||||
"src/Timeline/__Tests/StellaOps.Timeline.Core.Tests/StellaOps.Timeline.Core.Tests.csproj",
|
||||
"src/Timeline/__Tests/StellaOps.Timeline.WebService.Tests/StellaOps.Timeline.WebService.Tests.csproj"
|
||||
],
|
||||
"testsRun": 26,
|
||||
"testsPassed": 26,
|
||||
"testsFailed": 0,
|
||||
"errors": [
|
||||
|
||||
],
|
||||
"warnings": [
|
||||
"WebService tests executed with --no-build while live API host is running to avoid MSB3021/MSB3027 assembly-copy locks."
|
||||
],
|
||||
"runAtUtc": "2026-02-10T23:42:18Z"
|
||||
}
|
||||
@@ -0,0 +1,52 @@
|
||||
{
|
||||
"type": "api",
|
||||
"module": "timeline",
|
||||
"feature": "unified-event-timeline-service",
|
||||
"runId": "run-013",
|
||||
"dateUtc": "2026-02-10T23:42:18Z",
|
||||
"baseUrl": "https://127.0.0.1:10240",
|
||||
"transport": "curl -k",
|
||||
"capturedAtUtc": "2026-02-10T23:42:18Z",
|
||||
"requests": [
|
||||
{
|
||||
"description": "Invalid fromHlc returns client error",
|
||||
"method": "GET",
|
||||
"path": "/api/v1/timeline/nonexistent-correlation-013?fromHlc=invalid-hlc\u0026toHlc=1700000000000-node-000001",
|
||||
"expectedStatus": 400,
|
||||
"actualStatus": 400,
|
||||
"assertion": "invalid HLC input is validated at API boundary",
|
||||
"requestCapturedAtUtc": "2026-02-10T23:42:18Z",
|
||||
"evidenceFile": "evidence/01-invalid-fromhlc.txt",
|
||||
"result": "pass"
|
||||
},
|
||||
{
|
||||
"description": "Nonexistent correlation returns not found",
|
||||
"method": "GET",
|
||||
"path": "/api/v1/timeline/nonexistent-correlation-013",
|
||||
"expectedStatus": 404,
|
||||
"actualStatus": 404,
|
||||
"assertion": "timeline query does not fabricate events for unknown correlation",
|
||||
"requestCapturedAtUtc": "2026-02-10T23:42:18Z",
|
||||
"evidenceFile": "evidence/02-get-nonexistent-timeline.txt",
|
||||
"result": "pass"
|
||||
},
|
||||
{
|
||||
"description": "Critical path for unknown correlation returns not found",
|
||||
"method": "GET",
|
||||
"path": "/api/v1/timeline/nonexistent-correlation-013/critical-path",
|
||||
"expectedStatus": 404,
|
||||
"actualStatus": 404,
|
||||
"assertion": "critical-path endpoint preserves not-found semantics",
|
||||
"requestCapturedAtUtc": "2026-02-10T23:42:18Z",
|
||||
"evidenceFile": "evidence/03-critical-path-nonexistent.txt",
|
||||
"result": "pass"
|
||||
}
|
||||
],
|
||||
"verdict": "pass",
|
||||
"suiteReplay": {
|
||||
"command": "dotnet test src/Timeline/__Tests/StellaOps.Timeline.Core.Tests/StellaOps.Timeline.Core.Tests.csproj -c Release --nologo; dotnet test src/Timeline/__Tests/StellaOps.Timeline.WebService.Tests/StellaOps.Timeline.WebService.Tests.csproj -c Release --nologo --no-build",
|
||||
"testsRun": 26,
|
||||
"testsPassed": 26,
|
||||
"testsFailed": 0
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user