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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
I
InfoQ
B
Blog RSS Feed
D
Docker
GbyAI
GbyAI
N
Netflix TechBlog - Medium
Y
Y Combinator Blog
F
Fortinet All Blogs
P
Proofpoint News Feed
Microsoft Azure Blog
Microsoft Azure Blog
人人都是产品经理
人人都是产品经理
Martin Fowler
Martin Fowler
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
M
MIT News - Artificial intelligence
C
Check Point Blog
Vercel News
Vercel News
云风的 BLOG
云风的 BLOG
博客园 - Franky
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
Last Week in AI
Last Week in AI
L
LangChain Blog

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: clear nodes media broad matchers · openclaw/opencla...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -50,6 +50,34 @@ function mockNodeGateway(command?: string, payload?: Record<string, unknown>) {

5050

});

5151

}

525253+

function nodeInvokeCalls(): Array<{

54+

method?: unknown;

55+

params: Record<string, unknown>;

56+

commandParams: Record<string, unknown>;

57+

}> {

58+

return callGateway.mock.calls

59+

.map((call) => call[0] as { method?: unknown; params?: Record<string, unknown> })

60+

.filter((call) => call.method === "node.invoke")

61+

.map((call) => {

62+

const params = call.params ?? {};

63+

const commandParams = (params.params ?? {}) as Record<string, unknown>;

64+

return { method: call.method, params, commandParams };

65+

});

66+

}

67+68+

function latestNodeInvokeCall() {

69+

const call = nodeInvokeCalls().at(-1);

70+

if (!call) {

71+

throw new Error("expected node.invoke gateway call");

72+

}

73+

return call;

74+

}

75+76+

function expectNonEmptyString(value: unknown) {

77+

expect(typeof value).toBe("string");

78+

expect((value as string).length).toBeGreaterThan(0);

79+

}

80+5381

