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

推荐订阅源

Engineering at Meta
Engineering at Meta
雷峰网
雷峰网
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog
Y
Y Combinator Blog
WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
G
Google Developers Blog
云风的 BLOG
云风的 BLOG
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
博客园 - 叶小钗
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
量子位
The Cloudflare Blog
T
The Blog of Author Tim Ferriss
博客园_首页
B
Blog RSS Feed
Hugging Face - Blog
Hugging Face - Blog
IT之家
IT之家
阮一峰的网络日志
阮一峰的网络日志
L
LangChain 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
fix(discord): normalize ACP thread binding targets · open...
Zetarcos · 2026-04-23 · via Recent Commits to openclaw:main

@@ -984,6 +984,105 @@ describe("thread binding lifecycle", () => {

984984

expect(usedTokenNew).toBe(true);

985985

});

986986987+

it("normalizes prefixed parentConversationId before creating child thread bindings", async () => {

988+

createThreadBindingManager({

989+

accountId: "default",

990+

persist: false,

991+

enableSweeper: false,

992+

idleTimeoutMs: 24 * 60 * 60 * 1000,

993+

maxAgeMs: 0,

994+

});

995+996+

hoisted.restGet.mockClear();

997+

hoisted.createThreadDiscord.mockClear();

998+

hoisted.createThreadDiscord.mockResolvedValueOnce({ id: "thread-created-parent-normalized" });

999+1000+

const bound = await getSessionBindingService().bind({

1001+

targetSessionKey: "agent:codex:acp:test-parent-normalized",

1002+

targetKind: "session",

1003+

conversation: {

1004+

channel: "discord",

1005+

accountId: "default",

1006+

conversationId: "channel:1491611525914558668",

1007+

parentConversationId: "channel:1491611525914558667",

1008+

},

1009+

placement: "child",

1010+

metadata: {

1011+

agentId: "codex",

1012+

label: "Codex ACP bind test",

1013+

threadName: "Codex ACP bind test",

1014+

},

1015+

});

1016+1017+

expect(bound).toMatchObject({

1018+

conversation: {

1019+

channel: "discord",

1020+

accountId: "default",

1021+

conversationId: "thread-created-parent-normalized",

1022+

},

1023+

});

1024+

expect(hoisted.createThreadDiscord).toHaveBeenCalledWith(

1025+

"1491611525914558667",

1026+

expect.objectContaining({ autoArchiveMinutes: 60 }),

1027+

expect.objectContaining({ accountId: "default" }),

1028+

);

1029+

expect(hoisted.restGet).not.toHaveBeenCalled();

1030+

});

1031+1032+

it("preserves prefixed current channel conversation ids as binding keys", async () => {

1033+

createThreadBindingManager({

1034+

accountId: "default",

1035+

persist: false,

1036+

enableSweeper: false,

1037+

idleTimeoutMs: 24 * 60 * 60 * 1000,

1038+

maxAgeMs: 0,

1039+

});

1040+1041+

hoisted.restGet.mockClear();

1042+

hoisted.restPost.mockClear();

1043+1044+

const service = getSessionBindingService();

1045+

const bound = await service.bind({

1046+

targetSessionKey: "agent:codex:acp:current-channel",

1047+

targetKind: "session",

1048+

conversation: {

1049+

channel: "discord",

1050+

accountId: "default",

1051+

conversationId: "channel:1491611525914558667",

1052+

},

1053+

placement: "current",

1054+

metadata: {

1055+

agentId: "codex",

1056+

},

1057+

});

1058+1059+

expect(bound).toMatchObject({

1060+

conversation: {

1061+

channel: "discord",

1062+

accountId: "default",

1063+

conversationId: "channel:1491611525914558667",

1064+

},

1065+

});

1066+

expect(

1067+

service.resolveByConversation({

1068+

channel: "discord",

1069+

accountId: "default",

1070+

conversationId: "channel:1491611525914558667",

1071+

}),

1072+

).toMatchObject({

1073+

targetSessionKey: "agent:codex:acp:current-channel",

1074+

});

1075+

expect(

1076+

service.resolveByConversation({

1077+

channel: "discord",

1078+

accountId: "default",

1079+

conversationId: "1491611525914558667",

1080+

}),

1081+

).toBeNull();

1082+

expect(hoisted.restGet).not.toHaveBeenCalled();

1083+

expect(hoisted.restPost).not.toHaveBeenCalled();

1084+

});

1085+9871086

it("binds current Discord DMs as direct conversation bindings", async () => {

9881087

createThreadBindingManager({

9891088

accountId: "default",