save checkpoint
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"filesChecked": [
|
||||
"src/Graph/StellaOps.Graph.Api/Services/IGraphQueryService.cs",
|
||||
"src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphQueryService.cs",
|
||||
"src/Graph/StellaOps.Graph.Api/Services/IGraphSearchService.cs",
|
||||
"src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphSearchService.cs",
|
||||
"src/Graph/StellaOps.Graph.Api/Services/IGraphPathService.cs",
|
||||
"src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphPathService.cs",
|
||||
"src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphRepository.cs",
|
||||
"src/Graph/StellaOps.Graph.Api/Contracts/SearchContracts.cs",
|
||||
"src/Graph/StellaOps.Graph.Api/Contracts/LineageContracts.cs",
|
||||
"src/Graph/StellaOps.Graph.Api/Contracts/ReachabilityContracts.cs",
|
||||
"src/Graph/StellaOps.Graph.Api/Services/RateLimiterService.cs",
|
||||
"src/Graph/__Tests/StellaOps.Graph.Api.Tests/QueryServiceTests.cs",
|
||||
"src/Graph/__Tests/StellaOps.Graph.Api.Tests/SearchServiceTests.cs",
|
||||
"src/Graph/__Tests/StellaOps.Graph.Api.Tests/PathServiceTests.cs",
|
||||
"src/Graph/__Tests/StellaOps.Graph.Api.Tests/RateLimiterServiceTests.cs"
|
||||
],
|
||||
"found": [
|
||||
"src/Graph/StellaOps.Graph.Api/Services/IGraphQueryService.cs",
|
||||
"src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphQueryService.cs",
|
||||
"src/Graph/StellaOps.Graph.Api/Services/IGraphSearchService.cs",
|
||||
"src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphSearchService.cs",
|
||||
"src/Graph/StellaOps.Graph.Api/Services/IGraphPathService.cs",
|
||||
"src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphPathService.cs",
|
||||
"src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphRepository.cs",
|
||||
"src/Graph/StellaOps.Graph.Api/Contracts/SearchContracts.cs",
|
||||
"src/Graph/StellaOps.Graph.Api/Contracts/LineageContracts.cs",
|
||||
"src/Graph/StellaOps.Graph.Api/Contracts/ReachabilityContracts.cs",
|
||||
"src/Graph/StellaOps.Graph.Api/Services/RateLimiterService.cs",
|
||||
"src/Graph/__Tests/StellaOps.Graph.Api.Tests/QueryServiceTests.cs",
|
||||
"src/Graph/__Tests/StellaOps.Graph.Api.Tests/SearchServiceTests.cs",
|
||||
"src/Graph/__Tests/StellaOps.Graph.Api.Tests/PathServiceTests.cs",
|
||||
"src/Graph/__Tests/StellaOps.Graph.Api.Tests/RateLimiterServiceTests.cs"
|
||||
],
|
||||
"missing": [
|
||||
|
||||
],
|
||||
"verdict": "pass"
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"project": "src/Graph/__Tests/StellaOps.Graph.Api.Tests/StellaOps.Graph.Api.Tests.csproj",
|
||||
"buildResult": "pass",
|
||||
"testResult": "pass",
|
||||
"command": "dotnet test src/Graph/__Tests/StellaOps.Graph.Api.Tests/StellaOps.Graph.Api.Tests.csproj -c Release --nologo",
|
||||
"testsRun": 66,
|
||||
"testsPassed": 66,
|
||||
"testsFailed": 0,
|
||||
"errors": [
|
||||
|
||||
],
|
||||
"runAtUtc": "2026-02-10T21:34:45Z"
|
||||
}
|
||||
@@ -0,0 +1,64 @@
|
||||
{
|
||||
"type": "api",
|
||||
"baseUrl": "http://127.0.0.1:19100",
|
||||
"runId": "run-010",
|
||||
"timestampUtc": "2026-02-10T21:34:45Z",
|
||||
"requests": [
|
||||
{
|
||||
"description": "Search returns component node tiles for authenticated read scope",
|
||||
"method": "POST",
|
||||
"path": "/graph/search",
|
||||
"headers": {
|
||||
"Authorization": "Bearer qa-token",
|
||||
"X-Stella-Tenant": "acme",
|
||||
"X-Stella-Scopes": "graph:read"
|
||||
},
|
||||
"requestBody": {
|
||||
"kinds": [
|
||||
"component"
|
||||
],
|
||||
"query": "component",
|
||||
"limit": 10
|
||||
},
|
||||
"expectedStatus": 200,
|
||||
"actualStatus": 200,
|
||||
"assertion": "Response contains 3 node NDJSON lines",
|
||||
"result": "pass"
|
||||
},
|
||||
{
|
||||
"description": "Query returns component node tiles for authenticated query scope",
|
||||
"method": "POST",
|
||||
"path": "/graph/query",
|
||||
"headers": {
|
||||
"Authorization": "Bearer qa-token",
|
||||
"X-Stella-Tenant": "acme",
|
||||
"X-Stella-Scopes": "graph:query"
|
||||
},
|
||||
"requestBody": {
|
||||
"kinds": [
|
||||
"component"
|
||||
],
|
||||
"query": "component",
|
||||
"includeOverlays": true,
|
||||
"includeEdges": false,
|
||||
"includeStats": false,
|
||||
"limit": 10
|
||||
},
|
||||
"expectedStatus": 200,
|
||||
"actualStatus": 200,
|
||||
"assertion": "Response contains 3 node NDJSON lines",
|
||||
"result": "pass"
|
||||
}
|
||||
],
|
||||
"summary": {
|
||||
"searchNodeLines": 3,
|
||||
"queryNodeLines": 3
|
||||
},
|
||||
"verdict": "pass",
|
||||
"suiteReplay": {
|
||||
"command": "dotnet test src/Graph/__Tests/StellaOps.Graph.Api.Tests/StellaOps.Graph.Api.Tests.csproj -c Release --nologo",
|
||||
"testsRun": 66,
|
||||
"testsPassed": 66,
|
||||
"testsFailed": 0
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user