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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
G
Google Developers Blog
博客园 - 司徒正美
J
Java Code Geeks
aimingoo的专栏
aimingoo的专栏
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
T
The Blog of Author Tim Ferriss
D
Docker
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
腾讯CDC
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
C
Check Point Blog
M
MIT News - Artificial intelligence
Jina AI
Jina AI
I
InfoQ
雷峰网
雷峰网
The Cloudflare Blog
美团技术团队
Engineering at Meta
Engineering at Meta

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(sessions): keep bound channel identity across non-del...
yetval · 2026-06-23 · via Recent Commits to openclaw:main

@@ -220,3 +220,73 @@ describe("session origin across a channel switch (real inbound-event context bui

220220

expect(afterTelegram.origin?.nativeChannelId).toBeUndefined();

221221

});

222222

});

223+224+

describe("session origin across a non-delivery turn", () => {

225+

const webchatTurn = {

226+

Provider: "webchat",

227+

Surface: "webchat",

228+

OriginatingChannel: "webchat",

229+

ChatType: "direct",

230+

} satisfies Partial<MsgContext>;

231+232+

it("keeps the bound Slack channel identity across a non-deliver gateway webchat turn", () => {

233+

const afterSlack = applyOrigin(undefined, slackTurn);

234+

const afterWebchat = applyOrigin(afterSlack, webchatTurn);

235+236+

expect(afterWebchat.origin?.nativeChannelId).toBe("D111SLACK");

237+

expect(afterWebchat.origin?.nativeDirectUserId).toBe("U0001");

238+

expect(afterWebchat.origin?.accountId).toBe("slack-team-1");

239+

expect(afterWebchat.origin?.threadId).toBe("1700000000.000100");

240+

});

241+242+

it("keeps the bound channel identity across a heartbeat tick", () => {

243+

const afterSlack = applyOrigin(undefined, slackTurn);

244+

const afterHeartbeat = applyOrigin(afterSlack, {

245+

Provider: "heartbeat",

246+

Surface: "heartbeat",

247+

OriginatingChannel: "heartbeat",

248+

ChatType: "direct",

249+

} satisfies Partial<MsgContext>);

250+251+

expect(afterHeartbeat.origin?.nativeChannelId).toBe("D111SLACK");

252+

expect(afterHeartbeat.origin?.threadId).toBe("1700000000.000100");

253+

});

254+255+

it("keeps the bound channel identity across a cron-event turn that omits the channel", () => {

256+

const afterSlack = applyOrigin(undefined, slackTurn);

257+

const afterCron = applyOrigin(afterSlack, {

258+

Provider: "cron-event",

259+

ChatType: "direct",

260+

From: "cron:job_REDACTED",

261+

To: "cron:job_REDACTED",

262+

} satisfies Partial<MsgContext>);

263+264+

expect(afterCron.origin?.nativeChannelId).toBe("D111SLACK");

265+

expect(afterCron.origin?.nativeDirectUserId).toBe("U0001");

266+

expect(afterCron.origin?.accountId).toBe("slack-team-1");

267+

expect(afterCron.origin?.threadId).toBe("1700000000.000100");

268+

});

269+270+

it("keeps the bound channel identity across an exec-event turn that omits the channel", () => {

271+

const afterSlack = applyOrigin(undefined, slackTurn);

272+

const afterExec = applyOrigin(afterSlack, {

273+

Provider: "exec-event",

274+

ChatType: "direct",

275+

From: "exec:run_REDACTED",

276+

To: "exec:run_REDACTED",

277+

} satisfies Partial<MsgContext>);

278+279+

expect(afterExec.origin?.nativeChannelId).toBe("D111SLACK");

280+

expect(afterExec.origin?.threadId).toBe("1700000000.000100");

281+

});

282+283+

it("still adopts a real channel after an intervening non-delivery turn", () => {

284+

const afterSlack = applyOrigin(undefined, slackTurn);

285+

const afterWebchat = applyOrigin(afterSlack, webchatTurn);

286+

const afterTelegram = applyOrigin(afterWebchat, telegramTurn);

287+288+

expect(afterTelegram.origin?.provider).toBe("telegram");

289+

expect(afterTelegram.origin?.nativeChannelId).toBeUndefined();

290+

expect(afterTelegram.origin?.threadId).toBeUndefined();

291+

});

292+

});