documentation cleanse, sprints work and planning. remaining non EF DAL migration to EF

This commit is contained in:
master
2026-02-25 01:24:07 +02:00
parent b07d27772e
commit 4db038123b
9090 changed files with 4836 additions and 2909 deletions

View File

@@ -0,0 +1,69 @@
{
"type": "source_verification",
"capturedAtUtc": "2026-02-11T17:10:30.9913517Z",
"feature": "triage-inbox-angular-component",
"filesChecked": [
"src/Web/StellaOps.Web/src/app/features/triage-inbox/triage-inbox.component.ts",
"src/Web/StellaOps.Web/src/app/features/triage-inbox/triage-inbox.component.html",
"src/Web/StellaOps.Web/src/app/features/triage-inbox/triage-inbox.component.scss",
"src/Web/StellaOps.Web/src/app/core/api/triage-inbox.client.ts",
"src/Web/StellaOps.Web/src/app/core/api/triage-inbox.models.ts",
"src/Web/StellaOps.Web/src/app/app.routes.ts",
"src/Web/StellaOps.Web/src/tests/triage/triage-inbox-angular-component.behavior.spec.ts"
],
"found": [
"src/Web/StellaOps.Web/src/app/features/triage-inbox/triage-inbox.component.ts",
"src/Web/StellaOps.Web/src/app/features/triage-inbox/triage-inbox.component.html",
"src/Web/StellaOps.Web/src/app/features/triage-inbox/triage-inbox.component.scss",
"src/Web/StellaOps.Web/src/app/core/api/triage-inbox.client.ts",
"src/Web/StellaOps.Web/src/app/core/api/triage-inbox.models.ts",
"src/Web/StellaOps.Web/src/app/app.routes.ts",
"src/Web/StellaOps.Web/src/tests/triage/triage-inbox-angular-component.behavior.spec.ts"
],
"missing": [
],
"symbolChecks": [
{
"path": "src/Web/StellaOps.Web/src/app/features/triage-inbox/triage-inbox.component.ts",
"symbol": "export class TriageInboxComponent",
"found": true
},
{
"path": "src/Web/StellaOps.Web/src/app/features/triage-inbox/triage-inbox.component.ts",
"symbol": "selector: \u0027app-triage-inbox\u0027",
"found": true
},
{
"path": "src/Web/StellaOps.Web/src/app/features/triage-inbox/triage-inbox.component.ts",
"symbol": "onFilterChange(nextFilter: InboxFilter): void",
"found": true
},
{
"path": "src/Web/StellaOps.Web/src/app/features/triage-inbox/triage-inbox.component.ts",
"symbol": "private orderPaths(paths: readonly ExploitPath[]): readonly ExploitPath[]",
"found": true
},
{
"path": "src/Web/StellaOps.Web/src/app/core/api/triage-inbox.client.ts",
"symbol": "private readonly baseUrl = `${environment.apiBaseUrl}/v1/triage`;",
"found": true
},
{
"path": "src/Web/StellaOps.Web/src/app/app.routes.ts",
"symbol": "path: \u0027triage/inbox\u0027",
"found": true
},
{
"path": "src/Web/StellaOps.Web/src/tests/triage/triage-inbox-angular-component.behavior.spec.ts",
"symbol": "describe(\u0027triage-inbox-angular-component behavior\u0027",
"found": true
}
],
"notes": [
"Tier 0 triage confirmed missing implementation file: triage-inbox component had HTML/SCSS only. Fix implemented component class, route wiring, deterministic filtering/selection behavior, and focused behavior tests.",
"Tier 0 also fixed compile blocker in triage-inbox API client (`environment.scannerApiUrl` -\u003e `environment.apiBaseUrl`) discovered when component became reachable by compilation."
],
"verdict": "pass",
"checkedAtUtc": "2026-02-11T17:10:30.9913517Z"
}

View File