describe("cli program (nodes media)", () => {

5482

let program: Command;

5583

@@ -103,11 +131,9 @@ describe("cli program (nodes media)", () => {

103131104132

await runNodesCommand(["nodes", "camera", "snap", "--node", "ios-node"]);

105133106-

const invokeCalls = callGateway.mock.calls

107-

.map((call) => call[0] as { method?: string; params?: Record<string, unknown> })

108-

.filter((call) => call.method === "node.invoke");

134+

const invokeCalls = nodeInvokeCalls();

109135

const facings = invokeCalls

110-

.map((call) => (call.params?.params as { facing?: string } | undefined)?.facing)

136+

.map((call) => call.commandParams.facing)

111137

.filter((facing): facing is string => Boolean(facing))

112138

.toSorted((a, b) => a.localeCompare(b));

113139

expect(facings).toEqual(["back", "front"]);

@@ -147,23 +173,16 @@ describe("cli program (nodes media)", () => {

147173148174

await runNodesCommand(["nodes", "camera", "clip", "--node", "ios-node", "--duration", "3000"]);

149175150-

expect(callGateway).toHaveBeenCalledWith(

151-

expect.objectContaining({

152-

method: "node.invoke",

153-

params: expect.objectContaining({

154-

nodeId: "ios-node",

155-

command: "camera.clip",

156-

timeoutMs: 90000,

157-

idempotencyKey: expect.any(String),

158-

params: expect.objectContaining({

159-

facing: "front",

160-

durationMs: 3000,

161-

includeAudio: true,

162-

format: "mp4",

163-

}),

164-

}),

165-

}),

166-

);

176+

const invoke = latestNodeInvokeCall();

177+

expect(invoke.method).toBe("node.invoke");

178+

expect(invoke.params.nodeId).toBe("ios-node");

179+

expect(invoke.params.command).toBe("camera.clip");

180+

expect(invoke.params.timeoutMs).toBe(90000);

181+

expectNonEmptyString(invoke.params.idempotencyKey);

182+

expect(invoke.commandParams.facing).toBe("front");

183+

expect(invoke.commandParams.durationMs).toBe(3000);

184+

expect(invoke.commandParams.includeAudio).toBe(true);

185+

expect(invoke.commandParams.format).toBe("mp4");

167186168187

await expectLoggedSingleMediaFile({

169188

expectedPathPattern: /openclaw-camera-clip-front-.*\.mp4$/,

@@ -191,24 +210,17 @@ describe("cli program (nodes media)", () => {

191210

"cam-123",

192211

]);

193212194-

expect(callGateway).toHaveBeenCalledWith(

195-

expect.objectContaining({

196-

method: "node.invoke",

197-

params: expect.objectContaining({

198-

nodeId: "ios-node",

199-

command: "camera.snap",

200-

timeoutMs: 20000,

201-

idempotencyKey: expect.any(String),

202-

params: expect.objectContaining({

203-

facing: "front",

204-

maxWidth: 640,

205-

quality: 0.8,

206-

delayMs: 2000,

207-

deviceId: "cam-123",

208-

}),

209-

}),

210-

}),

211-

);

213+

const invoke = latestNodeInvokeCall();

214+

expect(invoke.method).toBe("node.invoke");

215+

expect(invoke.params.nodeId).toBe("ios-node");

216+

expect(invoke.params.command).toBe("camera.snap");

217+

expect(invoke.params.timeoutMs).toBe(20000);

218+

expectNonEmptyString(invoke.params.idempotencyKey);

219+

expect(invoke.commandParams.facing).toBe("front");

220+

expect(invoke.commandParams.maxWidth).toBe(640);

221+

expect(invoke.commandParams.quality).toBe(0.8);

222+

expect(invoke.commandParams.delayMs).toBe(2000);

223+

expect(invoke.commandParams.deviceId).toBe("cam-123");

212224213225

await expectLoggedSingleMediaFile();

214226

});

@@ -234,21 +246,14 @@ describe("cli program (nodes media)", () => {

234246

"cam-123",

235247

]);

236248237-

expect(callGateway).toHaveBeenCalledWith(

238-

expect.objectContaining({

239-

method: "node.invoke",

240-

params: expect.objectContaining({

241-

nodeId: "ios-node",

242-

command: "camera.clip",

243-

timeoutMs: 90000,

244-

idempotencyKey: expect.any(String),

245-

params: expect.objectContaining({

246-

includeAudio: false,

247-

deviceId: "cam-123",

248-

}),

249-

}),

250-

}),

251-

);

249+

const invoke = latestNodeInvokeCall();

250+

expect(invoke.method).toBe("node.invoke");

251+

expect(invoke.params.nodeId).toBe("ios-node");

252+

expect(invoke.params.command).toBe("camera.clip");

253+

expect(invoke.params.timeoutMs).toBe(90000);

254+

expectNonEmptyString(invoke.params.idempotencyKey);

255+

expect(invoke.commandParams.includeAudio).toBe(false);

256+

expect(invoke.commandParams.deviceId).toBe("cam-123");

252257253258

await expectLoggedSingleMediaFile();

254259

});

@@ -263,16 +268,11 @@ describe("cli program (nodes media)", () => {

263268264269

await runNodesCommand(["nodes", "camera", "clip", "--node", "ios-node", "--duration", "10s"]);

265270266-

expect(callGateway).toHaveBeenCalledWith(

267-

expect.objectContaining({

268-

method: "node.invoke",

269-

params: expect.objectContaining({

270-

nodeId: "ios-node",

271-

command: "camera.clip",

272-

params: expect.objectContaining({ durationMs: 10_000 }),

273-

}),

274-

}),

275-

);

271+

const invoke = latestNodeInvokeCall();

272+

expect(invoke.method).toBe("node.invoke");

273+

expect(invoke.params.nodeId).toBe("ios-node");

274+

expect(invoke.params.command).toBe("camera.clip");

275+

expect(invoke.commandParams.durationMs).toBe(10_000);

276276

});

277277278278

it("fails nodes camera snap on invalid facing", async () => {