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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
宝玉的分享
宝玉的分享
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Engineering at Meta
Engineering at Meta
L
LangChain Blog
Jina AI
Jina AI
博客园 - 叶小钗
B
Blog RSS Feed
Recent Announcements
Recent Announcements
H
Help Net Security
小众软件
小众软件
大猫的无限游戏
大猫的无限游戏
B
Blog
云风的 BLOG
云风的 BLOG
Blog — PlanetScale
Blog — PlanetScale
D
DataBreaches.Net
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
罗磊的独立博客

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: check agent binding records · openclaw/openclaw@02e...
shakkernerd · 2026-05-12 · via Recent Commits to openclaw:main

@@ -144,10 +144,37 @@ describe("agents helpers", () => {

144144

},

145145

]);

146146147-

expect(result.added).toHaveLength(1);

148-

expect(result.skipped).toHaveLength(1);

149-

expect(result.conflicts).toHaveLength(1);

150-

expect(result.config.bindings).toHaveLength(2);

147+

expect(result.added).toStrictEqual([

148+

{

149+

agentId: "work",

150+

match: { channel: "telegram" },

151+

},

152+

]);

153+

expect(result.skipped).toStrictEqual([

154+

{

155+

agentId: "main",

156+

match: { channel: "whatsapp", accountId: "default" },

157+

},

158+

]);

159+

expect(result.conflicts).toStrictEqual([

160+

{

161+

binding: {

162+

agentId: "work",

163+

match: { channel: "whatsapp", accountId: "default" },

164+

},

165+

existingAgentId: "main",

166+

},

167+

]);

168+

expect(result.config.bindings).toStrictEqual([

169+

{

170+

agentId: "main",

171+

match: { channel: "whatsapp", accountId: "default" },

172+

},

173+

{

174+

agentId: "work",

175+

match: { channel: "telegram" },

176+

},

177+

]);

151178

});

152179153180

it("applyAgentBindings upgrades channel-only binding to account-specific binding for same agent", () => {

@@ -167,9 +194,14 @@ describe("agents helpers", () => {

167194

},

168195

]);

169196170-

expect(result.added).toHaveLength(0);

171-

expect(result.updated).toHaveLength(1);

172-

expect(result.conflicts).toHaveLength(0);

197+

expect(result.added).toStrictEqual([]);

198+

expect(result.updated).toStrictEqual([

199+

{

200+

agentId: "main",

201+

match: { channel: "telegram", accountId: "work" },

202+

},

203+

]);

204+

expect(result.conflicts).toStrictEqual([]);

173205

expect(result.config.bindings).toEqual([

174206

{

175207

agentId: "main",

@@ -204,9 +236,36 @@ describe("agents helpers", () => {

204236

},

205237

]);

206238207-

expect(result.added).toHaveLength(1);

208-

expect(result.conflicts).toHaveLength(0);

209-

expect(result.config.bindings).toHaveLength(2);

239+

expect(result.added).toStrictEqual([

240+

{

241+

agentId: "work",

242+

match: {

243+

channel: "discord",

244+

accountId: "guild-a",

245+

guildId: "123",

246+

},

247+

},

248+

]);

249+

expect(result.conflicts).toStrictEqual([]);

250+

expect(result.config.bindings).toStrictEqual([

251+

{

252+

agentId: "main",

253+

match: {

254+

channel: "discord",

255+

accountId: "guild-a",

256+

guildId: "123",

257+

roles: ["111", "222"],

258+

},

259+

},

260+

{

261+

agentId: "work",

262+

match: {

263+

channel: "discord",

264+

accountId: "guild-a",

265+

guildId: "123",

266+

},

267+

},

268+

]);

210269

});

211270212271

it("applyAgentBindings keeps distinct bindings when persisted match fields contain pipes", () => {

@@ -232,10 +291,28 @@ describe("agents helpers", () => {

232291

},

233292

]);

234293235-

expect(result.added).toHaveLength(2);

236-

expect(result.skipped).toHaveLength(0);

237-

expect(result.conflicts).toHaveLength(0);

238-

expect(result.config.bindings).toHaveLength(2);

294+

expect(result.added).toStrictEqual([

295+

{

296+

agentId: "main",

297+

match: {

298+

channel: "discord",

299+

peer: { kind: "direct", id: "a|b" },

300+

accountId: "default",

301+

},

302+

},

303+

{

304+

agentId: "main",

305+

match: {

306+

channel: "discord",

307+

peer: { kind: "direct", id: "a" },

308+

guildId: "b",

309+

accountId: "|default",

310+

},

311+

},

312+

]);

313+

expect(result.skipped).toStrictEqual([]);

314+

expect(result.conflicts).toStrictEqual([]);

315+

expect(result.config.bindings).toStrictEqual(result.added);

239316

});

240317241318

it("removeAgentBindings does not remove role-based bindings when removing channel-level routes", () => {

@@ -272,8 +349,17 @@ describe("agents helpers", () => {

272349

},

273350

]);

274351275-

expect(result.removed).toHaveLength(1);

276-

expect(result.conflicts).toHaveLength(0);

352+

expect(result.removed).toStrictEqual([

353+

{

354+

agentId: "main",

355+

match: {

356+

channel: "discord",

357+

accountId: "guild-a",

358+

guildId: "123",

359+

},

360+

},

361+

]);

362+

expect(result.conflicts).toStrictEqual([]);

277363

expect(result.config.bindings).toEqual([

278364

{

279365

agentId: "main",

@@ -307,8 +393,9 @@ describe("agents helpers", () => {

307393

const result = pruneAgentConfig(cfg, "work");

308394

expect(result.config.agents?.list?.map((agent) => agent.id)).not.toContain("work");

309395

expect(result.config.agents?.list?.map((agent) => agent.id)).toContain("home");

310-

expect(result.config.bindings).toHaveLength(1);

311-

expect(result.config.bindings?.[0]?.agentId).toBe("home");

396+

expect(result.config.bindings).toStrictEqual([

397+

{ agentId: "home", match: { channel: "telegram" } },

398+

]);

312399

expect(result.config.tools?.agentToAgent?.allow).toEqual(["home"]);

313400

expect(result.removedBindings).toBe(1);

314401

expect(result.removedAllow).toBe(1);