@@ -0,0 +1,18 @@
{
"type": "build_test",
"capturedAtUtc": "2026-02-11T17:10:30.9913517Z",
"commands": [
{
"cmd": "npm run test -- --include src/tests/triage/triage-inbox-angular-component.behavior.spec.ts --include src/tests/runs/firstsignalcard-component.component.spec.ts --include src/tests/compare/three-pane-layout.behavior.spec.ts --include src/tests/export_center/stellabundle-export-button-component.behavior.spec.ts --include src/tests/snapshot/snapshot-merge-preview-with-k4-lattice-visualization-and-determinism-verificatio.behavior.spec.ts --include src/tests/compare/smart-diff-ui-components.behavior.spec.ts --include src/tests/slo_monitoring/slo-burn-rate-monitoring-ui.behavior.spec.ts --include src/tests/triage/signed-vex-override-badge.behavior.spec.ts --include src/tests/setup_wizard/setup-wizard-live-api-wiring.behavior.spec.ts --include src/tests/security/secret-detection-ui.behavior.spec.ts --include src/tests/security/secret-detection-revelation-policy-ui.behavior.spec.ts --include src/tests/scores/score-ui-display-enhancement.behavior.spec.ts --include src/tests/scores/score-comparison-view.behavior.spec.ts --include src/tests/scheduler_ops/scheduler-orchestrator-ops-ui.behavior.spec.ts --include src/tests/scanner_ops/scanner-ops-settings-ui.behavior.spec.ts --include src/tests/sbom_sources/sbom-sources-manager-ui.behavior.spec.ts --include src/tests/sbom_diff/sbom-diff-side-by-side-panel.behavior.spec.ts --include src/tests/analytics/sbom-analytics-console-ui.behavior.spec.ts --include src/tests/export_center/sarif-download-from-export-center.behavior.spec.ts --include src/tests/compare/role-based-views.behavior.spec.ts --no-progress",
"result": "pass",
"note": "Focused behavior suite passed (20 files / 98 tests), including new triage inbox behavior coverage and existing regression checks."
},
{
"cmd": "npm run build",
"result": "pass",
"note": "Web build completed with known baseline Angular diagnostics, budget warnings, and CommonJS warnings only."
}
],
"verdict": "pass",
"checkedAtUtc": "2026-02-11T17:10:30.9913517Z"
}

View File

@@ -0,0 +1,42 @@
{
"type": "integration",
"harness": "Angular triage inbox component behavior tests",
"capturedAtUtc": "2026-02-11T17:10:30.9913517Z",
"steps": [
{
"description": "Verify triage inbox loads exploit paths, applies deterministic risk ordering, and selects a visible path on initial render.",
"result": "pass",
"evidence": [
"src/Web/StellaOps.Web/src/app/features/triage-inbox/triage-inbox.component.ts",
"src/Web/StellaOps.Web/src/tests/triage/triage-inbox-angular-component.behavior.spec.ts"
]
},
{
"description": "Verify filter changes update visible path set and keep selected path synchronized with visible results.",
"result": "pass",
"evidence": [
"src/Web/StellaOps.Web/src/app/features/triage-inbox/triage-inbox.component.ts",
"src/Web/StellaOps.Web/src/app/features/triage-inbox/triage-inbox.component.html",
"src/Web/StellaOps.Web/src/tests/triage/triage-inbox-angular-component.behavior.spec.ts"
]
},
{
"description": "Verify degraded API behavior surfaces deterministic error state without stale selection/path data.",
"result": "pass",
"evidence": [
"src/Web/StellaOps.Web/src/app/features/triage-inbox/triage-inbox.component.ts",
"src/Web/StellaOps.Web/src/tests/triage/triage-inbox-angular-component.behavior.spec.ts"
]
},
{
"description": "Verify route-level user surface wiring exists for triage inbox (`/triage/inbox`).",
"result": "pass",
"evidence": [
"src/Web/StellaOps.Web/src/app/app.routes.ts",
"src/Web/StellaOps.Web/src/app/features/triage-inbox/triage-inbox.component.ts"
]
}
],
"verdict": "pass",
"checkedAtUtc": "2026-02-11T17:10:30.9913517Z"
}