The Playwright base image (mcr.microsoft.com/playwright:v1.49.1-noble) ships without unzip, which bun's curl|bash installer requires: error: unzip is required to install bun process "/bin/sh -c curl -fsSL https://bun.sh/install ..." did not complete successfully: exit code: 1 Found while user asked the agent to attempt to bring up the suite-e2e compose stack. Latent bug — the runner image had never been built successfully in any local workspace before. Test report (test_run_report.md) updated with the concrete error trace from the up attempt: the 6 azaion/<S>:test service images are pull-access-denied (not in any reachable registry from this host), confirming the legitimate external-service env block. Local-build half (azaion-ui, owm-stub, tile-stub, playwright-runner) is healthy. No e2e tests were executed; Step 7 verdict unchanged (PASS_WITH_DOCUMENTED_GATE; e2e deferred to CI / merge lane). Co-authored-by: Cursor <cursoragent@cursor.com>
7.2 KiB
Test Run Report (Step 7)
Date: 2026-05-11
Mode: functional
Runner: scripts/run-tests.sh (default profiles: static + fast; e2e env-blocked, see below)
Verdict: PASS_WITH_DOCUMENTED_GATE
Profile Outcomes
| Profile | Status | Counts | Wall-clock | Report file |
|---|---|---|---|---|
| static | PASS | 29 / 29 | ~13 s | test-output/static-report.csv |
| fast | PASS | 26 files / 163 PASS / 13 SKIP / 0 FAIL | ~14.6 s | test-output/fast-report.xml |
| e2e | env-blocked (deferred) | n/a | n/a | n/a — see "Environment block" below |
System-Under-Test Reality Gate
PASS:
_docs/00_problem/input_data/expected_results/results_report.mdexists;_docs/02_document/tests/traceability-matrix.mdmaps every AC to a test scenario and a results-report row.- Stubs are confined to external systems: suite services (admin / flights / annotations / detect / loader / resource) are stubbed via MSW (fast) or are the unbuilt SUT for e2e. Internal UI modules (
<App>,<AnnotationsPage>,<CanvasEditor>,<DetectionClasses>,AuthContext,FlightProvider,<Header>, etc.) render as production. - No internal product module is faked, monkeypatched, or replaced with a deterministic fallback — verified by Phase 7 of every per-batch code review and the three cumulative reviews.
- CSV report inspected (
test-output/summary.csv) — 29 / 29 static rows PASS; fast profile reported as one rolled-up PASS row pointing at the JUnit XML.
Skipped Tests — All 13 Accepted as Legitimate
User-approved (option A) per test-run skill section 5. All 13 are quarantine markers for absent production features, paired with control PASS tests that pin current behaviour:
| # | Test | Quarantine reason | Drift backlog |
|---|---|---|---|
| 1 | tests/annotations_endpoint.test.tsx AI-suggestion-accept save |
No "accept AI suggestion" button wired to a save POST in production yet | F-CUM-3 #18 |
| 2 | tests/annotations_endpoint.test.tsx bulk-edit save |
No bulk-edit save path in production yet | F-CUM-3 #18 |
| 3 | tests/destructive_ux.test.tsx per-surface enumeration |
Static gate STC-SEC8 covers it; per-surface tests defer to Phase B feature work |
structural placeholder |
| 4 | tests/sse_lifecycle.test.tsx annotation-status SSE |
Production has not wired <AnnotationsPage> to an annotation-status SSE yet |
F-CUM-1 #5 |
| 5 | tests/i18n.test.tsx detector path on first boot |
i18n detector pending Step 4 (testability refactor scoped it out) | F-CUM-1 #6 |
| 6 | tests/i18n.test.tsx persistence across reload |
i18n persistence pending Step 4 | F-CUM-1 #7 |
| 7 | tests/wire_contract.test.ts CombatReadiness |
enum_spec_snapshot.verification_pending=true (Step 4 .NET inspection pending) |
spec-side gate |
| 8 | tests/wire_contract.test.ts MediaType |
enum_spec_snapshot.verification_pending=true (Step 4 .NET inspection pending) |
spec-side gate |
| 9 | src/auth/ProtectedRoute.test.tsx 10s loading timeout fallback |
No timeout fallback in production | F-CUM-1 #9 |
| 10 | src/auth/ProtectedRoute.test.tsx Operator → /admin redirect |
No RBAC permission gating in production | F-CUM-1 #9 |
| 11 | src/auth/ProtectedRoute.test.tsx integrator → /settings redirect |
Same RBAC gap | F-CUM-1 #9 |
| 12 | src/components/Header.test.tsx FT-N-09 Escape close + handler detach |
No document-level keydown listener in production | F-CUM-1 #10 |
| 13 | src/components/ConfirmDialog.test.tsx focus trap |
No focus trap in production | F-CUM-3 #12 |
All 13 satisfy the test-run skill's "feature-flag-gated test whose feature is intentionally disabled in this environment" pattern (broadened: feature-not-yet-built). None are flaky-test quarantines, missing-fixture, missing-credential, or service-not-running. They're tracked in F-CUM-3 (cumulative 04–06) and F-CUM-5 (cumulative 07–08) as Phase B / Step 9 work.
Environment Block — e2e Profile (User-Approved Defer + Confirmed by docker compose up)
User-approved (option A on first prompt): treat static + fast as the Step 7 per-commit gate; defer e2e to the dev/stage merge lane / CI runner that has registry access.
User-approved (option A on follow-up): try to bring up the e2e stack to capture a concrete error trace.
Concrete error trace captured 2026-05-11:
docker pull azaion/admin:test→Error response from daemon: pull access denied for azaion/admin, repository does not exist or may require 'docker login'. Same shape forazaion/{flights,annotations,detect,loader,resource}:test.docker compose -f e2e/docker-compose.suite-e2e.yml up -daborted on the first failed pull (azaion/annotations); no service started; no playwright tests executed.- Local-build half is healthy:
e2e-azaion-ui,e2e-owm-stub,e2e-tile-stub,e2e-playwright-runnerall built successfully (after the bug fix below).
Bug found and fixed during the up attempt: e2e/runner/Dockerfile — the RUN curl -fsSL https://bun.sh/install | bash step failed with error: unzip is required to install bun because the Playwright mcr.microsoft.com/playwright:v1.49.1-noble base image ships without unzip. Fixed by prepending apt-get update && apt-get install -y --no-install-recommends unzip to the same RUN. The local image now builds cleanly and is tagged e2e-playwright-runner:latest.
Why the suite images are unreachable:
- not available locally (
docker image lsshowed zeroazaion/*images before the up attempt), - not buildable from sibling-repo source today (e.g.
/Users/obezdienie001/dev/azaion/suite/annotations/has noDockerfile), - are normally pulled from the project's CI registry by the suite-level harness
/Users/obezdienie001/dev/azaion/suite/e2e/run-local.shviadocker compose pull --ignore-pull-failures— that path needs registry auth not configured in this workspace.
This matches the test-run skill's "Stubs are allowed only for external systems outside the product boundary" — every blocked image is an external-service from the UI's perspective and is the canonical SUT, not a faked internal module. The block is legitimate per skill section 0 #2.
Coverage gap: the e2e tests committed in batches 4–8 (10 fast/e2e companions + the 5 batch-7/8 perf and prod-image probes) cannot run in this Step 7 invocation. They WILL run on the CI / merge lane that has registry access. The contracts they assert (NFT-PERF-10 FCP, NFT-RES-LIM-05 memory soak, NFT-RES-LIM-08 RAM soak, NFT-RES-LIM-10 prefix-strip runtime, AZ-471/473/478/480 e2e companions) are also covered by:
- the equivalent fast-profile assertions inside
tests/**(PASS today), - and the new commit-time static gates (
STC-PERF01,STC-RES02,STC-RES03,STC-RES09,STC-RES10) — all PASS.
So no AC is uncovered — the e2e companions are defence-in-depth on real-browser timing, not the only assertion path for any single AC.
Outcome
Step 7 passes the gate with the documented env-block above. Auto-chain to Step 8 (Refactor — optional, user choice).
Open Items
- F-CUM-5 production-drift backlog (23 entries; see
cumulative_review_batches_07-08_cycle1_report.md) — Phase B / Step 9 work. - F-CUM-4 long-running-soak
@long-runningPlaywright config tag — recommended fold-in to the same merge-lane configuration that adds registry access for e2e.