import fs from "node:fs"; import os from "node:os"; import path from "node:path"; import { afterEach, describe, expect, it, vi } from "vitest"; import { renderStartRemoteRecording, type RunCommand, } from "../../scripts/e2e/telegram-desktop-crabbox.ts"; import { confirmQrLink, parseRecorderArgs, parseWindowGeometry, readRecorderSession, recoverRecorderStartup, recorderArtifacts, screenshotRecorder, type RecorderOperations, type RecorderSession, renderGoldenImagePreflight, renderLaunchDesktop, renderPrepareQr, renderReadQrLink, renderWaitForMainWindow, startRecorder, stopRecorder, viewRecorder, writeRecorderSession, } from "../../scripts/e2e/telegram-desktop-recorder.ts"; const tempDirs: string[] = []; function makeTempDir(): string { const dir = fs.mkdtempSync(path.join(os.tmpdir(), "telegram-desktop-recorder-")); tempDirs.push(dir); return dir; } function recorderSessionArg(root: string, sessionPath: string): string { return path.relative(root, sessionPath); } function testSession(): RecorderSession { return { chat: "-1001234567890", desktopSessionId: "987654321", keepBox: false, leaseId: "cbx_test123", leaseOwned: true, imageSource: "telegram-desktop=7.0.9", provider: "aws", recordFps: 24, remotePaths: { desktopLog: "/tmp/recorder/telegram-desktop.log", ffmpegLog: "/tmp/recorder/ffmpeg.log", ffmpegPid: "/tmp/recorder/ffmpeg.pid", finalScreenshot: "/tmp/recorder/final.png", video: "/tmp/recorder/session.mp4", }, schemaVersion: 1, startedAt: "2026-08-15T12:00:00.000Z", window: { height: 1000, width: 650, x: 635, y: 40 }, userDriver: ["python3", "driver.py", "--account", "qa shared"], }; } afterEach(() => { vi.restoreAllMocks(); for (const dir of tempDirs.splice(0)) { fs.rmSync(dir, { force: true, recursive: true }); } }); describe("Telegram Desktop recorder CLI", () => { it("parses start defaults and a whitespace-separated user driver prefix", () => { expect( parseRecorderArgs([ "start", "--output-dir", ".artifacts/telegram", "--chat", "-1001234567890", "--user-driver", "uv run driver.py --json", ]), ).toEqual({ chat: "-1001234567890", command: "start", crabboxClass: "standard", idleTimeout: "1h", json: false, leaseId: undefined, messageId: undefined, outputDir: ".artifacts/telegram", provider: "docker", recordFps: 24, ttl: "2h", userDriver: ["uv", "run", "driver.py", "--json"], }); }); it("parses each session verb", () => { expect(parseRecorderArgs(["view", "--session", "recorder.json", "--message-id", "42"])).toEqual( { command: "view", messageId: "42", sessionPath: "recorder.json" }, ); expect( parseRecorderArgs(["screenshot", "--session", "recorder.json", "--output", "shot.png"]), ).toEqual({ command: "screenshot", output: "shot.png", sessionPath: "recorder.json" }); expect( parseRecorderArgs([ "stop", "--session", "recorder.json", "--crop", "telegram-window", "--keep-box", ]), ).toEqual({ command: "stop", crop: "telegram-window", keepBox: true, sessionPath: "recorder.json", }); expect(parseRecorderArgs(["status", "--session", "recorder.json"])).toEqual({ command: "status", sessionPath: "recorder.json", }); expect(parseRecorderArgs(["recover", "--session", "recorder.json"])).toEqual({ command: "recover", sessionPath: "recorder.json", }); expect(parseRecorderArgs(["artifacts", "--session", "recorder.json"])).toEqual({ command: "artifacts", sessionPath: "recorder.json", }); }); it("requires start inputs and a -100 private-group chat id", () => { expect(() => parseRecorderArgs(["start"])).toThrow("--chat is required"); expect(() => parseRecorderArgs([ "start", "--output-dir", ".artifacts/telegram", "--chat", "1234", "--user-driver", "driver", ]), ).toThrow("beginning with -100"); expect(() => parseRecorderArgs([ "start", "--output-dir", ".artifacts/telegram", "--chat", "-1001234", "--user-driver", "driver", "--provider", "hetzner", ]), ).toThrow("--provider must be aws or docker"); expect(() => parseRecorderArgs([ "start", "--output-dir", ".artifacts/telegram", "--chat", "-1001234", "--user-driver", " ", ]), ).toThrow("--user-driver is required"); }); }); describe("Telegram Desktop recorder remote contract", () => { it.each([ { expectedArgs: [ "warmup", "--provider", "docker", "--target", "linux", "--desktop", "--class", "standard", "--idle-timeout", "1h", "--ttl", "2h", ], expectedImageEnv: "openclaw-telegram-desktop:7.0.9", provider: "docker" as const, }, { expectedArgs: [ "warmup", "--provider", "aws", "--target", "linux", "--desktop", "--image-sdk", "telegram-desktop=7.0.9", "--class", "standard", "--idle-timeout", "1h", "--ttl", "2h", ], expectedImageEnv: undefined, provider: "aws" as const, }, ])( "leases the $provider Telegram image without changing the generic default", async (testCase) => { const root = makeTempDir(); const calls: Array<{ args: string[]; command: string; env?: NodeJS.ProcessEnv }> = []; const mockedRun: RunCommand = async (params) => { calls.push({ args: params.args, command: params.command, env: params.env }); if (params.command === "docker") { return { stderr: "", stdout: "[]" }; } if (params.args[0] === "warmup") { return { stderr: "", stdout: "leased cbx_0a1b2c slug=quiet-crab" }; } return { stderr: "", stdout: "" }; }; const operations = { createCroppedMotionPreview: vi.fn(async () => ({ crop: "", fps: 24, outputWidth: 430 })), createMotionPreview: vi.fn(async () => ({})), inspectCrabbox: vi.fn(async () => { throw new Error("stop after warmup"); }), runCommand: mockedRun, scpFromRemote: vi.fn(async () => undefined), sshRun: vi.fn(async () => ({ stderr: "", stdout: "" })), } satisfies RecorderOperations; await expect( startRecorder( root, { command: "start", chat: "-1001234567890", crabboxClass: "standard", idleTimeout: "1h", json: false, outputDir: "out", provider: testCase.provider, recordFps: 24, ttl: "2h", userDriver: ["python3", "driver.py"], }, operations, ), ).rejects.toThrow("stop after warmup"); const warmup = calls.find((call) => call.args[0] === "warmup"); expect(warmup?.args).toEqual(testCase.expectedArgs); expect(warmup?.env?.CRABBOX_LOCAL_CONTAINER_IMAGE).toBe(testCase.expectedImageEnv); expect(warmup?.args.includes("--image-sdk")).toBe(testCase.provider === "aws"); expect(calls).toContainEqual({ args: ["stop", "--provider", testCase.provider, "cbx_0a1b2c"], command: "crabbox", env: undefined, }); }, ); it("fails before warmup when docker cannot inspect the local Telegram image", async () => { const root = makeTempDir(); const calls: Array<{ args: string[]; command: string }> = []; const mockedRun: RunCommand = async (params) => { calls.push({ args: params.args, command: params.command }); throw new Error("No such image"); }; const operations = { createCroppedMotionPreview: vi.fn(async () => ({ crop: "", fps: 24, outputWidth: 430 })), createMotionPreview: vi.fn(async () => ({})), inspectCrabbox: vi.fn(async () => { throw new Error("must not inspect"); }), runCommand: mockedRun, scpFromRemote: vi.fn(async () => undefined), sshRun: vi.fn(async () => ({ stderr: "", stdout: "" })), } satisfies RecorderOperations; await expect( startRecorder( root, { command: "start", chat: "-1001234567890", crabboxClass: "standard", idleTimeout: "1h", json: false, outputDir: "out", provider: "docker", recordFps: 24, ttl: "2h", userDriver: ["python3", "driver.py"], }, operations, ), ).rejects.toThrow( "docker image inspect openclaw-telegram-desktop:7.0.9 failed: No such image. Build it with bash scripts/mantis/build-telegram-desktop-image.sh when the image is absent.", ); expect(calls).toEqual([ { args: ["image", "inspect", "openclaw-telegram-desktop:7.0.9"], command: "docker", }, ]); expect(operations.inspectCrabbox).not.toHaveBeenCalled(); }); // A run once reported a missing image while docker held it, because this wrapper // replaced docker's own failure with its guess. The daemon's text has to survive. it("keeps the docker failure text in the thrown message", async () => { const root = makeTempDir(); const operations = { createCroppedMotionPreview: vi.fn(async () => ({ crop: "", fps: 24, outputWidth: 430 })), createMotionPreview: vi.fn(async () => ({})), inspectCrabbox: vi.fn(async () => { throw new Error("must not inspect"); }), runCommand: (async () => { throw new Error("permission denied while trying to connect to the Docker daemon socket"); }) satisfies RunCommand, scpFromRemote: vi.fn(async () => undefined), sshRun: vi.fn(async () => ({ stderr: "", stdout: "" })), } satisfies RecorderOperations; await expect( startRecorder( root, { command: "start", chat: "-1001234567890", crabboxClass: "standard", idleTimeout: "1h", json: false, outputDir: "out", provider: "docker", recordFps: 24, ttl: "2h", userDriver: ["python3", "driver.py"], }, operations, ), ).rejects.toThrow("permission denied while trying to connect to the Docker daemon socket"); }); it("stops retrying one desktop after two accepted tokens leave it on the QR screen", async () => { const root = makeTempDir(); let qrAttempt = 0; const runCommand = vi.fn(async () => ({ stderr: "", stdout: JSON.stringify({ ok: true, session: { id: 91234, isPasswordPending: false } }), })); const operations = { createCroppedMotionPreview: vi.fn(async () => ({ crop: "", fps: 24, outputWidth: 430 })), createMotionPreview: vi.fn(async () => ({})), inspectCrabbox: vi.fn(async () => ({ sshHost: "host", sshKey: "/tmp/key", sshPort: "22", sshUser: "user", })), runCommand, scpFromRemote: vi.fn(async () => undefined), sshRun: vi.fn(async ({ command }: { command: string }) => { if (command.includes("telegram-login-qr.png")) { qrAttempt += 1; return { stderr: "", stdout: `tg://login?token=attempt-${qrAttempt}` }; } if (command.includes("Telegram Desktop did not reach the main window")) { throw new Error("permission denied reading the remote Docker socket"); } return { stderr: "", stdout: "" }; }), } satisfies RecorderOperations; await expect( startRecorder( root, { command: "start", chat: "-1001234567890", crabboxClass: "standard", idleTimeout: "1h", json: false, leaseId: "cbx_borrowed", outputDir: "out", provider: "docker", recordFps: 24, ttl: "2h", userDriver: ["python3", "driver.py"], }, operations, ), ).rejects.toThrow( "Telegram server accepted 2 login tokens, but Telegram Desktop stayed on the QR screen: permission denied reading the remote Docker socket", ); expect( runCommand.mock.calls.filter(([call]) => call.args.includes("terminate-session")), ).toHaveLength(2); }); it("reprovisions one fresh local desktop after an accepted-token wedge", async () => { const root = makeTempDir(); let container = 0; let qrAttempt = 0; const runCommand = vi.fn(async (call) => { if (call.command === "docker") { return { stderr: "", stdout: "[]" }; } if (call.args[0] === "warmup") { container += 1; return { stderr: "", stdout: `leased ${container === 1 ? "cbx_0a1b2c" : "cbx_0a1b2d"} slug=quiet-crab`, }; } if (call.args.includes("confirm-qr")) { return { stderr: "", stdout: JSON.stringify({ ok: true, session: { id: `${container}${qrAttempt}`, isPasswordPending: false }, }), }; } if ( call.args.includes("terminate-session") || call.args.includes("terminate-desktop-sessions") ) { return { stderr: "", stdout: JSON.stringify({ ok: true }) }; } return { stderr: "", stdout: "" }; }); const inspectCrabbox = vi.fn(async () => ({ sshHost: "host", sshKey: "/tmp/key", sshPort: "22", sshUser: "user", })); const operations = { createCroppedMotionPreview: vi.fn(async () => ({ crop: "", fps: 24, outputWidth: 430 })), createMotionPreview: vi.fn(async () => ({})), inspectCrabbox, runCommand, scpFromRemote: vi.fn(async () => undefined), sshRun: vi.fn(async ({ command }: { command: string }) => { if (command.includes("telegram-login-qr.png")) { qrAttempt += 1; return { stderr: "", stdout: `tg://login?token=attempt-${qrAttempt}` }; } if (command.includes("Telegram Desktop did not reach the main window") && container === 1) { throw new Error("first desktop stayed on QR"); } if (command.includes("getwindowgeometry")) { return { stderr: "", stdout: "635 40 650 1000" }; } return { stderr: "", stdout: "" }; }), } satisfies RecorderOperations; const result = await startRecorder( root, { command: "start", chat: "-1001234567890", crabboxClass: "standard", idleTimeout: "1h", json: false, outputDir: "out", provider: "docker", recordFps: 24, ttl: "2h", userDriver: ["python3", "driver.py"], }, operations, ); expect(inspectCrabbox).toHaveBeenCalledTimes(2); expect(runCommand.mock.calls.filter(([call]) => call.args[0] === "warmup")).toHaveLength(2); expect(runCommand.mock.calls).toContainEqual([ expect.objectContaining({ args: ["stop", "--provider", "docker", "cbx_0a1b2c"] }), ]); expect(result.session).toMatchObject({ leaseId: "cbx_0a1b2d", leaseOwned: true }); expect(readRecorderSession(result.sessionPath)).toMatchObject({ leaseId: "cbx_0a1b2d" }); }); it("hides the prepared chat before recording starts", async () => { const root = makeTempDir(); const sshRun = vi.fn(async ({ command }: { command: string }) => { if (command.includes("telegram-login-qr.png")) { return { stderr: "", stdout: "tg://login?token=open-target-chat" }; } if (command.includes("getwindowgeometry")) { return { stderr: "", stdout: "635 40 650 1000" }; } return { stderr: "", stdout: "" }; }); const operations = { createCroppedMotionPreview: vi.fn(async () => ({ crop: "", fps: 24, outputWidth: 650 })), createMotionPreview: vi.fn(async () => ({})), inspectCrabbox: vi.fn(async () => ({ sshHost: "host", sshKey: "/tmp/key", sshPort: "22", sshUser: "user", })), runCommand: vi.fn(async () => ({ stderr: "", stdout: JSON.stringify({ ok: true, session: { id: 91234, isPasswordPending: false } }), })), scpFromRemote: vi.fn(async () => undefined), sshRun, } satisfies RecorderOperations; await startRecorder( root, { command: "start", chat: "-1001234567890", crabboxClass: "standard", idleTimeout: "1h", json: false, leaseId: "cbx_borrowed", outputDir: "out", provider: "docker", recordFps: 24, ttl: "2h", userDriver: ["python3", "driver.py"], }, operations, ); // The target opens before capture to remove the chat list. The lane clears it before // recorder startup, and it stays hidden until the first session-owned outbound message. const openIndex = sshRun.mock.calls.findIndex(([call]) => call.command.includes("tg://privatepost?channel=1234567890"), ); const hideIndex = sshRun.mock.calls.findIndex(([call]) => call.command.includes("xdotool windowminimize"), ); const captureIndex = sshRun.mock.calls.findIndex(([call]) => call.command.includes("x11grab")); expect(openIndex).toBeGreaterThanOrEqual(0); expect(hideIndex).toBeGreaterThan(openIndex); expect(captureIndex).toBeGreaterThan(hideIndex); }); it("fetches the undecodable login screen when login attempts run out", async () => { const root = makeTempDir(); // Without the screenshot, "Telegram never drew the QR" and "zbarimg could not read it" // produce the same log line, and run 32256904298 could not be told apart from either. const scpFromRemote = vi.fn(async () => undefined); const operations = { createCroppedMotionPreview: vi.fn(async () => ({ crop: "", fps: 24, outputWidth: 430 })), createMotionPreview: vi.fn(async () => ({})), inspectCrabbox: vi.fn(async () => ({ sshHost: "host", sshKey: "/tmp/key", sshPort: "22", sshUser: "user", })), runCommand: vi.fn(async () => ({ stderr: "", stdout: JSON.stringify({ ok: true }), })), scpFromRemote, sshRun: vi.fn(async ({ command }: { command: string }) => { if (command.includes("telegram-login-qr.png")) { throw new Error("zbarimg: no barcode detected"); } return { stderr: "", stdout: "" }; }), } satisfies RecorderOperations; const options = { command: "start" as const, chat: "-1001234567890", crabboxClass: "standard", idleTimeout: "1h", json: false, leaseId: "cbx_borrowed", outputDir: "out", provider: "docker" as const, recordFps: 24, ttl: "2h", userDriver: ["python3", "driver.py"], }; // Exhausting the login attempts twice waits out twelve 2s backoffs, so this test alone // slept for 24s of the suite. Fake timers keep the retry count honest off the wall clock. vi.useFakeTimers(); try { const exhausted = expect(startRecorder(root, options, operations)).rejects.toThrow( "telegram-login-screen.png", ); await vi.runAllTimersAsync(); await exhausted; expect(scpFromRemote).toHaveBeenCalledWith( expect.objectContaining({ remote: expect.stringContaining("telegram-login-qr.png") }), ); scpFromRemote.mockRejectedValueOnce(new Error("scp: connection closed")); const unfetchable = expect(startRecorder(root, options, operations)).rejects.toThrow( "Login screen could not be fetched: scp: connection closed", ); await vi.runAllTimersAsync(); await unfetchable; } finally { vi.useRealTimers(); } }); it("reports the blocked user when the output dir is not writable", async () => { const root = makeTempDir(); // The agent and the recorder run as different users, so this fails in the lane and not // locally. Run 32259789706 surfaced it as a bare EACCES three minutes into the session, // after provisioning, with nothing naming either user. const outputDir = path.join(root, "out"); fs.mkdirSync(outputDir, { recursive: true }); fs.chmodSync(outputDir, 0o500); const operations = { createCroppedMotionPreview: vi.fn(async () => ({ crop: "", fps: 24, outputWidth: 430 })), createMotionPreview: vi.fn(async () => ({})), inspectCrabbox: vi.fn(async () => ({ sshHost: "host", sshKey: "/tmp/key", sshPort: "22", sshUser: "user", })), runCommand: vi.fn(async () => ({ stderr: "", stdout: "" })), scpFromRemote: vi.fn(async () => undefined), sshRun: vi.fn(async () => ({ stderr: "", stdout: "" })), } satisfies RecorderOperations; try { await expect( startRecorder( root, { command: "start", chat: "-1001234567890", crabboxClass: "standard", idleTimeout: "1h", json: false, leaseId: "cbx_borrowed", outputDir: "out", provider: "docker", recordFps: 24, ttl: "2h", userDriver: ["python3", "driver.py"], }, operations, ), ).rejects.toThrow(/Cannot write recorder output to .*mode=0500/u); // Failing before provisioning is the point: the old order paid for a container first. expect(operations.inspectCrabbox).not.toHaveBeenCalled(); } finally { fs.chmodSync(outputDir, 0o700); } }); it("renders only golden-image desktop operations", () => { const scripts = [ renderGoldenImagePreflight(), renderLaunchDesktop(), renderPrepareQr(), renderReadQrLink(), renderWaitForMainWindow(), renderStartRemoteRecording({ paths: { ffmpegLog: "/tmp/recorder/ffmpeg.log", ffmpegPid: "/tmp/recorder/ffmpeg.pid", video: "/tmp/recorder/session.mp4", }, recordFps: 24, }), ].join("\n"); expect(scripts).toContain("Telegram Desktop recorder golden image contract"); expect(scripts).toContain("/opt/Telegram/Telegram"); expect(scripts).toContain('test "$(cat /var/lib/crabbox/telegram-desktop-version)" = "7.0.9"'); expect(scripts).toContain("DISPLAY=:99 xdpyinfo"); expect(scripts).toContain("wmctrl xdotool scrot ffmpeg zbarimg xdpyinfo"); expect(scripts.toLowerCase()).not.toMatch(/apt-get|curl|wget|tdlib|python/u); // -f patterns also match this script's own shell (its command line contains the // binary path), so a -f pkill kills the launcher instead of a stale Telegram. expect(scripts).toContain("pkill -x Telegram"); expect(scripts).toContain("pgrep -x Telegram"); expect(scripts).not.toMatch(/p(kill|grep) -f [^\n]*Telegram/u); // Container sshd tears down the session process group; the client must detach. expect(scripts).toContain("setsid /opt/Telegram/Telegram"); // scrot exits 0 but keeps the existing file without -o, so repeated captures // would silently re-read the first screenshot. expect(scripts).not.toMatch(/scrot (?!-o)['"/]/u); expect(scripts).toContain(" { const link = "tg://login?token=credential-like-value"; const run = vi.fn(async () => ({ stderr: "", stdout: JSON.stringify({ ok: true, session: { id: 91234, isPasswordPending: false } }), })); await expect( confirmQrLink({ cwd: "/repo", link, run, userDriver: ["python3", "driver.py", "--account", "qa"], }), ).resolves.toBe("91234"); expect(run).toHaveBeenCalledWith({ args: ["driver.py", "--account", "qa", "confirm-qr", "--link", link, "--json"], command: "python3", cwd: "/repo", redactValues: [link], }); }); it("publishes a confirmed session handle before rejecting 2FA", async () => { const onSessionConfirmed = vi.fn(); const run = vi.fn(async () => ({ stderr: "", stdout: JSON.stringify({ ok: true, session: { id: 91234, isPasswordPending: true } }), })); await expect( confirmQrLink({ cwd: "/repo", link: "tg://login?token=pending-2fa", onSessionConfirmed, run, userDriver: ["python3", "driver.py"], }), ).rejects.toThrow("requires a 2FA password"); expect(onSessionConfirmed).toHaveBeenCalledWith("91234"); }); }); describe("Telegram Desktop recorder window geometry", () => { it("parses the measured window and rejects unusable geometry", () => { expect(parseWindowGeometry(" 636 45 648 995 \n")).toEqual({ height: 995, width: 648, x: 636, y: 45, }); expect(() => parseWindowGeometry("636 45 648")).toThrow("was not readable"); expect(() => parseWindowGeometry("636 45 10 10")).toThrow("too small to crop"); }); it("crops the recorded window instead of a fixed rectangle", async () => { const root = makeTempDir(); const sessionPath = path.join(root, "recorder.json"); writeRecorderSession(sessionPath, { ...testSession(), window: { height: 995, width: 648, x: 636, y: 45 }, }); const cropped = vi.fn(async () => ({ crop: "", fps: 24, outputWidth: 648 })); const sshRun = vi.fn(async () => ({ stderr: "", stdout: "" })); const operations = { createCroppedMotionPreview: cropped, createMotionPreview: vi.fn(async () => ({})), inspectCrabbox: vi.fn(async () => ({ sshHost: "host", sshKey: "/tmp/key", sshPort: "22", sshUser: "user", })), runCommand: (async () => ({ stderr: "", stdout: JSON.stringify({ ok: true }), })) as RunCommand, scpFromRemote: vi.fn(async () => undefined), sshRun, } satisfies RecorderOperations; await stopRecorder( root, { command: "stop", crop: "telegram-window", keepBox: false, sessionPath: recorderSessionArg(root, sessionPath), }, operations, ); expect(cropped).toHaveBeenCalledWith( expect.objectContaining({ crop: { cropWidth: 648, height: 600, width: 648, x: 636, y: 440 }, }), ); expect( sshRun.mock.calls.some(([params]) => params.command.includes("scrot -o -a 636,440,648,600")), ).toBe(true); }); }); describe("Telegram Desktop recorder session lifecycle", () => { it("round-trips recorder.json schema version 1", () => { const sessionPath = path.join(makeTempDir(), "recorder.json"); const session = testSession(); writeRecorderSession(sessionPath, session); expect(readRecorderSession(sessionPath)).toEqual(session); expect(fs.statSync(sessionPath).mode & 0o777).toBe(0o600); }); it("publishes only session-owned artifact paths across the recorder user boundary", () => { const root = makeTempDir(); const sessionPath = path.join(root, "recorder.json"); const screenshot = path.join(root, "screenshot.png"); fs.writeFileSync(screenshot, "proof", { mode: 0o600 }); writeRecorderSession(sessionPath, { ...testSession(), artifacts: { screenshot }, }); expect( recorderArtifacts(root, { command: "artifacts", sessionPath: recorderSessionArg(root, sessionPath), }), ).toEqual({ artifacts: { screenshot }, }); expect(fs.statSync(screenshot).mode & 0o040).toBe(0o040); }); it("keeps every recorder path inside its fixed working directory", async () => { const root = makeTempDir(); const sessionPath = path.join(root, "recorder.json"); writeRecorderSession(sessionPath, testSession()); expect(() => recorderArtifacts(root, { command: "artifacts", sessionPath: "../recorder.json" }), ).toThrow("--session must stay inside the recorder root"); await expect( screenshotRecorder( root, { command: "screenshot", output: path.join(root, "escape.png"), sessionPath: "recorder.json", }, { createCroppedMotionPreview: vi.fn(async () => ({ crop: "", fps: 24, outputWidth: 430, })), createMotionPreview: vi.fn(async () => ({})), inspectCrabbox: vi.fn(async () => { throw new Error("must reject output before inspect"); }), runCommand: vi.fn(), scpFromRemote: vi.fn(async () => undefined), sshRun: vi.fn(async () => ({ stderr: "", stdout: "" })), }, ), ).rejects.toThrow("--output must be relative"); }); it("writes the default screenshot beside a relative session path", async () => { const root = makeTempDir(); const sessionPath = path.join(root, "attempt", "recorder.json"); fs.mkdirSync(path.dirname(sessionPath)); writeRecorderSession(sessionPath, testSession()); const scpFromRemote = vi.fn(async () => undefined); const output = await screenshotRecorder( root, { command: "screenshot", sessionPath: recorderSessionArg(root, sessionPath) }, { createCroppedMotionPreview: vi.fn(async () => ({ crop: "", fps: 24, outputWidth: 430 })), createMotionPreview: vi.fn(async () => ({})), inspectCrabbox: vi.fn(async () => ({ sshHost: "host", sshKey: "/tmp/key", sshPort: "22", sshUser: "user", })), runCommand: vi.fn(), scpFromRemote, sshRun: vi.fn(async () => ({ stderr: "", stdout: "" })), }, ); expect(path.dirname(output)).toBe(path.dirname(sessionPath)); expect(scpFromRemote).toHaveBeenCalledWith(expect.objectContaining({ local: output })); }); it("sweeps unrecorded Desktop sessions after interrupted provisioning", async () => { const root = makeTempDir(); const sessionPath = path.join(root, "recorder.json"); fs.writeFileSync( `${sessionPath}.starting`, `${JSON.stringify({ leaseId: "cbx_interrupted", leaseOwned: true, provider: "docker", schemaVersion: 1, userDriver: ["python3", "driver.py"], })}\n`, { mode: 0o600 }, ); const calls: Array<{ args: string[]; command: string }> = []; const runCommand: RunCommand = async (params) => { calls.push({ args: params.args, command: params.command }); return { stderr: "", stdout: JSON.stringify({ ok: true }) }; }; await expect( recoverRecorderStartup( root, { command: "recover", sessionPath: recorderSessionArg(root, sessionPath) }, { runCommand }, ), ).resolves.toEqual({ recovered: true }); expect(calls).toContainEqual({ args: ["driver.py", "terminate-desktop-sessions", "--json"], command: "python3", }); expect( calls.some((call) => call.args[0] === "stop" && call.args.at(-1) === "cbx_interrupted"), ).toBe(true); expect(fs.existsSync(`${sessionPath}.starting`)).toBe(false); }); it("never stops a borrowed --lease-id box, on failure or on stop", async () => { const root = makeTempDir(); const calls: Array<{ args: string[]; command: string }> = []; const mockedRun: RunCommand = async (params) => { calls.push({ args: params.args, command: params.command }); return { stderr: "", stdout: JSON.stringify({ ok: true }) }; }; const failingOperations = { createCroppedMotionPreview: vi.fn(async () => ({ crop: "", fps: 24, outputWidth: 430 })), createMotionPreview: vi.fn(async () => ({})), inspectCrabbox: vi.fn(async () => { throw new Error("borrowed box unreachable"); }), runCommand: mockedRun, scpFromRemote: vi.fn(async () => undefined), sshRun: vi.fn(async () => ({ stderr: "", stdout: "" })), } satisfies RecorderOperations; await expect( startRecorder( root, { command: "start", chat: "-1001234567890", crabboxClass: "standard", idleTimeout: "1h", json: false, leaseId: "cbx_borrowed", outputDir: "out", provider: "aws", recordFps: 24, ttl: "2h", userDriver: ["python3", "driver.py"], }, failingOperations, ), ).rejects.toThrow("borrowed box unreachable"); expect(calls.some((call) => call.args[0] === "warmup")).toBe(false); expect(calls.some((call) => call.args[0] === "stop")).toBe(false); const sessionPath = path.join(root, "recorder.json"); writeRecorderSession(sessionPath, { ...testSession(), leaseId: "cbx_borrowed", leaseOwned: false, }); const operations = { ...failingOperations, inspectCrabbox: vi.fn(async () => ({ sshHost: "host", sshKey: "/tmp/key", sshPort: "22", sshUser: "user", })), } satisfies RecorderOperations; await stopRecorder( root, { command: "stop", keepBox: false, sessionPath: recorderSessionArg(root, sessionPath) }, operations, ); expect(calls.some((call) => call.args.includes("terminate-session"))).toBe(true); expect(calls.some((call) => call.args[0] === "stop")).toBe(false); }); it("keeps the Desktop authorization and the box alive with --keep-box", async () => { const root = makeTempDir(); const sessionPath = path.join(root, "recorder.json"); writeRecorderSession(sessionPath, testSession()); const calls: Array<{ args: string[]; command: string }> = []; const mockedRun: RunCommand = async (params) => { calls.push({ args: params.args, command: params.command }); return { stderr: "", stdout: JSON.stringify({ ok: true }) }; }; const operations = { createCroppedMotionPreview: vi.fn(async () => ({ crop: "", fps: 24, outputWidth: 430 })), createMotionPreview: vi.fn(async () => ({})), inspectCrabbox: vi.fn(async () => ({ sshHost: "host", sshKey: "/tmp/key", sshPort: "22", sshUser: "user", })), runCommand: mockedRun, scpFromRemote: vi.fn(async () => undefined), sshRun: vi.fn(async () => ({ stderr: "", stdout: "" })), } satisfies RecorderOperations; const stopped = await stopRecorder( root, { command: "stop", keepBox: true, sessionPath: recorderSessionArg(root, sessionPath), }, operations, ); expect(stopped.keepBox).toBe(true); expect(calls.some((call) => call.args.includes("terminate-session"))).toBe(false); expect(calls.some((call) => call.args[0] === "stop")).toBe(false); }); it("uses the recorded provider for view, inspect, and owned-lease stop", async () => { const root = makeTempDir(); const sessionPath = path.join(root, "recorder.json"); writeRecorderSession(sessionPath, { ...testSession(), imageSource: "openclaw-telegram-desktop:7.0.9", provider: "docker", }); const calls: Array<{ args: string[]; command: string }> = []; const mockedRun: RunCommand = async (params) => { calls.push({ args: params.args, command: params.command }); return { stderr: "", stdout: JSON.stringify({ ok: true }) }; }; const inspectCrabbox = vi.fn(async () => ({ sshHost: "host", sshKey: "/tmp/key", sshPort: "22", sshUser: "user", })); const sshCommands: string[] = []; const sshRun = vi.fn(async ({ command }: { command: string }) => { sshCommands.push(command); return { stderr: "", stdout: "" }; }); const operations = { createCroppedMotionPreview: vi.fn(async () => ({ crop: "", fps: 24, outputWidth: 430 })), createMotionPreview: vi.fn(async () => ({})), inspectCrabbox, runCommand: mockedRun, scpFromRemote: vi.fn(async () => undefined), sshRun, } satisfies RecorderOperations; await viewRecorder( root, { command: "view", messageId: "42", sessionPath: recorderSessionArg(root, sessionPath) }, operations, ); await stopRecorder( root, { command: "stop", keepBox: false, sessionPath: recorderSessionArg(root, sessionPath) }, operations, ); expect(inspectCrabbox).toHaveBeenCalledTimes(2); expect(sshCommands[0]).toContain('xdotool windowmap "$win"'); expect(sshCommands[0]).toContain('xdotool windowactivate --sync "$win"'); expect(inspectCrabbox).toHaveBeenNthCalledWith( 1, expect.objectContaining({ provider: "docker" }), ); expect(inspectCrabbox).toHaveBeenNthCalledWith( 2, expect.objectContaining({ provider: "docker" }), ); expect(calls).toContainEqual({ args: ["stop", "--provider", "docker", "cbx_test123"], command: "crabbox", }); }); it("finishes cleanly without previews when the lease is already gone", async () => { const root = makeTempDir(); const sessionPath = path.join(root, "recorder.json"); writeRecorderSession(sessionPath, testSession()); const preview = vi.fn(async () => ({})); const cropped = vi.fn(async () => ({ crop: "", fps: 24, outputWidth: 650 })); const operations = { createCroppedMotionPreview: cropped, createMotionPreview: preview, inspectCrabbox: vi.fn(async () => { throw new Error("local-container lease not found: cbx_test123"); }), runCommand: (async () => ({ stderr: "", stdout: JSON.stringify({ ok: true }), })) as RunCommand, scpFromRemote: vi.fn(async () => undefined), sshRun: vi.fn(async () => ({ stderr: "", stdout: "" })), } satisfies RecorderOperations; const stopped = await stopRecorder( root, { command: "stop", crop: "telegram-window", keepBox: false, sessionPath: recorderSessionArg(root, sessionPath), }, operations, ); expect(stopped.cleanupErrors).toBeUndefined(); expect(preview).not.toHaveBeenCalled(); expect(cropped).not.toHaveBeenCalled(); }); it("keeps artifacts recorded by an earlier keep-box stop", async () => { const root = makeTempDir(); const sessionPath = path.join(root, "recorder.json"); writeRecorderSession(sessionPath, { ...testSession(), artifacts: { previewGif: "/kept/motion.gif", video: "/kept/session.mp4" }, keepBox: true, }); const operations = { createCroppedMotionPreview: vi.fn(async () => ({ crop: "", fps: 24, outputWidth: 650 })), createMotionPreview: vi.fn(async () => ({})), inspectCrabbox: vi.fn(async () => { throw new Error("local-container lease not found: cbx_test123"); }), runCommand: (async () => ({ stderr: "", stdout: JSON.stringify({ ok: true }), })) as RunCommand, scpFromRemote: vi.fn(async () => undefined), sshRun: vi.fn(async () => ({ stderr: "", stdout: "" })), } satisfies RecorderOperations; const stopped = await stopRecorder( root, { command: "stop", keepBox: false, sessionPath: recorderSessionArg(root, sessionPath), }, operations, ); expect(stopped.artifacts).toEqual({ previewGif: "/kept/motion.gif", video: "/kept/session.mp4", }); }); it("still stops Crabbox and reports failure when local session termination fails", async () => { const root = makeTempDir(); const sessionPath = path.join(root, "recorder.json"); writeRecorderSession(sessionPath, testSession()); const calls: Array<{ args: string[]; command: string }> = []; const mockedRun: RunCommand = async (params) => { calls.push({ args: params.args, command: params.command }); if (params.args.includes("terminate-session")) { throw new Error("terminate failed"); } return { stderr: "", stdout: JSON.stringify({ ok: true }) }; }; const operations = { createCroppedMotionPreview: vi.fn(async () => ({ crop: "", fps: 24, outputWidth: 430 })), createMotionPreview: vi.fn(async () => ({})), inspectCrabbox: vi.fn(async () => ({ sshHost: "host", sshKey: "/tmp/key", sshPort: "22", sshUser: "user", })), runCommand: mockedRun, scpFromRemote: vi.fn(async () => undefined), sshRun: vi.fn(async () => ({ stderr: "", stdout: "" })), } satisfies RecorderOperations; await expect( stopRecorder( root, { command: "stop", keepBox: false, sessionPath: recorderSessionArg(root, sessionPath) }, operations, ), ).rejects.toThrow("terminate Telegram Desktop session: terminate failed"); expect(calls).toContainEqual({ args: [ "driver.py", "--account", "qa shared", "terminate-session", "--session-id", "987654321", "--json", ], command: "python3", }); expect(calls).toContainEqual({ args: ["stop", "--provider", "aws", "cbx_test123"], command: "crabbox", }); const stopped = readRecorderSession(sessionPath); expect(stopped.stoppedAt).toBeDefined(); expect(stopped.cleanupErrors).toContain("terminate Telegram Desktop session: terminate failed"); }); });