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

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
量子位
H
Help Net Security
Microsoft Azure Blog
Microsoft Azure Blog
MongoDB | Blog
MongoDB | Blog
小众软件
小众软件
爱范儿
爱范儿
博客园 - 【当耐特】
Vercel News
Vercel News
S
SegmentFault 最新的问题
M
MIT News - Artificial intelligence
F
Fortinet All Blogs
Apple Machine Learning Research
Apple Machine Learning Research
GbyAI
GbyAI
博客园 - 叶小钗
博客园_首页
V
Visual Studio Blog
宝玉的分享
宝玉的分享
B
Blog
MyScale Blog
MyScale Blog
C
Check Point Blog
博客园 - 三生石上(FineUI控件)
L
LangChain Blog
V
V2EX

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

@@ -7,6 +7,11 @@ installBaseProgramMocks();

7788

let registerNodesCli: typeof import("./nodes-cli.js").registerNodesCli;

9910+

type GatewayCallRequest = {

11+

method?: string;

12+

params?: unknown;

13+

};

14+1015

function formatRuntimeLogCallArg(value: unknown): string {

1116

if (typeof value === "string") {

1217

return value;

@@ -43,6 +48,18 @@ describe("cli program (nodes basics)", () => {

4348

return runtime.log.mock.calls.map((c) => formatRuntimeLogCallArg(c[0])).join("\n");

4449

}

455051+

function gatewayRequests(): GatewayCallRequest[] {

52+

return callGateway.mock.calls.map(([request]) => request as GatewayCallRequest);

53+

}

54+55+

function expectGatewayRequest(method: string, params?: unknown): void {

56+

const request = gatewayRequests().find((candidate) => candidate.method === method);

57+

expect(request?.method).toBe(method);

58+

if (arguments.length > 1) {

59+

expect(request?.params).toEqual(params);

60+

}

61+

}

62+4663

function mockGatewayWithIosNodeListAnd(method: "node.describe" | "node.invoke", result: unknown) {

4764

callGateway.mockImplementation(async (...args: unknown[]) => {

4865

const opts = (args[0] ?? {}) as { method?: string };

@@ -121,31 +138,50 @@ describe("cli program (nodes basics)", () => {

121138122139

await runProgram(["nodes", "list", "--json"]);

123140124-

expect(callGateway).toHaveBeenCalledWith(expect.objectContaining({ method: "node.pair.list" }));

125-

expect(callGateway).toHaveBeenCalledWith(expect.objectContaining({ method: "node.list" }));

126-

expect(runtime.writeJson).toHaveBeenCalledWith({

127-

pending: [{ requestId: "r1", nodeId: "pending-node", ts: now - 10_000 }],

128-

paired: [

129-

expect.objectContaining({

130-

nodeId: "paired-store",

131-

displayName: "Effective paired name",

132-

remoteIp: "10.0.0.2",

133-

lastConnectedAtMs: now - 5_000,

134-

connected: true,

135-

}),

136-

expect.objectContaining({

137-

nodeId: "catalog-only",

138-

displayName: "Catalog Only",

139-

paired: true,

140-

}),

141-

expect.objectContaining({

142-

nodeId: "pair-only",

143-

displayName: "Pair Only",

144-

}),

145-

],

146-

});

147-

expect(JSON.stringify(runtime.writeJson.mock.calls[0]?.[0])).not.toContain("paired-token");

148-

expect(JSON.stringify(runtime.writeJson.mock.calls[0]?.[0])).not.toContain("pair-only-token");

141+

expectGatewayRequest("node.pair.list", {});

142+

expectGatewayRequest("node.list", {});

143+

const json = runtime.writeJson.mock.calls[0]?.[0] as {

144+

pending?: unknown[];

145+

paired?: Array<Record<string, unknown>>;

146+

};

147+

expect(json.pending).toEqual([{ requestId: "r1", nodeId: "pending-node", ts: now - 10_000 }]);

148+

expect(

149+

json.paired?.map((node) => ({

150+

nodeId: node.nodeId,

151+

displayName: node.displayName,

152+

remoteIp: node.remoteIp,

153+

lastConnectedAtMs: node.lastConnectedAtMs,

154+

connected: node.connected,

155+

paired: node.paired,

156+

})),

157+

).toEqual([

158+

{

159+

nodeId: "paired-store",

160+

displayName: "Effective paired name",

161+

remoteIp: "10.0.0.2",

162+

lastConnectedAtMs: now - 5_000,

163+

connected: true,

164+

paired: undefined,

165+

},

166+

{

167+

nodeId: "catalog-only",

168+

displayName: "Catalog Only",

169+

remoteIp: "10.0.0.3",

170+

lastConnectedAtMs: undefined,

171+

connected: false,

172+

paired: true,

173+

},

174+

{

175+

nodeId: "pair-only",

176+

displayName: "Pair Only",

177+

remoteIp: undefined,

178+

lastConnectedAtMs: undefined,

179+

connected: undefined,

180+

paired: undefined,

181+

},

182+

]);

183+

expect(JSON.stringify(json)).not.toContain("paired-token");

184+

expect(JSON.stringify(json)).not.toContain("pair-only-token");

149185

const output = getRuntimeOutput();

150186

expect(output).toContain("Pending: 1 · Paired: 3");

151187

expect(output).not.toContain("Effective Only Unknown");

@@ -222,21 +258,15 @@ describe("cli program (nodes basics)", () => {

222258

runtime.log.mockClear();

223259

await runProgram(["nodes", "list", "--json"]);

224260225-

expect(runtime.writeJson).toHaveBeenCalledWith({

226-

pending: [

227-

expect.objectContaining({

228-

requestId: "request\u001b[2K-1",

229-

displayName: "Pending\u001b[1A\nNode",

230-

}),

231-

],

232-

paired: [

233-

expect.objectContaining({

234-

nodeId: "paired-node",

235-

displayName: "Paired\u001b[2K\nNode",

236-

remoteIp: "10.0.0.5\rrewritten",

237-

}),

238-

],

239-

});

261+

const json = runtime.writeJson.mock.calls.at(-1)?.[0] as {

262+

pending?: Array<Record<string, unknown>>;

263+

paired?: Array<Record<string, unknown>>;

264+

};

265+

expect(json.pending?.[0]?.requestId).toBe("request\u001b[2K-1");

266+

expect(json.pending?.[0]?.displayName).toBe("Pending\u001b[1A\nNode");

267+

expect(json.paired?.[0]?.nodeId).toBe("paired-node");

268+

expect(json.paired?.[0]?.displayName).toBe("Paired\u001b[2K\nNode");

269+

expect(json.paired?.[0]?.remoteIp).toBe("10.0.0.5\rrewritten");

240270

});

241271242272

it("runs nodes list --connected and filters to connected nodes", async () => {

@@ -274,7 +304,7 @@ describe("cli program (nodes basics)", () => {

274304

});

275305

await runProgram(["nodes", "list", "--connected"]);

276306277-

expect(callGateway).toHaveBeenCalledWith(expect.objectContaining({ method: "node.list" }));

307+

expectGatewayRequest("node.list", {});

278308

const output = getRuntimeOutput();

279309

expect(output).toContain("One");

280310

expect(output).not.toContain("Two");

@@ -306,7 +336,7 @@ describe("cli program (nodes basics)", () => {

306336

});

307337

await runProgram(["nodes", "status", "--last-connected", "24h"]);

308338309-

expect(callGateway).toHaveBeenCalledWith(expect.objectContaining({ method: "node.pair.list" }));

339+

expectGatewayRequest("node.pair.list", {});

310340

const output = getRuntimeOutput();

311341

expect(output).toContain("One");

312342

expect(output).not.toContain("Two");

@@ -373,9 +403,7 @@ describe("cli program (nodes basics)", () => {

373403

});

374404

await runProgram(["nodes", "status"]);

375405376-

expect(callGateway).toHaveBeenCalledWith(

377-

expect.objectContaining({ method: "node.list", params: {} }),

378-

);

406+

expectGatewayRequest("node.list", {});

379407380408

const output = getRuntimeOutput();

381409

for (const expected of expectedOutput) {

@@ -395,15 +423,8 @@ describe("cli program (nodes basics)", () => {

395423396424

await runProgram(["nodes", "describe", "--node", "ios-node"]);

397425398-

expect(callGateway).toHaveBeenCalledWith(

399-

expect.objectContaining({ method: "node.list", params: {} }),

400-

);

401-

expect(callGateway).toHaveBeenCalledWith(

402-

expect.objectContaining({

403-

method: "node.describe",

404-

params: { nodeId: "ios-node" },

405-

}),

406-

);

426+

expectGatewayRequest("node.list", {});

427+

expectGatewayRequest("node.describe", { nodeId: "ios-node" });

407428408429

const out = getRuntimeOutput();

409430

expect(out).toContain("Commands");

@@ -416,12 +437,7 @@ describe("cli program (nodes basics)", () => {

416437

node: { nodeId: "n1", token: "t1" },

417438

});

418439

await runProgram(["nodes", "approve", "r1"]);

419-

expect(callGateway).toHaveBeenCalledWith(

420-

expect.objectContaining({

421-

method: "node.pair.approve",

422-

params: { requestId: "r1" },

423-

}),

424-

);

440+

expectGatewayRequest("node.pair.approve", { requestId: "r1" });

425441

});

426442427443

it("runs nodes remove and calls node.pair.remove", async () => {

@@ -445,12 +461,7 @@ describe("cli program (nodes basics)", () => {

445461

});

446462447463

await runProgram(["nodes", "remove", "--node", "iOS Node"]);

448-

expect(callGateway).toHaveBeenCalledWith(

449-

expect.objectContaining({

450-

method: "node.pair.remove",

451-

params: { nodeId: "ios-node" },

452-

}),

453-

);

464+

expectGatewayRequest("node.pair.remove", { nodeId: "ios-node" });

454465

});

455466456467

it("runs nodes invoke and calls node.invoke", async () => {

@@ -472,20 +483,13 @@ describe("cli program (nodes basics)", () => {

472483

'{"javaScript":"1+1"}',

473484

]);

474485475-

expect(callGateway).toHaveBeenCalledWith(

476-

expect.objectContaining({ method: "node.list", params: {} }),

477-

);

478-

expect(callGateway).toHaveBeenCalledWith(

479-

expect.objectContaining({

480-

method: "node.invoke",

481-

params: {

482-

nodeId: "ios-node",

483-

command: "canvas.eval",

484-

params: { javaScript: "1+1" },

485-

timeoutMs: 15000,

486-

idempotencyKey: "idem-test",

487-

},

488-

}),

489-

);

486+

expectGatewayRequest("node.list", {});

487+

expectGatewayRequest("node.invoke", {

488+

nodeId: "ios-node",

489+

command: "canvas.eval",

490+

params: { javaScript: "1+1" },

491+

timeoutMs: 15000,

492+

idempotencyKey: "idem-test",

493+

});

490494

});

491495

});