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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
美团技术团队
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
IT之家
IT之家
Google DeepMind News
Google DeepMind News
D
Docker
J
Java Code Geeks
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 【当耐特】
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
博客园 - Franky
月光博客
月光博客
宝玉的分享
宝玉的分享
酷 壳 – CoolShell
酷 壳 – CoolShell
aimingoo的专栏
aimingoo的专栏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

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
test: tighten conversation binding assertions · openclaw/...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -22,6 +22,27 @@ function expectSessionBinding(bound: SessionBindingRecord | null): SessionBindin

2222

return bound;

2323

}

242425+

function expectBindingFields(

26+

binding: SessionBindingRecord | null | undefined,

27+

expected: Partial<SessionBindingRecord>,

28+

): SessionBindingRecord {

29+

const record = expectSessionBinding(binding ?? null);

30+

for (const [key, value] of Object.entries(expected)) {

31+

expect(record[key as keyof SessionBindingRecord]).toEqual(value);

32+

}

33+

return record;

34+

}

35+36+

function expectBindingMetadata(

37+

binding: SessionBindingRecord | null | undefined,

38+

expected: Record<string, unknown>,

39+

): void {

40+

const metadata = expectSessionBinding(binding ?? null).metadata;

41+

for (const [key, value] of Object.entries(expected)) {

42+

expect(metadata?.[key]).toEqual(value);

43+

}

44+

}

45+2546

