-
Notifications
You must be signed in to change notification settings - Fork 3.1k
fix(e2e): reap connect after dashboard forward handoff #9621
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
ericksoa
merged 6 commits into
feat/b3-e-buildless-onboarding-9140
from
fix/dashboard-forward-background-handoff-9606-cutover
Aug 19, 2026
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
621497c
fix(e2e): reap connect after dashboard forward handoff
ericksoa 3f994a7
fix(e2e): cancel stale handoff cleanup timers
ericksoa 0923ccb
test(e2e): prove recovered forward remains live
ericksoa 7c164b4
fix(e2e): bound dashboard handoff cleanup
ericksoa 86a320d
test(e2e): parse exact forward status
ericksoa 44545de
test(e2e): fail closed on handoff evidence
ericksoa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,208 @@ | ||
| // SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
| // SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| import type { ChildProcess } from "node:child_process"; | ||
|
|
||
| import type { ArtifactSink } from "../fixtures/artifacts.ts"; | ||
| import { | ||
| type ChildProcessProgress, | ||
| spawnObservedChild, | ||
| } from "../fixtures/observed-child-process.ts"; | ||
| import { REPO_ROOT } from "../fixtures/paths.ts"; | ||
| import { resolveLiveE2eWorkloadSourceEnv } from "../fixtures/workload-source-env.ts"; | ||
| import { dashboardRemoteBindConnectStarted } from "./dashboard-remote-bind-env.ts"; | ||
|
|
||
| const CONNECT_CAPTURE_LIMIT_BYTES = 1024 * 1024; | ||
| const CONNECT_STOP_GRACE_MS = 5_000; | ||
|
|
||
| export interface DashboardConnectHandoffResult { | ||
| readonly exitCode: number | null; | ||
| readonly proof: "command-completed" | "forward-started"; | ||
| readonly signal: NodeJS.Signals | null; | ||
| readonly stderr: string; | ||
| readonly stdout: string; | ||
| } | ||
|
|
||
| export interface DashboardConnectHandoffOptions { | ||
| readonly artifacts: ArtifactSink; | ||
| readonly command?: readonly [string, ...string[]]; | ||
| readonly env: NodeJS.ProcessEnv; | ||
| readonly progress: ChildProcessProgress; | ||
| readonly sandboxName: string; | ||
| readonly signal?: AbortSignal; | ||
| readonly stopGraceMs?: number; | ||
| readonly timeoutMs: number; | ||
| readonly dashboardPort: string; | ||
| } | ||
|
|
||
| function signalChild(child: ChildProcess, signal: NodeJS.Signals): void { | ||
| try { | ||
| child.kill(signal); | ||
| } catch { | ||
| // The child may have exited between the proof callback and cleanup. | ||
| } | ||
| } | ||
|
|
||
| function signalChildGroup(child: ChildProcess, signal: NodeJS.Signals): void { | ||
| try { | ||
| if (child.pid !== undefined) { | ||
| process.kill(-child.pid, signal); | ||
| return; | ||
| } | ||
| } catch { | ||
| // Fall back to the group leader when the process group is already gone. | ||
| } | ||
| signalChild(child, signal); | ||
| } | ||
|
|
||
| function appendCaptured(current: string, chunk: string): string { | ||
| const next = current + chunk; | ||
| if (Buffer.byteLength(next, "utf8") > CONNECT_CAPTURE_LIMIT_BYTES) { | ||
| throw new Error("dashboard connect output exceeded the 1 MiB capture limit"); | ||
| } | ||
| return next; | ||
| } | ||
|
|
||
| /** | ||
| * Observe ordinary interactive `connect` until it either finishes normally or | ||
| * proves that forward recovery completed. A proof stops only the connect group | ||
| * leader first: NemoClaw forwards SIGTERM to its attached OpenShell shell, | ||
| * while a correctly backgrounded dashboard forward has already detached its | ||
| * descriptors and remains available for the caller's independent health check. | ||
| */ | ||
| export async function runDashboardConnectUntilForwardHandoff( | ||
| options: DashboardConnectHandoffOptions, | ||
| ): Promise<DashboardConnectHandoffResult> { | ||
| if (!Number.isFinite(options.timeoutMs) || options.timeoutMs <= 0) { | ||
| throw new RangeError("dashboard connect handoff timeout must be a positive finite value"); | ||
| } | ||
| const stopGraceMs = options.stopGraceMs ?? CONNECT_STOP_GRACE_MS; | ||
| if (!Number.isFinite(stopGraceMs) || stopGraceMs <= 0) { | ||
| throw new RangeError("dashboard connect stop grace must be a positive finite value"); | ||
| } | ||
|
|
||
| const [command, ...args] = options.command ?? ["nemoclaw", options.sandboxName, "connect"]; | ||
| const child = spawnObservedChild(command, args, { | ||
| activityLabel: "command: dashboard-remote-bind-connect", | ||
| progress: options.progress, | ||
| spawn: { | ||
| cwd: REPO_ROOT, | ||
| detached: true, | ||
| env: resolveLiveE2eWorkloadSourceEnv({ ...options.env }), | ||
| stdio: ["ignore", "pipe", "pipe"], | ||
| }, | ||
| }); | ||
|
|
||
| let stdout = ""; | ||
| let stderr = ""; | ||
| let forwardProof = false; | ||
| let proofStopRequested = false; | ||
| let deadlineExpired = false; | ||
| let aborted = false; | ||
| let cleanupEscalated = false; | ||
| let captureError: Error | null = null; | ||
| let forceKillTimer: NodeJS.Timeout | undefined; | ||
|
|
||
| const scheduleForcedCleanup = (): void => { | ||
| if (forceKillTimer) return; | ||
| forceKillTimer = setTimeout(() => { | ||
| cleanupEscalated = true; | ||
| signalChildGroup(child, "SIGKILL"); | ||
| }, stopGraceMs); | ||
| }; | ||
| const terminateGroup = (): void => { | ||
| signalChildGroup(child, "SIGTERM"); | ||
| scheduleForcedCleanup(); | ||
| }; | ||
| const requestProofStop = (): void => { | ||
| if (proofStopRequested) return; | ||
| proofStopRequested = true; | ||
| signalChild(child, "SIGTERM"); | ||
| scheduleForcedCleanup(); | ||
| }; | ||
| const inspectProof = (): void => { | ||
| if (forwardProof || captureError) return; | ||
| forwardProof = dashboardRemoteBindConnectStarted( | ||
| { exitCode: null, stdout, stderr }, | ||
| options.sandboxName, | ||
| options.dashboardPort, | ||
| ); | ||
| if (forwardProof) requestProofStop(); | ||
| }; | ||
| const capture = (stream: "stdout" | "stderr", chunk: Buffer | string): void => { | ||
| if (captureError) return; | ||
| try { | ||
| if (stream === "stdout") stdout = appendCaptured(stdout, chunk.toString()); | ||
| else stderr = appendCaptured(stderr, chunk.toString()); | ||
| inspectProof(); | ||
| } catch (error) { | ||
| captureError = error instanceof Error ? error : new Error(String(error)); | ||
| terminateGroup(); | ||
| } | ||
| }; | ||
| child.stdout?.on("data", (chunk: Buffer | string) => capture("stdout", chunk)); | ||
| child.stderr?.on("data", (chunk: Buffer | string) => capture("stderr", chunk)); | ||
|
|
||
| const deadline = setTimeout(() => { | ||
| deadlineExpired = true; | ||
| terminateGroup(); | ||
| }, options.timeoutMs); | ||
| const abort = (): void => { | ||
| aborted = true; | ||
| terminateGroup(); | ||
| }; | ||
| if (options.signal?.aborted) abort(); | ||
| else options.signal?.addEventListener("abort", abort, { once: true }); | ||
|
|
||
| let spawnError: Error | null = null; | ||
| child.once("error", (error) => { | ||
| spawnError = error; | ||
| }); | ||
| const { exitCode, signal } = await new Promise<{ | ||
| exitCode: number | null; | ||
| signal: NodeJS.Signals | null; | ||
| }>((resolve) => { | ||
| child.once("close", (code, closeSignal) => resolve({ exitCode: code, signal: closeSignal })); | ||
| }); | ||
| clearTimeout(deadline); | ||
| if (forceKillTimer) clearTimeout(forceKillTimer); | ||
| options.signal?.removeEventListener("abort", abort); | ||
|
|
||
| const artifactBase = "dashboard-connect-handoff"; | ||
| const artifactPaths = { | ||
| stdout: await options.artifacts.writeText(`${artifactBase}.stdout.txt`, stdout), | ||
| stderr: await options.artifacts.writeText(`${artifactBase}.stderr.txt`, stderr), | ||
| }; | ||
| await options.artifacts.writeJson(`${artifactBase}.result.json`, { | ||
| command: [command, ...args], | ||
| exitCode, | ||
| signal, | ||
| deadlineExpired, | ||
| cleanupEscalated, | ||
| forwardProof, | ||
| proofStopRequested, | ||
| stdout: artifactPaths.stdout, | ||
| stderr: artifactPaths.stderr, | ||
| }); | ||
|
|
||
| if (spawnError) throw spawnError; | ||
| if (captureError) throw captureError; | ||
| if (aborted) throw new Error("dashboard connect handoff was cancelled"); | ||
| if (deadlineExpired) { | ||
| throw new Error("dashboard connect did not complete or prove forward handoff within budget"); | ||
| } | ||
| if (forwardProof) { | ||
| if (cleanupEscalated) { | ||
| throw new Error( | ||
| "dashboard connect retained captured descriptors after forward proof and required forced cleanup", | ||
| ); | ||
| } | ||
| return { exitCode, proof: "forward-started", signal, stderr, stdout }; | ||
| } | ||
| if (exitCode === 0) { | ||
| return { exitCode, proof: "command-completed", signal, stderr, stdout }; | ||
| } | ||
| throw new Error( | ||
| `dashboard connect exited before proving forward handoff (exit ${exitCode ?? "unknown"}${signal ? `, signal ${signal}` : ""})`, | ||
| ); | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.