惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

M
MIT News - Artificial intelligence
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
阮一峰的网络日志
阮一峰的网络日志
月光博客
月光博客
博客园 - Franky
腾讯CDC
T
Tailwind CSS Blog
Recent Announcements
Recent Announcements
V
V2EX
N
Netflix TechBlog - Medium
量子位
Jina AI
Jina AI
Y
Y Combinator Blog
The GitHub Blog
The GitHub Blog
G
Google Developers Blog
爱范儿
爱范儿
博客园 - 叶小钗
D
Docker
MongoDB | Blog
MongoDB | Blog
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
test: tighten mantis visual assertions · openclaw/opencla...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -5,7 +5,20 @@ import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";

55

import { runMantisVisualDriver, runMantisVisualTask } from "./visual-task.runtime.js";

6677

async function expectPathMissing(targetPath: string): Promise<void> {

8-

await expect(fs.stat(targetPath)).rejects.toMatchObject({ code: "ENOENT" });

8+

try {

9+

await fs.stat(targetPath);

10+

} catch (error) {

11+

expect((error as { code?: unknown }).code).toBe("ENOENT");

12+

return;

13+

}

14+

throw new Error(`Expected path to be missing: ${targetPath}`);

15+

}

16+17+

function expectArgsContainSequence(args: readonly string[], expected: readonly string[]): void {

18+

const startIndex = args.findIndex((_, index) => {

19+

return expected.every((value, offset) => args[index + offset] === value);

20+

});

21+

expect(startIndex).toBeGreaterThanOrEqual(0);

922

}

10231124

