archive audit attempts

This commit is contained in:
master
2026-02-19 22:00:31 +02:00
parent c2f13fe588
commit b5829dce5c
19638 changed files with 6366 additions and 7 deletions

View File

@@ -0,0 +1,134 @@
# Audit - StellaOps.Graph.Api
## Project
- Path: ../src/Graph/StellaOps.Graph.Api/StellaOps.Graph.Api.csproj
- Module: ..
- Kind: Library
- Audit date (UTC): 2026-01-30
- Files scanned: 30
- Files with issues: 30
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 11
- Namespace violations: 29
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- ../src/Graph/StellaOps.Graph.Api/Program.cs (401 lines)
- ../src/Graph/StellaOps.Graph.Api/Contracts/ReachabilityContracts.cs (349 lines)
- ../src/Graph/StellaOps.Graph.Api/Contracts/SearchContracts.cs (372 lines)
- ../src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphDiffService.cs (175 lines)
- ../src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphExportService.cs (152 lines)
- ../src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphPathService.cs (257 lines)
- ../src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphQueryService.cs (229 lines)
- ../src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphRepository.cs (352 lines)
- ../src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphSearchService.cs (137 lines)
- ../src/Graph/StellaOps.Graph.Api/Services/InMemoryOverlayService.cs (116 lines)
- ../src/Graph/StellaOps.Graph.Api/Services/InMemoryReachabilityDeltaService.cs (335 lines)
- Namespace issues:
- ../src/Graph/StellaOps.Graph.Api/Contracts/LineageContracts.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/Contracts/ReachabilityContracts.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/Contracts/SearchContracts.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/obj/Debug/net10.0/StellaOps.Graph.Api.AssemblyInfo.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/obj/Debug/net10.0/StellaOps.Graph.Api.GlobalUsings.g.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/obj/Release/net10.0/StellaOps.Graph.Api.AssemblyInfo.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/obj/Release/net10.0/StellaOps.Graph.Api.GlobalUsings.g.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/Services/GraphMetrics.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/Services/IAuditLogger.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/Services/IGraphDiffService.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/Services/IGraphExportService.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/Services/IGraphLineageService.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/Services/IGraphPathService.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/Services/IGraphQueryService.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/Services/IGraphSearchService.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphDiffService.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphExportService.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphLineageService.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphPathService.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphQueryService.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphRepository.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphSearchService.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/Services/InMemoryOverlayService.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/Services/InMemoryReachabilityDeltaService.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/Services/IOverlayService.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/Services/IReachabilityDeltaService.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Api/Services/RateLimiterService.cs: missing namespace
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 30
- Files with issues: 30
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| ../src/Graph/StellaOps.Graph.Api/Program.cs | FileLength>100 | Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Api/Contracts/LineageContracts.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Api/Contracts/ReachabilityContracts.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Api/Contracts/SearchContracts.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Api/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Api/obj/Debug/net10.0/StellaOps.Graph.Api.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Api/obj/Debug/net10.0/StellaOps.Graph.Api.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Api/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Api/obj/Release/net10.0/StellaOps.Graph.Api.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Api/obj/Release/net10.0/StellaOps.Graph.Api.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Api/Services/GraphMetrics.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Api/Services/IAuditLogger.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Api/Services/IGraphDiffService.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Api/Services/IGraphExportService.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Api/Services/IGraphLineageService.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Api/Services/IGraphPathService.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Api/Services/IGraphQueryService.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Api/Services/IGraphSearchService.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphDiffService.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphExportService.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphLineageService.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphPathService.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphQueryService.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphRepository.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Api/Services/InMemoryGraphSearchService.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Api/Services/InMemoryOverlayService.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Api/Services/InMemoryReachabilityDeltaService.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Api/Services/IOverlayService.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Api/Services/IReachabilityDeltaService.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Api/Services/RateLimiterService.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/StellaOps.Graph.Api.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,198 @@
# Audit - StellaOps.Graph.Indexer
## Project
- Path: ../src/Graph/StellaOps.Graph.Indexer/StellaOps.Graph.Indexer.csproj
- Module: ..
- Kind: Library
- Audit date (UTC): 2026-01-30
- Files scanned: 60
- Files with issues: 59
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 16
- Namespace violations: 59
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- ../src/Graph/StellaOps.Graph.Indexer/Analytics/GraphAnalyticsEngine.cs (472 lines)
- ../src/Graph/StellaOps.Graph.Indexer/Documents/GraphSnapshot.cs (262 lines)
- ../src/Graph/StellaOps.Graph.Indexer/Documents/GraphSnapshotBuilder.cs (490 lines)
- ../src/Graph/StellaOps.Graph.Indexer/Incremental/GraphChangeStreamProcessor.cs (120 lines)
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Advisory/AdvisoryLinksetMetrics.cs (107 lines)
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Advisory/AdvisoryLinksetTransformer.cs (209 lines)
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Inspector/GraphInspectorSnapshot.cs (181 lines)
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Inspector/GraphInspectorTransformer.cs (448 lines)
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Policy/PolicyOverlayMetrics.cs (125 lines)
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Policy/PolicyOverlayTransformer.cs (238 lines)
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/SbomIngestTransformer.cs (623 lines)
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/SbomSnapshot.cs (271 lines)
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Vex/VexOverlayTransformer.cs (244 lines)
- ../src/Graph/StellaOps.Graph.Indexer/Schema/CanonicalJson.cs (135 lines)
- ../src/Graph/StellaOps.Graph.Indexer/Schema/GraphDocumentFactory.cs (133 lines)
- ../src/Graph/StellaOps.Graph.Indexer/Schema/GraphIdentity.cs (153 lines)
- Namespace issues:
- ../src/Graph/StellaOps.Graph.Indexer/Analytics/GraphAnalyticsEngine.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Analytics/GraphAnalyticsHostedService.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Analytics/GraphAnalyticsMetrics.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Analytics/GraphAnalyticsOptions.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Analytics/GraphAnalyticsPipeline.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Analytics/GraphAnalyticsServiceCollectionExtensions.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Analytics/GraphAnalyticsTypes.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Analytics/GraphAnalyticsWriterOptions.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Analytics/GraphOverlayExporter.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Analytics/InMemoryGraphAnalyticsWriter.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Analytics/InMemoryGraphSnapshotProvider.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Documents/GraphSnapshot.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Documents/GraphSnapshotBuilder.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Incremental/GraphBackfillMetrics.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Incremental/GraphChangeEvent.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Incremental/GraphChangeStreamOptions.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Incremental/GraphChangeStreamProcessor.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Incremental/GraphChangeStreamServiceCollectionExtensions.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Incremental/InMemoryIdempotencyStore.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Incremental/NoOpGraphChangeEventSource.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Advisory/AdvisoryLinksetMetrics.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Advisory/AdvisoryLinksetProcessor.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Advisory/AdvisoryLinksetSnapshot.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Advisory/AdvisoryLinksetTransformer.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Advisory/IAdvisoryLinksetMetrics.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Inspector/GraphInspectorProcessor.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Inspector/GraphInspectorSnapshot.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Inspector/GraphInspectorTransformer.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Inspector/InspectorIngestServiceCollectionExtensions.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Policy/IPolicyOverlayMetrics.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Policy/PolicyOverlayMetrics.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Policy/PolicyOverlayProcessor.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Policy/PolicyOverlaySnapshot.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Policy/PolicyOverlayTransformer.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/FileSystemSnapshotFileWriter.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/GraphBuildBatch.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/IGraphDocumentWriter.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/InMemoryGraphDocumentWriter.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/ISbomIngestMetrics.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/SbomIngestMetrics.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/SbomIngestOptions.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/SbomIngestProcessor.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/SbomIngestProcessorFactory.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/SbomIngestServiceCollectionExtensions.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/SbomIngestTransformer.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/SbomSnapshot.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/SbomSnapshotExporter.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Vex/VexOverlaySnapshot.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Vex/VexOverlayTransformer.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/obj/Debug/net10.0/StellaOps.Graph.Indexer.AssemblyInfo.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/obj/Debug/net10.0/StellaOps.Graph.Indexer.GlobalUsings.g.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/obj/Release/net10.0/StellaOps.Graph.Indexer.AssemblyInfo.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/obj/Release/net10.0/StellaOps.Graph.Indexer.GlobalUsings.g.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Schema/Base32Crockford.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Schema/CanonicalJson.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Schema/GraphDocumentFactory.cs: missing namespace
- ../src/Graph/StellaOps.Graph.Indexer/Schema/GraphIdentity.cs: missing namespace
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 60
- Files with issues: 59
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| ../src/Graph/StellaOps.Graph.Indexer/Analytics/GraphAnalyticsEngine.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Indexer/Analytics/GraphAnalyticsHostedService.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Analytics/GraphAnalyticsMetrics.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Analytics/GraphAnalyticsOptions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Analytics/GraphAnalyticsPipeline.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Analytics/GraphAnalyticsServiceCollectionExtensions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Analytics/GraphAnalyticsTypes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Analytics/GraphAnalyticsWriterOptions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Analytics/GraphOverlayExporter.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Analytics/InMemoryGraphAnalyticsWriter.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Analytics/InMemoryGraphSnapshotProvider.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Documents/GraphSnapshot.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Indexer/Documents/GraphSnapshotBuilder.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Indexer/Incremental/GraphBackfillMetrics.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Incremental/GraphChangeEvent.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Incremental/GraphChangeStreamOptions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Incremental/GraphChangeStreamProcessor.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Indexer/Incremental/GraphChangeStreamServiceCollectionExtensions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Incremental/InMemoryIdempotencyStore.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Incremental/NoOpGraphChangeEventSource.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Advisory/AdvisoryLinksetMetrics.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Advisory/AdvisoryLinksetProcessor.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Advisory/AdvisoryLinksetSnapshot.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Advisory/AdvisoryLinksetTransformer.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Advisory/IAdvisoryLinksetMetrics.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Inspector/GraphInspectorProcessor.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Inspector/GraphInspectorSnapshot.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Inspector/GraphInspectorTransformer.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Inspector/InspectorIngestServiceCollectionExtensions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Policy/IPolicyOverlayMetrics.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Policy/PolicyOverlayMetrics.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Policy/PolicyOverlayProcessor.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Policy/PolicyOverlaySnapshot.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Policy/PolicyOverlayTransformer.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/FileSystemSnapshotFileWriter.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/GraphBuildBatch.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/IGraphDocumentWriter.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/InMemoryGraphDocumentWriter.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/ISbomIngestMetrics.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/SbomIngestMetrics.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/SbomIngestOptions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/SbomIngestProcessor.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/SbomIngestProcessorFactory.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/SbomIngestServiceCollectionExtensions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/SbomIngestTransformer.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/SbomSnapshot.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Sbom/SbomSnapshotExporter.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Vex/VexOverlaySnapshot.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Ingestion/Vex/VexOverlayTransformer.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Indexer/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/obj/Debug/net10.0/StellaOps.Graph.Indexer.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/obj/Debug/net10.0/StellaOps.Graph.Indexer.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/obj/Release/net10.0/StellaOps.Graph.Indexer.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/obj/Release/net10.0/StellaOps.Graph.Indexer.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Schema/Base32Crockford.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/StellaOps.Graph.Indexer/Schema/CanonicalJson.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Indexer/Schema/GraphDocumentFactory.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/StellaOps.Graph.Indexer/Schema/GraphIdentity.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: ../src/__Tests/Graph/StellaOps.Graph.Indexer.Tests/StellaOps.Graph.Indexer.Tests.csproj [Unit]; ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/StellaOps.Graph.Indexer.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,85 @@
# Audit - StellaOps.Graph.Core
## Project
- Path: ../src/Graph/__Libraries/StellaOps.Graph.Core/StellaOps.Graph.Core.csproj
- Module: ..
- Kind: Library
- Audit date (UTC): 2026-01-30
- Files scanned: 9
- Files with issues: 9
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 3
- Namespace violations: 9
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- ../src/Graph/__Libraries/StellaOps.Graph.Core/CveObservationNode.cs (130 lines)
- ../src/Graph/__Libraries/StellaOps.Graph.Core/ICveObservationNodeRepository.cs (129 lines)
- ../src/Graph/__Libraries/StellaOps.Graph.Core/PostgresCveObservationNodeRepository.cs (348 lines)
- Namespace issues:
- ../src/Graph/__Libraries/StellaOps.Graph.Core/CveObservationNode.cs: missing namespace
- ../src/Graph/__Libraries/StellaOps.Graph.Core/ICveObservationNodeRepository.cs: missing namespace
- ../src/Graph/__Libraries/StellaOps.Graph.Core/PostgresCveObservationNodeRepository.cs: missing namespace
- ../src/Graph/__Libraries/StellaOps.Graph.Core/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- ../src/Graph/__Libraries/StellaOps.Graph.Core/obj/Debug/net10.0/StellaOps.Graph.Core.AssemblyInfo.cs: missing namespace
- ../src/Graph/__Libraries/StellaOps.Graph.Core/obj/Debug/net10.0/StellaOps.Graph.Core.GlobalUsings.g.cs: missing namespace
- ../src/Graph/__Libraries/StellaOps.Graph.Core/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- ../src/Graph/__Libraries/StellaOps.Graph.Core/obj/Release/net10.0/StellaOps.Graph.Core.AssemblyInfo.cs: missing namespace
- ../src/Graph/__Libraries/StellaOps.Graph.Core/obj/Release/net10.0/StellaOps.Graph.Core.GlobalUsings.g.cs: missing namespace
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 9
- Files with issues: 9
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| ../src/Graph/__Libraries/StellaOps.Graph.Core/CveObservationNode.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/__Libraries/StellaOps.Graph.Core/ICveObservationNodeRepository.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/__Libraries/StellaOps.Graph.Core/PostgresCveObservationNodeRepository.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/__Libraries/StellaOps.Graph.Core/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Libraries/StellaOps.Graph.Core/obj/Debug/net10.0/StellaOps.Graph.Core.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Libraries/StellaOps.Graph.Core/obj/Debug/net10.0/StellaOps.Graph.Core.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Libraries/StellaOps.Graph.Core/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Libraries/StellaOps.Graph.Core/obj/Release/net10.0/StellaOps.Graph.Core.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Libraries/StellaOps.Graph.Core/obj/Release/net10.0/StellaOps.Graph.Core.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: ../src/Graph/__Tests/StellaOps.Graph.Core.Tests/StellaOps.Graph.Core.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,94 @@
# Audit - StellaOps.Graph.Indexer.Persistence
## Project
- Path: ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/StellaOps.Graph.Indexer.Persistence.csproj
- Module: ..
- Kind: Library
- Audit date (UTC): 2026-01-30
- Files scanned: 13
- Files with issues: 13
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 3
- Namespace violations: 13
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/Postgres/Repositories/PostgresGraphAnalyticsWriter.cs (182 lines)
- ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/Postgres/Repositories/PostgresGraphDocumentWriter.cs (183 lines)
- ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/Postgres/Repositories/PostgresGraphSnapshotProvider.cs (163 lines)
- Namespace issues:
- ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/EfCore/Context/GraphIndexerDbContext.cs: missing namespace
- ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/Extensions/GraphIndexerPersistenceExtensions.cs: missing namespace
- ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/obj/Debug/net10.0/StellaOps.Graph.Indexer.Persistence.AssemblyInfo.cs: missing namespace
- ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/obj/Debug/net10.0/StellaOps.Graph.Indexer.Persistence.GlobalUsings.g.cs: missing namespace
- ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/obj/Release/net10.0/StellaOps.Graph.Indexer.Persistence.AssemblyInfo.cs: missing namespace
- ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/obj/Release/net10.0/StellaOps.Graph.Indexer.Persistence.GlobalUsings.g.cs: missing namespace
- ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/Postgres/GraphIndexerDataSource.cs: missing namespace
- ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/Postgres/Repositories/PostgresGraphAnalyticsWriter.cs: missing namespace
- ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/Postgres/Repositories/PostgresGraphDocumentWriter.cs: missing namespace
- ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/Postgres/Repositories/PostgresGraphSnapshotProvider.cs: missing namespace
- ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/Postgres/Repositories/PostgresIdempotencyStore.cs: missing namespace
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 13
- Files with issues: 13
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/EfCore/Context/GraphIndexerDbContext.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/Extensions/GraphIndexerPersistenceExtensions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/obj/Debug/net10.0/StellaOps.Graph.Indexer.Persistence.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/obj/Debug/net10.0/StellaOps.Graph.Indexer.Persistence.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/obj/Release/net10.0/StellaOps.Graph.Indexer.Persistence.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/obj/Release/net10.0/StellaOps.Graph.Indexer.Persistence.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/Postgres/GraphIndexerDataSource.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/Postgres/Repositories/PostgresGraphAnalyticsWriter.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/Postgres/Repositories/PostgresGraphDocumentWriter.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/Postgres/Repositories/PostgresGraphSnapshotProvider.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/__Libraries/StellaOps.Graph.Indexer.Persistence/Postgres/Repositories/PostgresIdempotencyStore.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Integration, Unit
- Detected test projects: ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/StellaOps.Graph.Indexer.Persistence.Tests.csproj [Unit]
- Missing layers: Integration
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,105 @@
# Audit - StellaOps.Graph.Api.Tests
## Project
- Path: ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/StellaOps.Graph.Api.Tests.csproj
- Module: ..
- Kind: Library
- Audit date (UTC): 2026-01-30
- Files scanned: 17
- Files with issues: 17
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: inherited false
- Deterministic: inherited true
- 100-line rule violations: 5
- Namespace violations: 17
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/GraphApiContractTests.cs (424 lines)
- ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/LoadTests.cs (118 lines)
- ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/MetricsTests.cs (107 lines)
- ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/QueryServiceTests.cs (122 lines)
- ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/SearchServiceTests.cs (215 lines)
- Namespace issues:
- ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/AuditLoggerTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/DiffServiceTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/ExportServiceTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/GraphApiContractTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/LineageServiceTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/LoadTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/MetricsTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/PathServiceTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/QueryServiceTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/RateLimiterServiceTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/SearchServiceTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/obj/Debug/net10.0/StellaOps.Graph.Api.Tests.AssemblyInfo.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/obj/Debug/net10.0/StellaOps.Graph.Api.Tests.GlobalUsings.g.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/obj/Release/net10.0/StellaOps.Graph.Api.Tests.GlobalUsings.g.cs: missing namespace
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Remove overrides that disable TreatWarningsAsErrors.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 17
- Files with issues: 17
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/AuditLoggerTests.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/DiffServiceTests.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/ExportServiceTests.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/GraphApiContractTests.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/LineageServiceTests.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/LoadTests.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/MetricsTests.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/PathServiceTests.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/QueryServiceTests.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/RateLimiterServiceTests.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/SearchServiceTests.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/obj/Debug/net10.0/StellaOps.Graph.Api.Tests.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/obj/Debug/net10.0/StellaOps.Graph.Api.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Api.Tests/obj/Release/net10.0/StellaOps.Graph.Api.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,80 @@
# Audit - StellaOps.Graph.Core.Tests
## Project
- Path: ../src/Graph/__Tests/StellaOps.Graph.Core.Tests/StellaOps.Graph.Core.Tests.csproj
- Module: ..
- Kind: Library
- Audit date (UTC): 2026-01-30
- Files scanned: 7
- Files with issues: 7
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 1
- Namespace violations: 7
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- ../src/Graph/__Tests/StellaOps.Graph.Core.Tests/CveObservationNodeTests.cs (254 lines)
- Namespace issues:
- ../src/Graph/__Tests/StellaOps.Graph.Core.Tests/CveObservationNodeTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Core.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Core.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Core.Tests/obj/Debug/net10.0/StellaOps.Graph.Core.Tests.AssemblyInfo.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Core.Tests/obj/Debug/net10.0/StellaOps.Graph.Core.Tests.GlobalUsings.g.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Core.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Core.Tests/obj/Release/net10.0/StellaOps.Graph.Core.Tests.GlobalUsings.g.cs: missing namespace
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 7
- Files with issues: 7
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| ../src/Graph/__Tests/StellaOps.Graph.Core.Tests/CveObservationNodeTests.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/__Tests/StellaOps.Graph.Core.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Core.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Core.Tests/obj/Debug/net10.0/StellaOps.Graph.Core.Tests.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Core.Tests/obj/Debug/net10.0/StellaOps.Graph.Core.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Core.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Core.Tests/obj/Release/net10.0/StellaOps.Graph.Core.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,90 @@
# Audit - StellaOps.Graph.Indexer.Persistence.Tests
## Project
- Path: ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/StellaOps.Graph.Indexer.Persistence.Tests.csproj
- Module: ..
- Kind: Library
- Audit date (UTC): 2026-01-30
- Files scanned: 10
- Files with issues: 10
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: inherited false
- Deterministic: inherited true
- 100-line rule violations: 4
- Namespace violations: 10
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/GraphIndexerPostgresFixture.cs (117 lines)
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/GraphQueryDeterminismTests.cs (210 lines)
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/GraphStorageMigrationTests.cs (166 lines)
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/PostgresIdempotencyStoreTests.cs (101 lines)
- Namespace issues:
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/GraphIndexerPostgresFixture.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/GraphQueryDeterminismTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/GraphStorageMigrationTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/PostgresIdempotencyStoreTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/obj/Debug/net10.0/StellaOps.Graph.Indexer.Persistence.Tests.AssemblyInfo.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/obj/Debug/net10.0/StellaOps.Graph.Indexer.Persistence.Tests.GlobalUsings.g.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/obj/Release/net10.0/StellaOps.Graph.Indexer.Persistence.Tests.GlobalUsings.g.cs: missing namespace
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Remove overrides that disable TreatWarningsAsErrors.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 10
- Files with issues: 10
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/GraphIndexerPostgresFixture.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/GraphQueryDeterminismTests.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/GraphStorageMigrationTests.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/PostgresIdempotencyStoreTests.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/obj/Debug/net10.0/StellaOps.Graph.Indexer.Persistence.Tests.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/obj/Debug/net10.0/StellaOps.Graph.Indexer.Persistence.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Persistence.Tests/obj/Release/net10.0/StellaOps.Graph.Indexer.Persistence.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Integration, Unit
- Detected test projects: none
- Missing layers: Integration, Unit
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,109 @@
# Audit - StellaOps.Graph.Indexer.Tests
## Project
- Path: ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/StellaOps.Graph.Indexer.Tests.csproj
- Module: ..
- Kind: Library
- Audit date (UTC): 2026-01-30
- Files scanned: 18
- Files with issues: 18
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: inherited false
- Deterministic: inherited true
- 100-line rule violations: 7
- Namespace violations: 18
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphChangeStreamProcessorTests.cs (114 lines)
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphCoreLogicTests.cs (542 lines)
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphIndexerEndToEndTests.cs (413 lines)
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphInspectorTransformerTests.cs (191 lines)
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphSnapshotBuilderTests.cs (135 lines)
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphTestHelpers.cs (148 lines)
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/SbomSnapshotExporterTests.cs (114 lines)
- Namespace issues:
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphAnalyticsEngineTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphAnalyticsPipelineTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphAnalyticsTestData.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphChangeStreamProcessorTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphCoreLogicTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphIdentityTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphIndexerEndToEndTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphInspectorTransformerTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphOverlayExporterTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphSnapshotBuilderTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphTestHelpers.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/SbomLineageTransformerTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/SbomSnapshotExporterTests.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/obj/Debug/net10.0/StellaOps.Graph.Indexer.Tests.AssemblyInfo.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/obj/Debug/net10.0/StellaOps.Graph.Indexer.Tests.GlobalUsings.g.cs: missing namespace
- ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs: missing namespace
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Remove overrides that disable TreatWarningsAsErrors.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 18
- Files with issues: 18
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphAnalyticsEngineTests.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphAnalyticsPipelineTests.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphAnalyticsTestData.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphChangeStreamProcessorTests.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphCoreLogicTests.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphIdentityTests.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphIndexerEndToEndTests.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphInspectorTransformerTests.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphOverlayExporterTests.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphSnapshotBuilderTests.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/GraphTestHelpers.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/SbomLineageTransformerTests.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/SbomSnapshotExporterTests.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/obj/Debug/net10.0/StellaOps.Graph.Indexer.Tests.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/obj/Debug/net10.0/StellaOps.Graph.Indexer.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Graph/__Tests/StellaOps.Graph.Indexer.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.