Close scratch iteration 006 grouped readiness repairs

This commit is contained in:
master
2026-03-13 02:27:03 +02:00
parent 9c3d1f8d4a
commit 27d0247058
11 changed files with 569 additions and 6 deletions

View File

@@ -696,6 +696,27 @@ function Test-FrontdoorBootstrap {
return $true
}
function Test-AuthenticatedFrontdoorReadiness {
Write-Step 'Waiting for authenticated frontdoor route readiness'
Push-Location $Root
try {
& node 'src/Web/StellaOps.Web/scripts/live-frontdoor-authenticated-readiness.mjs'
if ($LASTEXITCODE -eq 0) {
Write-Ok 'Authenticated topology, notifications admin, and promotion flows are ready for first-user QA'
return $true
}
}
catch {
}
finally {
Pop-Location
}
Write-Fail 'Authenticated frontdoor route readiness did not converge'
return $false
}
# ─── 8. Smoke test ─────────────────────────────────────────────────────────
function Test-Smoke {
@@ -755,6 +776,12 @@ function Test-Smoke {
} else {
$hasBlockingFailures = $true
}
if (Test-AuthenticatedFrontdoorReadiness) {
Write-Ok 'Authenticated frontdoor route readiness converged'
} else {
$hasBlockingFailures = $true
}
}
# Platform container health summary