describe("mantis visual task runtime", () => {

@@ -88,23 +101,19 @@ describe("mantis visual task runtime", () => {

88101

".artifacts/qa-e2e/mantis/visual-task-test/visual-task.mp4",

89102

);

90103

const stagedVideoPath = recordArgs[recordArgs.indexOf("--output") + 1];

91-

expect(recordArgs).toEqual(

92-

expect.arrayContaining([

93-

"--duration",

94-

"12s",

95-

"--output",

96-

stagedVideoPath,

97-

"--while",

98-

"--",

99-

"pnpm",

100-

"--dir",

101-

repoRoot,

102-

"openclaw",

103-

"qa",

104-

"mantis",

105-

"visual-driver",

106-

]),

107-

);

104+

expectArgsContainSequence(recordArgs, ["--duration", "12s"]);

105+

expectArgsContainSequence(recordArgs, ["--output", stagedVideoPath ?? ""]);

106+

expectArgsContainSequence(recordArgs, [

107+

"--while",

108+

"--",

109+

"pnpm",

110+

"--dir",

111+

repoRoot,

112+

"openclaw",

113+

"qa",

114+

"mantis",

115+

"visual-driver",

116+

]);

108117

expect(stagedVideoPath).not.toBe(finalVideoPath);

109118

expect(path.basename(stagedVideoPath ?? "")).toContain(path.basename(finalVideoPath));

110119

expect(path.basename(stagedVideoPath ?? "")).toMatch(/\.part$/);

@@ -116,14 +125,12 @@ describe("mantis visual task runtime", () => {

116125

status: string;

117126

visionMode: string;

118127

};

119-

expect(summary).toMatchObject({

120-

crabbox: {

121-

id: "cbx_abc123",

122-

vncCommand: "/tmp/crabbox vnc --provider hetzner --id cbx_abc123 --open",

123-

},

124-

status: "pass",

125-

visionMode: "metadata",

126-

});

128+

expect(summary.crabbox.id).toBe("cbx_abc123");

129+

expect(summary.crabbox.vncCommand).toBe(

130+

"/tmp/crabbox vnc --provider hetzner --id cbx_abc123 --open",

131+

);

132+

expect(summary.status).toBe("pass");

133+

expect(summary.visionMode).toBe("metadata");

127134

});

128135129136

it("fails when recording breaks after the visual driver passes", async () => {

@@ -180,10 +187,8 @@ describe("mantis visual task runtime", () => {

180187

visionMode: "metadata",

181188

});

182189183-

expect(result).toMatchObject({

184-

status: "fail",

185-

videoPath: undefined,

186-

});

190+

expect(result.status).toBe("fail");

191+

expect(result.videoPath).toBeUndefined();

187192

expect(commands.map((entry) => [entry.command, entry.args[0]])).toEqual([

188193

["/tmp/crabbox", "warmup"],

189194

["/tmp/crabbox", "inspect"],

@@ -194,14 +199,10 @@ describe("mantis visual task runtime", () => {

194199

recording?: { error?: string; required: boolean };

195200

status: string;

196201

};

197-

expect(summary).toMatchObject({

198-

error: "crabbox record failed after driver exit",

199-

recording: {

200-

error: "crabbox record failed after driver exit",

201-

required: true,

202-

},

203-

status: "fail",

204-

});

202+

expect(summary.error).toBe("crabbox record failed after driver exit");

203+

expect(summary.recording?.error).toBe("crabbox record failed after driver exit");

204+

expect(summary.recording?.required).toBe(true);

205+

expect(summary.status).toBe("fail");

205206

});

206207207208

it("preserves the video artifact when recording fails after writing output", async () => {

@@ -278,17 +279,11 @@ describe("mantis visual task runtime", () => {

278279

recording?: { error?: string; required: boolean };

279280

status: string;

280281

};

281-

expect(summary).toMatchObject({

282-

artifacts: {

283-

videoPath: result.videoPath,

284-

},

285-

error: "crabbox record failed after writing video",

286-

recording: {

287-

error: "crabbox record failed after writing video",

288-

required: true,

289-

},

290-

status: "fail",

291-

});

282+

expect(summary.artifacts?.videoPath).toBe(result.videoPath);

283+

expect(summary.error).toBe("crabbox record failed after writing video");

284+

expect(summary.recording?.error).toBe("crabbox record failed after writing video");

285+

expect(summary.recording?.required).toBe(true);

286+

expect(summary.status).toBe("fail");

292287

});

293288294289

it("drives a lease, screenshots it, and verifies image-describe text", async () => {

@@ -345,29 +340,27 @@ describe("mantis visual task runtime", () => {

345340

["pnpm", "--dir", repoRoot],

346341

]);

347342

const launchArgs = commands.find((entry) => entry.args[0] === "desktop")?.args ?? [];

348-

expect(launchArgs).toEqual(

349-

expect.arrayContaining(["--", "sh", "-lc", expect.stringContaining("--no-first-run")]),

350-

);

343+

const launchShellIndex = launchArgs.findIndex((arg) => arg === "--");

344+

expect(launchArgs.slice(launchShellIndex, launchShellIndex + 3)).toEqual(["--", "sh", "-lc"]);

345+

expect(launchArgs[launchShellIndex + 3]).toContain("--no-first-run");

351346

const visionArgs = commands.find((entry) => entry.command === "pnpm")?.args ?? [];

352-

expect(visionArgs).toEqual(

353-

expect.arrayContaining([

354-

"infer",

355-

"image",

356-

"describe",

357-

"--file",

358-

path.join(repoRoot, ".artifacts/qa-e2e/mantis/visual-driver-test/visual-task.png"),

359-

"--model",

360-

"openai/gpt-5.4",

361-

]),

362-

);

363-

expect(visionArgs).toEqual(

364-

expect.arrayContaining(["--prompt", expect.stringContaining("return only valid JSON")]),

365-

);

366-

expect(result.vision.assertion).toMatchObject({

367-

evidence: 'The page heading reads "Example Domain".',

368-

matched: true,

369-

visible: true,

370-

});

347+

expectArgsContainSequence(visionArgs, [

348+

"openclaw",

349+

"infer",

350+

"image",

351+

"describe",

352+

"--file",

353+

path.join(repoRoot, ".artifacts/qa-e2e/mantis/visual-driver-test/visual-task.png"),

354+

]);

355+

const promptIndex = visionArgs.indexOf("--prompt");

356+

expect(promptIndex).toBeGreaterThanOrEqual(0);

357+

expect(visionArgs[promptIndex + 1]).toContain("return only valid JSON");

358+

const modelIndex = visionArgs.indexOf("--model");

359+

expect(modelIndex).toBeGreaterThanOrEqual(0);

360+

expect(visionArgs[modelIndex + 1]).toBe("openai/gpt-5.4");

361+

expect(result.vision.assertion?.evidence).toBe('The page heading reads "Example Domain".');

362+

expect(result.vision.assertion?.matched).toBe(true);

363+

expect(result.vision.assertion?.visible).toBe(true);

371364

});

372365373366

it("fails image-describe text checks when the model gives negative evidence that quotes the target", async () => {

@@ -405,16 +398,12 @@ describe("mantis visual task runtime", () => {

405398

visionMode: "image-describe",

406399

});

407400408-

expect(result).toMatchObject({

409-

matched: false,

410-

status: "fail",

411-

vision: {

412-

assertion: {

413-

matched: false,

414-

reason: "Image describe did not return a structured visual assertion.",

415-

},

416-

},

417-

});

401+

expect(result.matched).toBe(false);

402+

expect(result.status).toBe("fail");

403+

expect(result.vision.assertion?.matched).toBe(false);

404+

expect(result.vision.assertion?.reason).toBe(

405+

"Image describe did not return a structured visual assertion.",

406+

);

418407

});

419408420409

it("fails metadata mode when text evidence is requested", async () => {

@@ -438,12 +427,8 @@ describe("mantis visual task runtime", () => {

438427

visionMode: "metadata",

439428

});

440429441-

expect(result).toMatchObject({

442-

matched: false,

443-

status: "fail",

444-

vision: {

445-

mode: "metadata",

446-

},

447-

});

430+

expect(result.matched).toBe(false);

431+

expect(result.status).toBe("fail");

432+

expect(result.vision.mode).toBe("metadata");

448433

});

449434

});