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

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
Google DeepMind News
Google DeepMind News
美团技术团队
大猫的无限游戏
大猫的无限游戏
H
Help Net Security
小众软件
小众软件
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
M
MIT News - Artificial intelligence
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Microsoft Security Blog
Microsoft Security Blog
F
Fortinet All Blogs
A
About on SuperTechFans
Recent Announcements
Recent Announcements
D
Docker
Vercel News
Vercel News
Engineering at Meta
Engineering at Meta
腾讯CDC
Martin Fowler
Martin Fowler
阮一峰的网络日志
阮一峰的网络日志

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(gateway): refresh loopback yield cache lifecycle · op...
zhangguiping · 2026-06-16 · via Recent Commits to openclaw:main

@@ -23,6 +23,7 @@ type MockBeforeToolCallHookResult =

23232424

type ScopedToolsCall = {

2525

sessionId?: string;

26+

onYield?: (message: string) => Promise<void> | void;

2627

sessionKey?: string;

2728

accountId?: string;

2829

messageProvider?: string;

@@ -81,8 +82,10 @@ const resolveGatewayScopedToolsMock = vi.hoisted(() =>

8182

})),

8283

);

838485+

const runtimeConfigMock = vi.hoisted(() => ({ session: { mainKey: "main" } }));

86+8487

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

85-

getRuntimeConfig: () => ({ session: { mainKey: "main" } }),

88+

getRuntimeConfig: () => runtimeConfigMock,

8689

}));

87908891

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

@@ -106,6 +109,10 @@ import {

106109

ensureMcpLoopbackServer,

107110

startMcpLoopbackServer,

108111

} from "./mcp-http.js";

112+

import {

113+

clearMcpLoopbackYieldContext,

114+

registerMcpLoopbackYieldContext,

115+

} from "./mcp-http.loopback-runtime.js";

109116

import { McpLoopbackToolCache } from "./mcp-http.runtime.js";

110117111118

let server: Awaited<ReturnType<typeof startMcpLoopbackServer>> | undefined;

@@ -729,6 +736,71 @@ describe("mcp loopback server", () => {

729736

expect(getScopedToolsCall(1).sessionId).toBe("run-session-b");

730737

});

731738739+

it("refreshes cached yield tools for consecutive runs with the same session id", async () => {

740+

const { runtime } = await startLoopbackServerForTest();

741+

resolveGatewayScopedToolsMock.mockImplementation((params): MockGatewayScopedTools => {

742+

const call = params as ScopedToolsCall;

743+

return {

744+

agentId: "main",

745+

tools: [

746+

{

747+

name: "sessions_yield",

748+

description: "yield current run",

749+

parameters: { type: "object", properties: {} },

750+

execute: async (_toolCallId, args) => {

751+

const message = (args as { message?: string }).message ?? "yielded";

752+

await Promise.resolve(call.onYield?.(message));

753+

return {

754+

content: [{ type: "text", text: JSON.stringify({ status: "yielded", message }) }],

755+

};

756+

},

757+

},

758+

],

759+

};

760+

});

761+

const headers = {

762+

"x-session-key": "agent:main:telegram:group:chat123",

763+

"x-openclaw-session-id": "run-session-reused",

764+

"x-openclaw-message-channel": "telegram",

765+

};

766+767+

const firstContext = registerMcpLoopbackYieldContext("run-session-reused");

768+

try {

769+

expect(

770+

(

771+

await sendLoopbackToolCall({

772+

token: runtime?.ownerToken,

773+

name: "sessions_yield",

774+

args: { message: "first yield" },

775+

headers,

776+

})

777+

).status,

778+

).toBe(200);

779+

expect(firstContext).toMatchObject({ yielded: true, message: "first yield" });

780+

} finally {

781+

clearMcpLoopbackYieldContext("run-session-reused", firstContext);

782+

}

783+784+

const secondContext = registerMcpLoopbackYieldContext("run-session-reused");

785+

try {

786+

expect(

787+

(

788+

await sendLoopbackToolCall({

789+

token: runtime?.ownerToken,

790+

name: "sessions_yield",

791+

args: { message: "second yield" },

792+

headers,

793+

})

794+

).status,

795+

).toBe(200);

796+

expect(secondContext).toMatchObject({ yielded: true, message: "second yield" });

797+

} finally {

798+

clearMcpLoopbackYieldContext("run-session-reused", secondContext);

799+

}

800+801+

expect(resolveGatewayScopedToolsMock).toHaveBeenCalledTimes(2);

802+

});

803+732804

it("keeps loopback tool cache entries separate by inbound event kind, delivery mode, and inbound audio", async () => {

733805

const { runtime } = await startLoopbackServerForTest();

734806

const sendToolsList = async (