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

推荐订阅源

H
Help Net Security
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Vercel News
Vercel News
人人都是产品经理
人人都是产品经理
G
Google Developers Blog
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
雷峰网
雷峰网
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
博客园 - 叶小钗
D
DataBreaches.Net
D
Docker
月光博客
月光博客
博客园 - 司徒正美
Last Week in AI
Last Week in AI
有赞技术团队
有赞技术团队
腾讯CDC
酷 壳 – CoolShell
酷 壳 – CoolShell

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
fix(agents): canonicalize node binding selectors (#66985)...
mujiannan · 2026-06-16 · via Recent Commits to openclaw:main

@@ -223,9 +223,35 @@ vi.mock("./tools/gateway.js", () => ({

223223

callGatewayTool: callGatewayToolMock,

224224

}));

225225226+

const resolveNodeIdFromListMock = vi.hoisted(() =>

227+

vi.fn((nodes: Array<{ nodeId: string; displayName?: string }>, query?: string) => {

228+

if (!query) {

229+

if (nodes.length === 1) {

230+

return nodes[0].nodeId;

231+

}

232+

throw new Error("node required");

233+

}

234+

const byId = nodes.find((n) => n.nodeId === query);

235+

if (byId) {

236+

return byId.nodeId;

237+

}

238+

const byName = nodes.find((n) => n.displayName === query);

239+

if (byName) {

240+

return byName.nodeId;

241+

}

242+

if (query.length >= 6) {

243+

const byPrefix = nodes.find((n) => n.nodeId.startsWith(query));

244+

if (byPrefix) {

245+

return byPrefix.nodeId;

246+

}

247+

}

248+

throw new Error(`unknown node: ${query}`);

249+

}),

250+

);

251+226252

vi.mock("./tools/nodes-utils.js", () => ({

227253

listNodes: listNodesMock,

228-

resolveNodeIdFromList: vi.fn(() => "node-1"),

254+

resolveNodeIdFromList: resolveNodeIdFromListMock,

229255

}));

230256231257

vi.mock("../logger.js", () => ({

@@ -2659,6 +2685,145 @@ describe("executeNodeHostCommand", () => {

26592685

expectSystemRunInvoke({ invokeTimeoutMs: 35_000, runTimeoutMs: 0 });

26602686

});

266126872688+

it("allows exec when requestedNode is display name matching boundNode's device", async () => {

2689+

listNodesMock.mockResolvedValue([

2690+

{

2691+

nodeId: "f2396b588d391d30a79d300e196a17cf197f34969b5e2485d2734c953567f44e",

2692+

displayName: "home-wsl-debian",

2693+

commands: ["system.run"],

2694+

platform: process.platform,

2695+

},

2696+

]);

2697+

const result = await executeNodeHostCommand({

2698+

command: "echo hello",

2699+

workdir: "/tmp/work",

2700+

env: {},

2701+

security: "full",

2702+

ask: "off",

2703+

defaultTimeoutSec: 30,

2704+

approvalRunningNoticeMs: 0,

2705+

warnings: [],

2706+

agentId: "test-agent",

2707+

sessionKey: "test-session",

2708+

boundNode: "f2396b588d391d30a79d300e196a17cf197f34969b5e2485d2734c953567f44e",

2709+

requestedNode: "home-wsl-debian",

2710+

});

2711+

expect(result.details?.status).toBeDefined();

2712+

});

2713+2714+

it("allows exec when requestedNode is partial ID matching boundNode's device", async () => {

2715+

listNodesMock.mockResolvedValue([

2716+

{

2717+

nodeId: "f2396b588d391d30a79d300e196a17cf197f34969b5e2485d2734c953567f44e",

2718+

displayName: "home-wsl-debian",

2719+

commands: ["system.run"],

2720+

platform: process.platform,

2721+

},

2722+

]);

2723+

const result = await executeNodeHostCommand({

2724+

command: "echo hello",

2725+

workdir: "/tmp/work",

2726+

env: {},

2727+

security: "full",

2728+

ask: "off",

2729+

defaultTimeoutSec: 30,

2730+

approvalRunningNoticeMs: 0,

2731+

warnings: [],

2732+

agentId: "test-agent",

2733+

sessionKey: "test-session",

2734+

boundNode: "f2396b588d391d30a79d300e196a17cf197f34969b5e2485d2734c953567f44e",

2735+

requestedNode: "f2396b588d391d",

2736+

});

2737+

expect(result.details?.status).toBeDefined();

2738+

});

2739+2740+

it("rejects exec when requestedNode resolves to a different node than boundNode", async () => {

2741+

listNodesMock.mockResolvedValue([

2742+

{

2743+

nodeId: "f2396b588d391d30a79d300e196a17cf197f34969b5e2485d2734c953567f44e",

2744+

displayName: "home-wsl-debian",

2745+

commands: ["system.run"],

2746+

platform: process.platform,

2747+

},

2748+

{

2749+

nodeId: "aaaa1111bbbb2222cccc3333dddd4444eeee5555ffff6666aaa7777bbb88889999",

2750+

displayName: "other-node",

2751+

commands: ["system.run"],

2752+

platform: process.platform,

2753+

},

2754+

]);

2755+

await expect(

2756+

executeNodeHostCommand({

2757+

command: "echo hello",

2758+

workdir: "/tmp/work",

2759+

env: {},

2760+

security: "full",

2761+

ask: "off",

2762+

defaultTimeoutSec: 30,

2763+

approvalRunningNoticeMs: 0,

2764+

warnings: [],

2765+

agentId: "test-agent",

2766+

sessionKey: "test-session",

2767+

boundNode: "f2396b588d391d30a79d300e196a17cf197f34969b5e2485d2734c953567f44e",

2768+

requestedNode: "other-node",

2769+

}),

2770+

).rejects.toThrow("exec node not allowed (bound to f2396b588d391d30");

2771+

});

2772+2773+

it("preserves original error when requestedNode matches no known node", async () => {

2774+

listNodesMock.mockResolvedValue([

2775+

{

2776+

nodeId: "f2396b588d391d30a79d300e196a17cf197f34969b5e2485d2734c953567f44e",

2777+

displayName: "home-wsl-debian",

2778+

commands: ["system.run"],

2779+

platform: process.platform,

2780+

},

2781+

]);

2782+

await expect(

2783+

executeNodeHostCommand({

2784+

command: "echo hello",

2785+

workdir: "/tmp/work",

2786+

env: {},

2787+

security: "full",

2788+

ask: "off",

2789+

defaultTimeoutSec: 30,

2790+

approvalRunningNoticeMs: 0,

2791+

warnings: [],

2792+

agentId: "test-agent",

2793+

sessionKey: "test-session",

2794+

requestedNode: "nonexistent-node",

2795+

}),

2796+

).rejects.toThrow(

2797+

"requested node not found: nonexistent-node (unknown node: nonexistent-node)",

2798+

);

2799+

});

2800+2801+

it("allows exec when boundNode is a display name matching the same device as requestedNode", async () => {

2802+

listNodesMock.mockResolvedValue([

2803+

{

2804+

nodeId: "f2396b588d391d30a79d300e196a17cf197f34969b5e2485d2734c953567f44e",

2805+

displayName: "home-wsl-debian",

2806+

commands: ["system.run"],

2807+

platform: process.platform,

2808+

},

2809+

]);

2810+

const result = await executeNodeHostCommand({

2811+

command: "echo hello",

2812+

workdir: "/tmp/work",

2813+

env: {},

2814+

security: "full",

2815+

ask: "off",

2816+

defaultTimeoutSec: 30,

2817+

approvalRunningNoticeMs: 0,

2818+

warnings: [],

2819+

agentId: "test-agent",

2820+

sessionKey: "test-session",

2821+

boundNode: "home-wsl-debian",

2822+

requestedNode: "home-wsl-debian",

2823+

});

2824+

expect(result.details?.status).toBeDefined();

2825+

});

2826+26622827

it("auto-reviews strict inline-eval commands with full/off host policy when node policy is available", async () => {

26632828

const inlinePlan = {

26642829

argv: ["python3", "-c", "print(1)"],