save checkpoint

This commit is contained in:
master
2026-02-14 09:11:48 +02:00
parent 9ca2de05df
commit e9aeadc040
1512 changed files with 30863 additions and 4728 deletions

View File

@@ -0,0 +1,16 @@
{
"feature": "taskrunner-sdk-client-with-openapi",
"module": "taskrunner",
"runId": "run-001",
"tier": "tier1",
"check": "build-check",
"timestamp": "2026-02-13T08:00:00Z",
"result": "pass",
"project": "StellaOps.TaskRunner.Tests.csproj",
"totalTests": 227,
"passed": 227,
"failed": 0,
"skipped": 0,
"duration": "1.6s",
"notes": "Full test suite builds and passes."
}

View File

@@ -0,0 +1,27 @@
{
"feature": "taskrunner-sdk-client-with-openapi",
"module": "taskrunner",
"runId": "run-001",
"tier": "tier1",
"check": "code-review",
"timestamp": "2026-02-13T08:00:00Z",
"result": "pass",
"sourceFiles": [
"src/TaskRunner/StellaOps.TaskRunner/StellaOps.TaskRunner.Client/ITaskRunnerClient.cs",
"src/TaskRunner/StellaOps.TaskRunner/StellaOps.TaskRunner.Client/TaskRunnerClient.cs",
"src/TaskRunner/StellaOps.TaskRunner/StellaOps.TaskRunner.Client/TaskRunnerClientOptions.cs",
"src/TaskRunner/StellaOps.TaskRunner/StellaOps.TaskRunner.Client/Extensions/TaskRunnerClientServiceCollectionExtensions.cs",
"src/TaskRunner/StellaOps.TaskRunner/StellaOps.TaskRunner.Client/Models/PackRunModels.cs",
"src/TaskRunner/StellaOps.TaskRunner/StellaOps.TaskRunner.Client/Lifecycle/PackRunLifecycleHelper.cs",
"src/TaskRunner/StellaOps.TaskRunner/StellaOps.TaskRunner.Client/Pagination/Paginator.cs",
"src/TaskRunner/StellaOps.TaskRunner/StellaOps.TaskRunner.Client/Streaming/StreamingLogReader.cs",
"src/TaskRunner/StellaOps.TaskRunner/StellaOps.TaskRunner.WebService/OpenApiMetadataFactory.cs",
"src/TaskRunner/StellaOps.TaskRunner/StellaOps.TaskRunner.WebService/Deprecation/ApiDeprecationMiddleware.cs",
"src/TaskRunner/StellaOps.TaskRunner/StellaOps.TaskRunner.WebService/Deprecation/ApiDeprecationOptions.cs",
"src/TaskRunner/StellaOps.TaskRunner/StellaOps.TaskRunner.WebService/Deprecation/IDeprecationNotificationService.cs",
"src/TaskRunner/StellaOps.TaskRunner/StellaOps.TaskRunner.WebService/Program.cs"
],
"allFilesExist": true,
"codeMatchesDescription": true,
"notes": "Full SDK client: ITaskRunnerClient with HTTP implementation, configurable options, DI extensions. Client features: streaming log reader (NDJSON), paginator with async enumeration, pack run lifecycle helper. WebService: OpenAPI metadata factory with deterministic signatures/ETags, deprecation middleware with wildcard path matching and sunset headers."
}

View File

@@ -0,0 +1,25 @@
{
"feature": "taskrunner-sdk-client-with-openapi",
"module": "taskrunner",
"runId": "run-001",
"tier": "tier2",
"check": "integration-check",
"timestamp": "2026-02-13T08:00:00Z",
"result": "pass",
"testFiles": [
"src/TaskRunner/StellaOps.TaskRunner/StellaOps.TaskRunner.Tests/TaskRunnerClientTests.cs",
"src/TaskRunner/StellaOps.TaskRunner/StellaOps.TaskRunner.Tests/OpenApiMetadataFactoryTests.cs",
"src/TaskRunner/StellaOps.TaskRunner/StellaOps.TaskRunner.Tests/ApiDeprecationTests.cs"
],
"testsRun": 25,
"testsPassed": 25,
"testsFailed": 0,
"behavioralCoverage": {
"sdkClientOperations": "Verified: PackRunModels_CreatePackRunRequest_SerializesCorrectly, PackRunLifecycleHelper_TerminalStatuses_IncludesExpectedStatuses confirm client model correctness",
"streamingLogReader": "Verified: StreamingLogReader_ParsesNdjsonLines parses NDJSON with timestamp/level/stepId; _SkipsEmptyLines and _SkipsMalformedLines handle edge cases; _FilterByLevel and _GroupByStep test async enumeration helpers",
"openApiSpec": "Verified: Create_ProducesExpectedDefaults confirms /openapi URL, version, build version, ETag format (W/\"...\"), signature format (sha256:<64hex>). Deterministic ETag confirmed.",
"deprecationMiddleware": "Verified: DeprecatedEndpoint pattern matching tested; GetUpcoming_FiltersCorrectly filters by sunset window (90 days); GetUpcoming_OrdersBySunsetDate confirms chronological ordering. Wildcard and double-wildcard path patterns verified with regex assertions.",
"paginationHandling": "Verified: Paginator_IteratesAllPages collects 25 items across 3 pages (10+10+5); GetPage_ReturnsCorrectPage verifies page 2 starts at item 11; TakeAsync and SkipAsync test async enumeration"
},
"notes": "SDK client verified at all layers: streaming log reader with NDJSON parsing, paginator with multi-page iteration, OpenAPI metadata factory with deterministic signatures, deprecation middleware with path pattern matching and sunset scheduling. 25 tests confirm full behavioral coverage."
}