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

推荐订阅源

阮一峰的网络日志
阮一峰的网络日志
雷峰网
雷峰网
Last Week in AI
Last Week in AI
T
Tailwind CSS Blog
V
Visual Studio Blog
Jina AI
Jina AI
博客园 - 司徒正美
The Cloudflare Blog
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
S
SegmentFault 最新的问题
博客园 - 三生石上(FineUI控件)
有赞技术团队
有赞技术团队
小众软件
小众软件
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
美团技术团队
博客园 - 【当耐特】
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
WordPress大学
WordPress大学
爱范儿
爱范儿
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏

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
perf: speed up dispatch-from-config tests · openclaw/open...
steipete · 2026-04-26 · via Recent Commits to openclaw:main

@@ -150,6 +150,107 @@ const replyMediaPathMocks = vi.hoisted(() => ({

150150

const runtimePluginMocks = vi.hoisted(() => ({

151151

ensureRuntimePluginsLoaded: vi.fn(),

152152

}));

153+

const conversationBindingMocks = vi.hoisted(() => {

154+

type BindingMsgContext = {

155+

OriginatingChannel?: string | null;

156+

Surface?: string | null;

157+

Provider?: string | null;

158+

AccountId?: string | null;

159+

MessageThreadId?: string | number | null;

160+

ThreadParentId?: string | null;

161+

SenderId?: string | null;

162+

SessionKey?: string | null;

163+

ParentSessionKey?: string | null;

164+

OriginatingTo?: string | null;

165+

To?: string | null;

166+

From?: string | null;

167+

NativeChannelId?: string | null;

168+

};

169+

type BindingConfig = {

170+

channels?: Record<string, { defaultAccount?: string | null } | undefined>;

171+

};

172+173+

const normalizeText = (value: string | number | null | undefined) =>

174+

typeof value === "number" ? `${value}` : (value ?? "").trim();

175+

const normalizeChannel = (value: string | null | undefined) => normalizeText(value).toLowerCase();

176+

const resolveChannel = (ctx: BindingMsgContext, commandChannel?: string | null) =>

177+

normalizeChannel(ctx.OriginatingChannel ?? commandChannel ?? ctx.Surface ?? ctx.Provider);

178+

const resolveAccountId = (ctx: BindingMsgContext, cfg: BindingConfig, channel: string) =>

179+

normalizeText(ctx.AccountId) ||

180+

normalizeText(cfg.channels?.[channel]?.defaultAccount) ||

181+

"default";

182+

const resolveTarget = (channel: string, value: string | null | undefined) => {

183+

const target = normalizeText(value);

184+

if (!target) {

185+

return undefined;

186+

}

187+

const channelPrefix = `${channel}:`;

188+

return target.toLowerCase().startsWith(channelPrefix)

189+

? target.slice(channelPrefix.length)

190+

: target;

191+

};

192+

const resolveThreadId = (ctx: BindingMsgContext) =>

193+

normalizeText(ctx.MessageThreadId) || undefined;

194+195+

const resolveConversationBindingContextFromMessage = vi.fn(

196+

(params: { cfg: BindingConfig; ctx: BindingMsgContext }) => {

197+

const channel = resolveChannel(params.ctx);

198+

if (!channel) {

199+

return null;

200+

}

201+

const threadId = resolveThreadId(params.ctx);

202+

const baseConversationId =

203+

resolveTarget(channel, params.ctx.OriginatingTo) ?? resolveTarget(channel, params.ctx.To);

204+

const conversationId = threadId ?? baseConversationId;

205+

if (!conversationId) {

206+

return null;

207+

}

208+

const parentConversationId =

209+

threadId && baseConversationId && baseConversationId !== threadId

210+

? baseConversationId

211+

: resolveTarget(channel, params.ctx.ThreadParentId);

212+

return {

213+

channel,

214+

accountId: resolveAccountId(params.ctx, params.cfg, channel),

215+

conversationId,

216+

...(parentConversationId ? { parentConversationId } : {}),

217+

...(threadId ? { threadId } : {}),

218+

};

219+

},

220+

);

221+222+

return {

223+

resolveConversationBindingAccountIdFromMessage: (params: {

224+

ctx: BindingMsgContext;

225+

cfg: BindingConfig;

226+

commandChannel?: string | null;

227+

}) =>

228+

resolveAccountId(params.ctx, params.cfg, resolveChannel(params.ctx, params.commandChannel)),

229+

resolveConversationBindingChannelFromMessage: (

230+

ctx: BindingMsgContext,

231+

commandChannel?: string | null,

232+

) => resolveChannel(ctx, commandChannel),

233+

resolveConversationBindingContextFromAcpCommand: (params: {

234+

cfg: BindingConfig;

235+

ctx: BindingMsgContext;

236+

command?: { to?: string | null; senderId?: string | null };

237+

sessionKey?: string | null;

238+

parentSessionKey?: string | null;

239+

}) =>

240+

resolveConversationBindingContextFromMessage({

241+

cfg: params.cfg,

242+

ctx: {

243+

...params.ctx,

244+

SenderId: params.command?.senderId ?? params.ctx.SenderId,

245+

SessionKey: params.sessionKey ?? params.ctx.SessionKey,

246+

ParentSessionKey: params.parentSessionKey ?? params.ctx.ParentSessionKey,

247+

To: params.command?.to ?? params.ctx.To,

248+

},

249+

}),

250+

resolveConversationBindingContextFromMessage,

251+

resolveConversationBindingThreadIdFromMessage: (ctx: BindingMsgContext) => resolveThreadId(ctx),

252+

};

253+

});

153254

const threadInfoMocks = vi.hoisted(() => ({

154255

parseSessionThreadInfo: vi.fn<

155256

(sessionKey: string | undefined) => {

@@ -345,6 +446,18 @@ vi.mock("./reply-media-paths.runtime.js", () => ({

345446

vi.mock("../../agents/runtime-plugins.js", () => ({

346447

ensureRuntimePluginsLoaded: runtimePluginMocks.ensureRuntimePluginsLoaded,

347448

}));

449+

vi.mock("./conversation-binding-input.js", () => ({

450+

resolveConversationBindingAccountIdFromMessage:

451+

conversationBindingMocks.resolveConversationBindingAccountIdFromMessage,

452+

resolveConversationBindingChannelFromMessage:

453+

conversationBindingMocks.resolveConversationBindingChannelFromMessage,

454+

resolveConversationBindingContextFromAcpCommand:

455+

conversationBindingMocks.resolveConversationBindingContextFromAcpCommand,

456+

resolveConversationBindingContextFromMessage:

457+

conversationBindingMocks.resolveConversationBindingContextFromMessage,

458+

resolveConversationBindingThreadIdFromMessage:

459+

conversationBindingMocks.resolveConversationBindingThreadIdFromMessage,

460+

}));

348461

vi.mock("../../tts/status-config.js", () => ({

349462

resolveStatusTtsSnapshot: () => ({

350463

autoMode: "always",

@@ -771,7 +884,8 @@ describe("dispatchReplyFromConfig", () => {

771884

OriginatingTo: undefined,

772885

});

773886774-

const replyResolver = async () => ({ text: "hi" }) satisfies ReplyPayload;

887+

const replyResolver = async () =>

888+

({ text: "hi", mediaUrl: "https://example.test/reply.png" }) satisfies ReplyPayload;

775889

await dispatchReplyFromConfig({ ctx, cfg, dispatcher, replyResolver });

776890777891

expect(dispatcher.sendFinalReply).not.toHaveBeenCalled();