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

推荐订阅源

罗磊的独立博客
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio Blog
MyScale Blog
MyScale Blog
M
MIT News - Artificial intelligence
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
Martin Fowler
Martin Fowler
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
Google DeepMind News
Google DeepMind News
C
Check Point Blog
Last Week in AI
Last Week in AI
F
Fortinet All Blogs
博客园 - 聂微东
Blog — PlanetScale
Blog — PlanetScale
H
Help Net Security
GbyAI
GbyAI
云风的 BLOG
云风的 BLOG

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
feat(plugins): expose hook correlation fields · openclaw/...
vincentkoc · 2026-04-25 · via Recent Commits to openclaw:main

@@ -1,6 +1,7 @@

11

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

22

import type { FinalizedMsgContext } from "../auto-reply/templating.js";

33

import type { OpenClawConfig } from "../config/config.js";

4+

import type { DiagnosticTraceContext } from "../infra/diagnostic-trace-context.js";

45

import { setActivePluginRegistry } from "../plugins/runtime.js";

56

import { createChannelTestPluginBase, createTestRegistry } from "../test-utils/channel-plugins.js";

67

import {

@@ -31,6 +32,7 @@ function makeInboundCtx(overrides: Partial<FinalizedMsgContext> = {}): Finalized

3132

Surface: "demo-chat",

3233

OriginatingChannel: "demo-chat",

3334

OriginatingTo: "demo-chat:chat:456",

35+

SessionKey: "session-1",

3436

AccountId: "acc-1",

3537

MessageSid: "msg-1",

3638

SenderId: "sender-1",

@@ -141,25 +143,60 @@ describe("message hook mappers", () => {

141143

});

142144143145

it("maps canonical inbound context to plugin/internal received payloads", () => {

144-

const canonical = deriveInboundMessageHookContext(makeInboundCtx({ TopicName: "Deployments" }));

146+

const trace: DiagnosticTraceContext = {

147+

traceId: "11111111111111111111111111111111",

148+

spanId: "2222222222222222",

149+

parentSpanId: "3333333333333333",

150+

};

151+

const canonical = {

152+

...deriveInboundMessageHookContext(makeInboundCtx({ TopicName: "Deployments" })),

153+

runId: "run-1",

154+

trace,

155+

callDepth: 2,

156+

};

145157146-

expect(toPluginMessageContext(canonical)).toEqual({

158+

const pluginContext = toPluginMessageContext(canonical);

159+

const receivedEvent = toPluginMessageReceivedEvent(canonical);

160+

expect(pluginContext).toEqual({

147161

channelId: "demo-chat",

148162

accountId: "acc-1",

149163

conversationId: "demo-chat:chat:456",

164+

sessionKey: "session-1",

165+

runId: "run-1",

166+

messageId: "msg-1",

167+

senderId: "sender-1",

168+

trace,

169+

traceId: "11111111111111111111111111111111",

170+

spanId: "2222222222222222",

171+

parentSpanId: "3333333333333333",

172+

callDepth: 2,

150173

});

151-

expect(toPluginMessageReceivedEvent(canonical)).toEqual({

174+

expect(pluginContext.trace).not.toBe(trace);

175+

expect(pluginContext.trace).toEqual(trace);

176+

expect(Object.isFrozen(pluginContext.trace)).toBe(true);

177+

expect(receivedEvent).toEqual({

152178

from: "demo-chat:user:123",

153179

content: "commands-body",

154180

timestamp: 1710000000,

155181

threadId: 42,

182+

messageId: "msg-1",

183+

senderId: "sender-1",

184+

sessionKey: "session-1",

185+

runId: "run-1",

186+

trace,

187+

traceId: "11111111111111111111111111111111",

188+

spanId: "2222222222222222",

189+

parentSpanId: "3333333333333333",

156190

metadata: expect.objectContaining({

157191

messageId: "msg-1",

158192

senderName: "User One",

159193

threadId: 42,

160194

topicName: "Deployments",

161195

}),

162196

});

197+

expect(receivedEvent.trace).not.toBe(trace);

198+

expect(receivedEvent.trace).toEqual(trace);

199+

expect(Object.isFrozen(receivedEvent.trace)).toBe(true);

163200

expect(toInternalMessageReceivedContext(canonical)).toEqual({

164201

from: "demo-chat:user:123",

165202

content: "commands-body",

@@ -176,6 +213,39 @@ describe("message hook mappers", () => {

176213

});

177214

});

178215216+

it("passes frozen trace copies to inbound claim and sent plugin hooks", () => {

217+

const trace: DiagnosticTraceContext = {

218+

traceId: "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",

219+

spanId: "bbbbbbbbbbbbbbbb",

220+

parentSpanId: "cccccccccccccccc",

221+

traceFlags: "01",

222+

};

223+

const inbound = {

224+

...deriveInboundMessageHookContext(makeInboundCtx()),

225+

trace,

226+

};

227+

const inboundContext = toPluginInboundClaimContext(inbound);

228+

const inboundEvent = toPluginInboundClaimEvent(inbound);

229+

expect(inboundContext.trace).not.toBe(trace);

230+

expect(inboundContext.trace).toEqual(trace);

231+

expect(Object.isFrozen(inboundContext.trace)).toBe(true);

232+

expect(inboundEvent.trace).not.toBe(trace);

233+

expect(inboundEvent.trace).toEqual(trace);

234+

expect(Object.isFrozen(inboundEvent.trace)).toBe(true);

235+236+

const sent = buildCanonicalSentMessageHookContext({

237+

to: "demo-chat:chat:456",

238+

content: "reply",

239+

success: true,

240+

channelId: "demo-chat",

241+

trace,

242+

});

243+

const sentEvent = toPluginMessageSentEvent(sent);

244+

expect(sentEvent.trace).not.toBe(trace);

245+

expect(sentEvent.trace).toEqual(trace);

246+

expect(Object.isFrozen(sentEvent.trace)).toBe(true);

247+

});

248+179249

it("uses channel plugin claim resolvers for grouped conversations", () => {

180250

const canonical = deriveInboundMessageHookContext(

181251

makeInboundCtx({

@@ -193,9 +263,16 @@ describe("message hook mappers", () => {

193263

channelId: "claim-chat",

194264

accountId: "acc-1",

195265

conversationId: "channel:123456789012345678",

266+

sessionKey: "session-1",

196267

parentConversationId: undefined,

197268

senderId: "sender-1",

198269

messageId: "msg-1",

270+

runId: undefined,

271+

trace: undefined,

272+

traceId: undefined,

273+

spanId: undefined,

274+

parentSpanId: undefined,

275+

callDepth: undefined,

199276

});

200277

});

201278

@@ -217,9 +294,16 @@ describe("message hook mappers", () => {

217294

channelId: "claim-chat",

218295

accountId: "acc-1",

219296

conversationId: "user:1177378744822943744",

297+

sessionKey: "session-1",

220298

parentConversationId: undefined,

221299

senderId: "sender-1",

222300

messageId: "msg-1",

301+

runId: undefined,

302+

trace: undefined,

303+

traceId: undefined,

304+

spanId: undefined,

305+

parentSpanId: undefined,

306+

callDepth: undefined,

223307

});

224308

});

225309

@@ -246,7 +330,9 @@ describe("message hook mappers", () => {

246330

error: "network error",

247331

channelId: "demo-chat",

248332

accountId: "acc-1",

333+

sessionKey: "session-1",

249334

messageId: "out-1",

335+

runId: "run-out-1",

250336

isGroup: true,

251337

groupId: "demo-chat:chat:456",

252338

});

@@ -255,11 +341,17 @@ describe("message hook mappers", () => {

255341

channelId: "demo-chat",

256342

accountId: "acc-1",

257343

conversationId: "demo-chat:chat:456",

344+

sessionKey: "session-1",

345+

runId: "run-out-1",

346+

messageId: "out-1",

258347

});

259348

expect(toPluginMessageSentEvent(canonical)).toEqual({

260349

to: "demo-chat:chat:456",

261350

content: "reply",

262351

success: false,

352+

messageId: "out-1",

353+

sessionKey: "session-1",

354+

runId: "run-out-1",

263355

error: "network error",

264356

});

265357

expect(toInternalMessageSentContext(canonical)).toEqual({