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

推荐订阅源

C
Check Point Blog
aimingoo的专栏
aimingoo的专栏
Jina AI
Jina AI
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家
V
Visual Studio Blog
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 聂微东
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
大猫的无限游戏
大猫的无限游戏
Y
Y Combinator Blog
Stack Overflow Blog
Stack Overflow Blog
D
Docker
MyScale Blog
MyScale Blog
小众软件
小众软件
云风的 BLOG
云风的 BLOG
美团技术团队
Microsoft Azure Blog
Microsoft Azure Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 【当耐特】

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(ci): repair copilot sdk drift · openclaw/openclaw@b4a...
steipete · 2026-05-31 · via Recent Commits to openclaw:main

@@ -68,6 +68,13 @@ function getError(result: ToolResultObject): string | undefined {

6868

return result.error;

6969

}

707071+

function runSdkTool(tool: SdkTool, args: unknown, invocation = makeInvocation()) {

72+

if (!tool.handler) {

73+

throw new Error(`SDK tool '${tool.name}' has no handler`);

74+

}

75+

return tool.handler(args, invocation);

76+

}

77+7178

afterEach(() => {

7279

vi.restoreAllMocks();

7380

});

@@ -1109,7 +1116,7 @@ describe("convertOpenClawToolToSdkTool", () => {

11091116

const sourceTool = makeTool();

11101117

const sdkTool = convertOpenClawToolToSdkTool(sourceTool, { abortSignal: controller.signal });

111111181112-

const result = await sdkTool.handler({}, makeInvocation());

1119+

const result = await runSdkTool(sdkTool, {});

1113112011141121

expect(sourceTool.execute).toHaveBeenCalledTimes(0);

11151122

expect(result).toMatchObject({

@@ -1128,7 +1135,7 @@ describe("convertOpenClawToolToSdkTool", () => {

11281135

const invocation = makeInvocation({ toolCallId: "call-42" });

11291136

const args = { value: "input" };

113011371131-

await sdkTool.handler(args, invocation);

1138+

await runSdkTool(sdkTool, args, invocation);

1132113911331140

expect(beforeExecute).toHaveBeenCalledTimes(1);

11341141

expect(beforeExecute).toHaveBeenCalledWith({

@@ -1152,7 +1159,7 @@ describe("convertOpenClawToolToSdkTool", () => {

11521159

}),

11531160

});

115411611155-

const result = await sdkTool.handler({}, makeInvocation());

1162+

const result = await runSdkTool(sdkTool, {});

1156116311571164

expect(sourceTool.execute).toHaveBeenCalledTimes(0);

11581165

expect(result).toMatchObject({

@@ -1169,7 +1176,7 @@ describe("convertOpenClawToolToSdkTool", () => {

11691176

const sourceTool = makeTool({ prepareArguments });

11701177

const sdkTool = convertOpenClawToolToSdkTool(sourceTool, {});

117111781172-

await sdkTool.handler({ value: "raw" }, makeInvocation({ toolCallId: "call-99" }));

1179+

await runSdkTool(sdkTool, { value: "raw" }, makeInvocation({ toolCallId: "call-99" }));

1173118011741181

expect(prepareArguments).toHaveBeenCalledTimes(1);

11751182

expect(prepareArguments).toHaveBeenCalledWith({ value: "raw" });

@@ -1185,7 +1192,7 @@ describe("convertOpenClawToolToSdkTool", () => {

11851192

});

11861193

const sdkTool = convertOpenClawToolToSdkTool(sourceTool, {});

118711941188-

const result = await sdkTool.handler({}, makeInvocation());

1195+

const result = await runSdkTool(sdkTool, {});

1189119611901197

expect(sourceTool.execute).toHaveBeenCalledTimes(0);

11911198

expect(result).toMatchObject({

@@ -1199,7 +1206,7 @@ describe("convertOpenClawToolToSdkTool", () => {

11991206

const sourceTool = makeTool({}, { details: null });

12001207

const sdkTool = convertOpenClawToolToSdkTool(sourceTool, {});

120112081202-

const result = await sdkTool.handler({}, makeInvocation());

1209+

const result = await runSdkTool(sdkTool, {});

1203121012041211

expect(result).toEqual({ resultType: "success", textResultForLlm: "" });

12051212

});

@@ -1210,7 +1217,7 @@ describe("convertOpenClawToolToSdkTool", () => {

12101217

{},

12111218

);

121212191213-

const result = await sdkTool.handler({}, makeInvocation());

1220+

const result = await runSdkTool(sdkTool, {});

1214122112151222

expect(result).toEqual({ resultType: "success", textResultForLlm: "hello" });

12161223

});

@@ -1231,7 +1238,7 @@ describe("convertOpenClawToolToSdkTool", () => {

12311238

{},

12321239

);

123312401234-

const result = await sdkTool.handler({}, makeInvocation());

1241+

const result = await runSdkTool(sdkTool, {});

1235124212361243

expect(result).toEqual({ resultType: "success", textResultForLlm: "first\nsecond\nthird" });

12371244

});

@@ -1251,7 +1258,7 @@ describe("convertOpenClawToolToSdkTool", () => {

12511258

{},

12521259

);

125312601254-

const result = await sdkTool.handler({}, makeInvocation());

1261+

const result = await runSdkTool(sdkTool, {});

1255126212561263

expect(result).toEqual({

12571264

binaryResultsForLlm: [

@@ -1279,7 +1286,7 @@ describe("convertOpenClawToolToSdkTool", () => {

12791286

{},

12801287

);

128112881282-

const result = await sdkTool.handler({}, makeInvocation());

1289+

const result = await runSdkTool(sdkTool, {});

1283129012841291

expect(result).toMatchObject({

12851292

resultType: "failure",

@@ -1299,7 +1306,7 @@ describe("convertOpenClawToolToSdkTool", () => {

12991306

});

13001307

const sdkTool = convertOpenClawToolToSdkTool(sourceTool, {});

130113081302-

const result = await sdkTool.handler({}, makeInvocation());

1309+

const result = await runSdkTool(sdkTool, {});

1303131013041311

expect(result).toMatchObject({

13051312

resultType: "failure",

@@ -1324,8 +1331,8 @@ describe("convertOpenClawToolToSdkTool", () => {

13241331

const sourceTool = makeTool({ execute });

13251332

const sdkTool = convertOpenClawToolToSdkTool(sourceTool, {});

132613331327-

const firstRun = sdkTool.handler({}, makeInvocation({ toolCallId: "call-1" }));

1328-

const secondRun = sdkTool.handler({}, makeInvocation({ toolCallId: "call-2" }));

1334+

const firstRun = runSdkTool(sdkTool, {}, makeInvocation({ toolCallId: "call-1" }));

1335+

const secondRun = runSdkTool(sdkTool, {}, makeInvocation({ toolCallId: "call-2" }));

13291336

await flushAsync();

1330133713311338

expect(execute).toHaveBeenCalledTimes(2);

@@ -1354,8 +1361,8 @@ describe("convertOpenClawToolToSdkTool", () => {

13541361

const sourceTool = makeTool({ execute, executionMode: "sequential" });

13551362

const sdkTool = convertOpenClawToolToSdkTool(sourceTool, {});

135613631357-

const firstRun = sdkTool.handler({}, makeInvocation({ toolCallId: "call-1" }));

1358-

const secondRun = sdkTool.handler({}, makeInvocation({ toolCallId: "call-2" }));

1364+

const firstRun = runSdkTool(sdkTool, {}, makeInvocation({ toolCallId: "call-1" }));

1365+

const secondRun = runSdkTool(sdkTool, {}, makeInvocation({ toolCallId: "call-2" }));

13591366

await flushAsync();

1360136713611368

expect(execute).toHaveBeenCalledTimes(1);

@@ -1389,7 +1396,7 @@ describe("convertOpenClawToolToSdkTool", () => {

13891396

});

13901397

const sdkTool = convertOpenClawToolToSdkTool(sourceTool, { abortSignal: controller.signal });

139113981392-

const resultPromise = sdkTool.handler({}, makeInvocation());

1399+

const resultPromise = runSdkTool(sdkTool, {});

13931400

await flushAsync();

13941401

controller.abort();

13951402

const result = await resultPromise;