semi implemented and features implemented save checkpoint

This commit is contained in:
master
2026-02-08 18:00:49 +02:00
parent 04360dff63
commit 1bf6bbf395
20895 changed files with 716795 additions and 64 deletions

View File

@@ -0,0 +1,55 @@
# Audit - StellaOps.VexHub.Core
## Project
- Path: `src/VexHub/__Libraries/StellaOps.VexHub.Core/StellaOps.VexHub.Core.csproj`
- Module: `VexHub`
- Kind: `Library`
- SDK: `Microsoft.NET.Sdk`
- TargetFramework: `net10.0`
- Audit date (UTC): 2026-01-30
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 16
- Service locator usage (BuildServiceProvider/GetService): 0
- Analyzer enforcement: missing repo-wide (see summary).
### Details
- 100-line files:
- `src/VexHub/__Libraries/StellaOps.VexHub.Core/Validation/CycloneDxVexSchemaValidator.cs` (708 lines)
- `src/VexHub/__Libraries/StellaOps.VexHub.Core/Models/VexHubModels.cs` (662 lines)
- `src/VexHub/__Libraries/StellaOps.VexHub.Core/Validation/CsafVexSchemaValidator.cs` (571 lines)
- `src/VexHub/__Libraries/StellaOps.VexHub.Core/Validation/OpenVexSchemaValidator.cs` (490 lines)
- `src/VexHub/__Libraries/StellaOps.VexHub.Core/Pipeline/VexNormalizationPipeline.cs` (340 lines)
- `src/VexHub/__Libraries/StellaOps.VexHub.Core/Validation/StatementFlaggingService.cs` (272 lines)
- `src/VexHub/__Libraries/StellaOps.VexHub.Core/Export/VexExportService.cs` (251 lines)
- `src/VexHub/__Libraries/StellaOps.VexHub.Core/Webhooks/WebhookService.cs` (192 lines)
- `src/VexHub/__Libraries/StellaOps.VexHub.Core/Validation/IStatementFlaggingService.cs` (179 lines)
- `src/VexHub/__Libraries/StellaOps.VexHub.Core/Ingestion/VexIngestionService.cs` (165 lines)
- `src/VexHub/__Libraries/StellaOps.VexHub.Core/Webhooks/IWebhookService.cs` (148 lines)
- `src/VexHub/__Libraries/StellaOps.VexHub.Core/IVexStatementRepository.cs` (146 lines)
- `src/VexHub/__Libraries/StellaOps.VexHub.Core/Validation/VexSchemaValidatorFactory.cs` (145 lines)
- `src/VexHub/__Libraries/StellaOps.VexHub.Core/Ingestion/VexIngestionScheduler.cs` (139 lines)
- `src/VexHub/__Libraries/StellaOps.VexHub.Core/Models/VexHubOptions.cs` (131 lines)
- `src/VexHub/__Libraries/StellaOps.VexHub.Core/Validation/IVexSchemaValidator.cs` (122 lines)
- Service locator matches:
- none
### Fix Guidance
- Split files over 100 lines into smaller types or partials.
## Testing Fullness Findings
- Status: PASS
- Expected layers: Unit
- Detected test projects: src/VexHub/__Tests/StellaOps.VexHub.Core.Tests/StellaOps.VexHub.Core.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Offline execution (tests must run without network access).
### Fix Guidance
- None.

View File

@@ -0,0 +1,41 @@
# Audit - StellaOps.VexHub.Persistence
## Project
- Path: `src/VexHub/__Libraries/StellaOps.VexHub.Persistence/StellaOps.VexHub.Persistence.csproj`
- Module: `VexHub`
- Kind: `Library`
- SDK: `Microsoft.NET.Sdk`
- TargetFramework: `net10.0`
- Audit date (UTC): 2026-01-30
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 2
- Service locator usage (BuildServiceProvider/GetService): 0
- Analyzer enforcement: missing repo-wide (see summary).
### Details
- 100-line files:
- `src/VexHub/__Libraries/StellaOps.VexHub.Persistence/Postgres/Repositories/PostgresVexStatementRepository.cs` (373 lines)
- `src/VexHub/__Libraries/StellaOps.VexHub.Persistence/Postgres/Repositories/PostgresVexProvenanceRepository.cs` (124 lines)
- Service locator matches:
- none
### Fix Guidance
- Split files over 100 lines into smaller types or partials.
## Testing Fullness Findings
- Status: FAIL
- Expected layers: Unit
- Detected test projects: none
- Missing layers: Unit
### Manual checks required
- Observability contract tests for WebService/Worker.
- Offline execution (tests must run without network access).
### Fix Guidance
- Add a unit test project named `<Project>.Tests` (or document exception).