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

推荐订阅源

D
DataBreaches.Net
F
Fortinet All Blogs
D
Docker
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
罗磊的独立博客
Y
Y Combinator Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
J
Java Code Geeks
T
The Blog of Author Tim Ferriss
U
Unit 42
N
Netflix TechBlog - Medium
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
云风的 BLOG
云风的 BLOG
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
Tailwind CSS Blog
Hugging Face - Blog
Hugging Face - Blog
Stack Overflow Blog
Stack Overflow Blog
爱范儿
爱范儿
酷 壳 – CoolShell
酷 壳 – CoolShell
P
Proofpoint News Feed
G
Google Developers Blog
H
Help Net Security

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(file-transfer): avoid eager invoke policy load · open...
samzong · 2026-05-16 · via Recent Commits to openclaw:main
1+

import type {

2+

OpenClawPluginNodeInvokePolicy,

3+

OpenClawPluginNodeInvokePolicyContext,

4+

} from "openclaw/plugin-sdk/plugin-entry";

5+

import { describe, expect, it, vi } from "vitest";

6+

import { createLazyFileTransferNodeInvokePolicy } from "./lazy-node-invoke-policy.js";

7+8+

function createPolicyContext(

9+

overrides: Partial<OpenClawPluginNodeInvokePolicyContext> = {},

10+

): OpenClawPluginNodeInvokePolicyContext {

11+

return {

12+

nodeId: "node-1",

13+

command: "file.fetch",

14+

params: { path: "/tmp/a.txt" },

15+

config: {} as never,

16+

pluginConfig: {},

17+

node: {

18+

nodeId: "node-1",

19+

displayName: "Test Node",

20+

commands: ["file.fetch"],

21+

},

22+

client: null,

23+

invokeNode: vi.fn<OpenClawPluginNodeInvokePolicyContext["invokeNode"]>(async () => ({

24+

ok: true,

25+

payload: { ok: true },

26+

payloadJSON: null,

27+

})),

28+

...overrides,

29+

};

30+

}

31+32+

describe("lazy file-transfer node invoke policy", () => {

33+

it("exposes command metadata without loading the delegate", () => {

34+

const loadPolicy = vi.fn<() => Promise<OpenClawPluginNodeInvokePolicy>>();

35+36+

const policy = createLazyFileTransferNodeInvokePolicy(loadPolicy);

37+38+

expect(policy.commands).toEqual(["file.fetch", "dir.list", "dir.fetch", "file.write"]);

39+

expect(loadPolicy).not.toHaveBeenCalled();

40+

});

41+42+

it("loads and caches the delegate on first handle", async () => {

43+

const invokeNode = vi.fn<OpenClawPluginNodeInvokePolicyContext["invokeNode"]>(async () => ({

44+

ok: true,

45+

payload: { ok: true },

46+

payloadJSON: null,

47+

}));

48+

const delegateHandle = vi.fn<OpenClawPluginNodeInvokePolicy["handle"]>(async (ctx) => {

49+

await ctx.invokeNode();

50+

return { ok: true, payload: { delegated: true } };

51+

});

52+

const loadPolicy = vi.fn<() => Promise<OpenClawPluginNodeInvokePolicy>>(async () => ({

53+

commands: ["file.fetch"],

54+

handle: delegateHandle,

55+

}));

56+

const policy = createLazyFileTransferNodeInvokePolicy(loadPolicy);

57+58+

await expect(policy.handle(createPolicyContext({ invokeNode }))).resolves.toEqual({

59+

ok: true,

60+

payload: { delegated: true },

61+

});

62+

await expect(policy.handle(createPolicyContext({ invokeNode }))).resolves.toEqual({

63+

ok: true,

64+

payload: { delegated: true },

65+

});

66+67+

expect(loadPolicy).toHaveBeenCalledTimes(1);

68+

expect(delegateHandle).toHaveBeenCalledTimes(2);

69+

expect(invokeNode).toHaveBeenCalledTimes(2);

70+

});

71+72+

it("fails closed when the delegate cannot load", async () => {

73+

const invokeNode = vi.fn<OpenClawPluginNodeInvokePolicyContext["invokeNode"]>(async () => ({

74+

ok: true,

75+

payload: { ok: true },

76+

payloadJSON: null,

77+

}));

78+

const policy = createLazyFileTransferNodeInvokePolicy(async () => {

79+

throw new Error("load failed");

80+

});

81+82+

await expect(policy.handle(createPolicyContext({ invokeNode }))).resolves.toMatchObject({

83+

ok: false,

84+

code: "PLUGIN_POLICY_UNAVAILABLE",

85+

unavailable: true,

86+

});

87+

expect(invokeNode).not.toHaveBeenCalled();

88+

});

89+90+

it("does not rewrite delegate failures as load failures", async () => {

91+

const delegateError = new Error("delegate failed");

92+

const policy = createLazyFileTransferNodeInvokePolicy(async () => ({

93+

commands: ["file.fetch"],

94+

handle: async () => {

95+

throw delegateError;

96+

},

97+

}));

98+99+

await expect(policy.handle(createPolicyContext())).rejects.toBe(delegateError);

100+

});

101+

});