4.8 KiB
4.8 KiB
Configuration Pane (Integration Status Dashboard)
Module
Web
Status
VERIFIED
Description
Console-level configuration pane showing live integration status grouped by sections with connection health, detail views per integration, and signal-based state management. The mounted page now derives rows from the integrations API and unified audit instead of seeded connector records.
Implementation Details
- Feature directory:
src/Web/StellaOps.Web/src/app/features/configuration-pane/ - Routes:
configuration-pane.routes.ts - Canonical route:
/setup/configuration-pane - Legacy alias:
/settings/configuration-pane - Components:
configuration-pane(src/Web/StellaOps.Web/src/app/features/configuration-pane/components/configuration-pane.component.ts)integration-detail(src/Web/StellaOps.Web/src/app/features/configuration-pane/components/integration-detail.component.ts)integration-section(src/Web/StellaOps.Web/src/app/features/configuration-pane/components/integration-section.component.ts)
- Services:
configuration-pane-api(src/Web/StellaOps.Web/src/app/features/configuration-pane/services/configuration-pane-api.service.ts)configuration-pane-state(src/Web/StellaOps.Web/src/app/features/configuration-pane/services/configuration-pane-state.service.ts)
- Models:
src/Web/StellaOps.Web/src/app/features/configuration-pane/models/configuration-pane.models.ts
- Source: Feature matrix scan
- Current runtime source of truth:
- Registry, vault, and settings-store rows are composed from the live integrations API.
- History is composed from unified audit integration events.
- Database, cache, and telemetry sections remain explicit empty or missing states until a backing contract exists.
E2E Test Plan
- Setup:
- Log in with a user that has appropriate permissions
- Navigate to
/setup/configuration-pane - Ensure test data exists (scanned artifacts, SBOM data, or seed data as needed)
- Core verification:
- Verify settings form loads with current values pre-populated
- Verify changes can be saved and persist across page reloads
- Verify validation prevents saving invalid configurations
- Edge cases:
- Verify graceful handling when backend API is unavailable (error state)
- Verify responsive layout at different viewport sizes
- Verify accessibility (keyboard navigation, screen reader labels, ARIA attributes)
Verification
- Date: 2026-02-10
- Run artifacts: docs/qa/feature-checks/runs/web/configuration-pane/run-001/
- Tier results:
- tier0-source-check.json: pass
- tier1-build-check.json: pass
- tier2-e2e-check.json: pass
Recheck (run-003)
- Date (UTC): 2026-02-11T06:37:41Z
- Status: FAILED (strict Tier 2 UI replay)
- Tier 2 evidence:
docs/qa/feature-checks/runs/web/configuration-pane/run-003/tier2-ui-check.json - Notes:
/console/configurationfailed strict end-user assertion because theConfigurationheading never rendered during the Playwright transaction.
Historical Recheck (run-004)
- Date (UTC): 2026-02-11
- Status: VERIFIED (strict Tier 2 UI replay)
- Tier 1 evidence: Focused configuration-pane suite passed 3/3 across 1 file.
- Tier 2 evidence:
docs/qa/feature-checks/runs/web/configuration-pane/run-004/tier2-ui-check.json - Replay scope:
- Navigate to
/settings/configuration-paneand verify heading, summary metrics, and integration list render. - Verify the then-current seeded
Primary Databaserow using scoped.integration-nameselector. - Open integration detail panel and verify
Edit Configurationaction is visible.
- Navigate to
Historical Recheck (run-007)
- Date (UTC): 2026-02-11T10:08:09Z
- Status: PASSED (strict Tier 2 UI replay)
- Tier 2 evidence: docs/qa/feature-checks/runs/web/configuration-pane/run-007/tier2-ui-check.json
- Notes: Verified on /settings/configuration-pane with configuration summary and detail-panel interaction assertions against the earlier synthetic configuration-pane service.
Recheck (run-008)
- Date (UTC): 2026-04-15T17:03:18Z
- Status: VERIFIED (strict Tier 2 UI replay)
- Tier 2 evidence:
docs/qa/feature-checks/runs/web/configuration-pane/run-008/tier2-ui-check.json - Replay scope:
- Open
/setup/configuration-paneand verify the mounted configuration heading and summary copy render from the live integrations-backed page. - Verify the removed seeded
Primary Databaserow does not appear on the mounted route.
- Open
2026-04-15 Truthful State Cutover
configuration-pane-api.service.tsno longer seeds connector rows, health checks, or history in mounted flows.- The route now renders only integrations exposed by the live integrations API and shows explicit empty sections where backend coverage does not exist.
- The mounted page returned to
VERIFIEDafter the run-008 live replay against/setup/configuration-pane.