function setMinimalCurrentConversationRegistry(): void {

2647

setActivePluginRegistry(

2748

createTestRegistry([

@@ -111,26 +132,23 @@ describe("generic current-conversation bindings", () => {

111132

},

112133

});

113134114-

expect(bound).toMatchObject({

135+

expectBindingFields(bound, {

115136

bindingId: "generic:workspace\u241fdefault\u241f\u241fuser:U123",

116137

targetSessionKey: "agent:codex:acp:workspace-dm",

117138

});

118139119140

__testing.resetCurrentConversationBindingsForTests();

120141121-

expect(

122-

resolveGenericCurrentConversationBinding({

123-

channel: "workspace",

124-

accountId: "default",

125-

conversationId: "user:U123",

126-

}),

127-

).toMatchObject({

142+

const resolved = resolveGenericCurrentConversationBinding({

143+

channel: "workspace",

144+

accountId: "default",

145+

conversationId: "user:U123",

146+

});

147+

expectBindingFields(resolved, {

128148

bindingId: "generic:workspace\u241fdefault\u241f\u241fuser:U123",

129149

targetSessionKey: "agent:codex:acp:workspace-dm",

130-

metadata: expect.objectContaining({

131-

label: "workspace-dm",

132-

}),

133150

});

151+

expectBindingMetadata(resolved, { label: "workspace-dm" });

134152

});

135153136154

it("normalizes persisted target session keys on reload", async () => {

@@ -166,21 +184,19 @@ describe("generic current-conversation bindings", () => {

166184

conversationId: "user:U123",

167185

});

168186169-

expect(resolved).toMatchObject({

187+

expectBindingFields(resolved, {

170188

bindingId: "generic:workspace\u241fdefault\u241f\u241fuser:U123",

171189

targetSessionKey: "agent:codex:acp:workspace-dm",

172-

metadata: expect.objectContaining({

173-

label: "workspace-dm",

174-

}),

175190

});

176-

expect(listGenericCurrentConversationBindingsBySession("agent:codex:acp:workspace-dm")).toEqual(

177-

[

178-

expect.objectContaining({

179-

bindingId: "generic:workspace\u241fdefault\u241f\u241fuser:U123",

180-

targetSessionKey: "agent:codex:acp:workspace-dm",

181-

}),

182-

],

191+

expectBindingMetadata(resolved, { label: "workspace-dm" });

192+

const bindings = listGenericCurrentConversationBindingsBySession(

193+

"agent:codex:acp:workspace-dm",

183194

);

195+

expect(bindings).toHaveLength(1);

196+

expectBindingFields(bindings[0], {

197+

bindingId: "generic:workspace\u241fdefault\u241f\u241fuser:U123",

198+

targetSessionKey: "agent:codex:acp:workspace-dm",

199+

});

184200

});

185201186202

it("drops self-parent conversation refs when storing generic current bindings", async () => {

@@ -195,25 +211,26 @@ describe("generic current-conversation bindings", () => {

195211

},

196212

});

197213198-

expect(bound).toMatchObject({

214+

const boundRecord = expectBindingFields(bound, {

199215

bindingId: "generic:forum\u241fdefault\u241f\u241f6098642967",

200-

conversation: {

201-

channel: "forum",

202-

accountId: "default",

203-

conversationId: "6098642967",

204-

},

216+

});

217+

expect(boundRecord.conversation).toEqual({

218+

channel: "forum",

219+

accountId: "default",

220+

conversationId: "6098642967",

205221

});

206222

expect(bound?.conversation.parentConversationId).toBeUndefined();

207-

expect(

223+

expectBindingFields(

208224

resolveGenericCurrentConversationBinding({

209225

channel: "forum",

210226

accountId: "default",

211227

conversationId: "6098642967",

212228

}),

213-

).toMatchObject({

214-

bindingId: "generic:forum\u241fdefault\u241f\u241f6098642967",

215-

targetSessionKey: "agent:codex:acp:forum-dm",

216-

});

229+

{

230+

bindingId: "generic:forum\u241fdefault\u241f\u241f6098642967",

231+

targetSessionKey: "agent:codex:acp:forum-dm",

232+

},

233+

);

217234

});

218235219236

it("migrates persisted legacy self-parent binding ids on load", async () => {

@@ -250,27 +267,25 @@ describe("generic current-conversation bindings", () => {

250267

conversationId: "6098642967",

251268

});

252269253-

expect(resolved).toMatchObject({

270+

const resolvedRecord = expectBindingFields(resolved, {

254271

bindingId: "generic:forum\u241fdefault\u241f\u241f6098642967",

255272

targetSessionKey: "agent:codex:acp:forum-dm",

256-

conversation: {

257-

channel: "forum",

258-

accountId: "default",

259-

conversationId: "6098642967",

260-

},

273+

});

274+

expect(resolvedRecord.conversation).toEqual({

275+

channel: "forum",

276+

accountId: "default",

277+

conversationId: "6098642967",

261278

});

262279

expect(resolved?.conversation.parentConversationId).toBeUndefined();

263280264-

await expect(

265-

unbindGenericCurrentConversationBindings({

266-

bindingId: resolved?.bindingId,

267-

reason: "test cleanup",

268-

}),

269-

).resolves.toEqual([

270-

expect.objectContaining({

271-

bindingId: "generic:forum\u241fdefault\u241f\u241f6098642967",

272-

}),

273-

]);

281+

const unbound = await unbindGenericCurrentConversationBindings({

282+

bindingId: resolved?.bindingId,

283+

reason: "test cleanup",

284+

});

285+

expect(unbound).toHaveLength(1);

286+

expectBindingFields(unbound[0], {

287+

bindingId: "generic:forum\u241fdefault\u241f\u241f6098642967",

288+

});

274289275290

__testing.resetCurrentConversationBindingsForTests();

276291

expect(

@@ -332,17 +347,16 @@ describe("generic current-conversation bindings", () => {

332347333348

__testing.resetCurrentConversationBindingsForTests();

334349335-

expect(

350+

expectBindingMetadata(

336351

resolveGenericCurrentConversationBinding({

337352

channel: "workspace",

338353

accountId: "default",

339354

conversationId: "user:U123",

340-

})?.metadata,

341-

).toEqual(

342-

expect.objectContaining({

355+

}),

356+

{

343357

label: "workspace-dm",

344358

lastActivityAt: 1_234_567_890,

345-

}),

359+

},

346360

);

347361

});

348362

});