Files
git.stella-ops.org/docs-archived/implplan-blocked/audits/src/Unknowns/StellaOps.Unknowns.WebService/StellaOps.Unknowns.WebService.csproj
2026-02-19 22:07:11 +02:00

83 lines
4.5 KiB
XML

# Audit - StellaOps.Unknowns.WebService
## Project
- Path: ../src/Unknowns/StellaOps.Unknowns.WebService/StellaOps.Unknowns.WebService.csproj
- Module: ..
- Kind: Library
- Audit date (UTC): 2026-01-30
- Files scanned: 9
- Files with issues: 8
- 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: 2
- Namespace violations: 8
- 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/Unknowns/StellaOps.Unknowns.WebService/Endpoints/GreyQueueEndpoints.cs (815 lines)
- ../src/Unknowns/StellaOps.Unknowns.WebService/Endpoints/UnknownsEndpoints.cs (425 lines)
- Namespace issues:
- ../src/Unknowns/StellaOps.Unknowns.WebService/ServiceCollectionExtensions.cs: missing namespace
- ../src/Unknowns/StellaOps.Unknowns.WebService/Endpoints/GreyQueueEndpoints.cs: missing namespace
- ../src/Unknowns/StellaOps.Unknowns.WebService/Endpoints/UnknownsEndpoints.cs: missing namespace
- ../src/Unknowns/StellaOps.Unknowns.WebService/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- ../src/Unknowns/StellaOps.Unknowns.WebService/obj/Debug/net10.0/StellaOps.Unknowns.WebService.AssemblyInfo.cs: missing namespace
- ../src/Unknowns/StellaOps.Unknowns.WebService/obj/Debug/net10.0/StellaOps.Unknowns.WebService.GlobalUsings.g.cs: missing namespace
- ../src/Unknowns/StellaOps.Unknowns.WebService/obj/Debug/net10.0/StellaOps.Unknowns.WebService.MvcApplicationPartsAssemblyInfo.cs: missing namespace
- ../src/Unknowns/StellaOps.Unknowns.WebService/obj/Release/net10.0/StellaOps.Unknowns.WebService.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: 8
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| ../src/Unknowns/StellaOps.Unknowns.WebService/ServiceCollectionExtensions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Unknowns/StellaOps.Unknowns.WebService/Endpoints/GreyQueueEndpoints.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Unknowns/StellaOps.Unknowns.WebService/Endpoints/UnknownsEndpoints.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Unknowns/StellaOps.Unknowns.WebService/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Unknowns/StellaOps.Unknowns.WebService/obj/Debug/net10.0/StellaOps.Unknowns.WebService.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Unknowns/StellaOps.Unknowns.WebService/obj/Debug/net10.0/StellaOps.Unknowns.WebService.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Unknowns/StellaOps.Unknowns.WebService/obj/Debug/net10.0/StellaOps.Unknowns.WebService.MvcApplicationPartsAssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Unknowns/StellaOps.Unknowns.WebService/obj/Release/net10.0/StellaOps.Unknowns.WebService.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: ../src/Unknowns/__Tests/StellaOps.Unknowns.WebService.Tests/StellaOps.Unknowns.WebService.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.