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

推荐订阅源

WordPress大学
WordPress大学
M
MIT News - Artificial intelligence
MyScale Blog
MyScale Blog
博客园_首页
G
Google Developers Blog
博客园 - 【当耐特】
美团技术团队
博客园 - 聂微东
Stack Overflow Blog
Stack Overflow Blog
Vercel News
Vercel News
小众软件
小众软件
博客园 - 司徒正美
雷峰网
雷峰网
T
Tailwind CSS Blog
V
V2EX
博客园 - 三生石上(FineUI控件)
F
Fortinet All Blogs
罗磊的独立博客
量子位
P
Proofpoint News Feed
Microsoft Azure Blog
Microsoft Azure Blog
月光博客
月光博客
A
About on SuperTechFans
Hugging Face - Blog
Hugging Face - 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
test: clear matrix subagent hook broad matchers · opencla...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -83,6 +83,44 @@ function makeSpawnEvent(

8383

};

8484

}

858586+

function requireRecord(value: unknown, label: string): Record<string, unknown> {

87+

expect(typeof value).toBe("object");

88+

expect(value).not.toBeNull();

89+

if (typeof value !== "object" || value === null) {

90+

throw new Error(`${label} was not an object`);

91+

}

92+

return value as Record<string, unknown>;

93+

}

94+95+

function expectRecordFields(record: Record<string, unknown>, fields: Record<string, unknown>) {

96+

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

97+

expect(record[key]).toEqual(value);

98+

}

99+

}

100+101+

function expectResultFields(result: unknown, fields: Record<string, unknown>) {

102+

expectRecordFields(requireRecord(result, "hook result"), fields);

103+

}

104+105+

function expectErrorResult(result: unknown, messagePart: string) {

106+

const record = requireRecord(result, "hook result");

107+

expect(record.status).toBe("error");

108+

expect(String(record.error).toLowerCase()).toContain(messagePart.toLowerCase());

109+

}

110+111+

function requireBindCallWithTarget(targetSessionKey: string) {

112+

const calls = bindMock.mock.calls;

113+

const call = calls.find(([params]) => {

114+

const record = params as { targetSessionKey?: string };

115+

return record.targetSessionKey === targetSessionKey;

116+

});

117+

expect(call).toBeDefined();

118+

if (!call) {

119+

throw new Error(`missing bind call for ${targetSessionKey}`);

120+

}

121+

return requireRecord(call[0], "bind params");

122+

}

123+86124

describe("handleMatrixSubagentSpawning", () => {

87125

beforeEach(() => {

88126

bindMock.mockReset();

@@ -135,7 +173,7 @@ describe("handleMatrixSubagentSpawning", () => {

135173

fakeApi,

136174

makeSpawnEvent({ channel: " Matrix " }),

137175

);

138-

expect(result).toMatchObject({ status: "ok", threadBindingReady: true });

176+

expectResultFields(result, { status: "ok", threadBindingReady: true });

139177

});

140178141179

it("returns error when thread bindings are disabled", async () => {

@@ -151,8 +189,7 @@ describe("handleMatrixSubagentSpawning", () => {

151189

} as never,

152190

makeSpawnEvent(),

153191

);

154-

expect(result).toEqual(expect.objectContaining({ status: "error" }));

155-

expect((result as { error?: string }).error).toMatch(/thread bindings are disabled/i);

192+

expectErrorResult(result, "thread bindings are disabled");

156193

});

157194158195

it("returns error when spawnSessions is false", async () => {

@@ -168,40 +205,25 @@ describe("handleMatrixSubagentSpawning", () => {

168205

} as never,

169206

makeSpawnEvent(),

170207

);

171-

expect(result).toEqual(

172-

expect.objectContaining({

173-

status: "error",

174-

error: expect.stringContaining("spawnSessions"),

175-

}),

176-

);

208+

expectErrorResult(result, "spawnSessions");

177209

});

178210179211

it("allows thread-bound subagent spawn by default", async () => {

180212

const result = await handleMatrixSubagentSpawning(fakeApi, makeSpawnEvent());

181-

expect(result).toMatchObject({ status: "ok", threadBindingReady: true });

213+

expectResultFields(result, { status: "ok", threadBindingReady: true });

182214

});

183215184216

it("returns error when requester.to has no room target", async () => {

185217

const result = await handleMatrixSubagentSpawning(

186218

fakeApi,

187219

makeSpawnEvent({ to: "@user:example.org" }),

188220

);

189-

expect(result).toEqual(

190-

expect.objectContaining({

191-

status: "error",

192-

error: expect.stringContaining("no room target"),

193-

}),

194-

);

221+

expectErrorResult(result, "no room target");

195222

});

196223197224

it("returns error when requester.to is empty", async () => {

198225

const result = await handleMatrixSubagentSpawning(fakeApi, makeSpawnEvent({ to: "" }));

199-

expect(result).toEqual(

200-

expect.objectContaining({

201-

status: "error",

202-

error: expect.stringContaining("no room target"),

203-

}),

204-

);

226+

expectErrorResult(result, "no room target");

205227

});

206228207229

it("returns error when no binding adapter is available for the account", async () => {

@@ -212,12 +234,7 @@ describe("handleMatrixSubagentSpawning", () => {

212234

unbindSupported: false,

213235

});

214236

const result = await handleMatrixSubagentSpawning(fakeApi, makeSpawnEvent());

215-

expect(result).toEqual(

216-

expect.objectContaining({

217-

status: "error",

218-

error: expect.stringContaining("No Matrix session binding adapter"),

219-

}),

220-

);

237+

expectErrorResult(result, "No Matrix session binding adapter");

221238

expect(bindMock).not.toHaveBeenCalled();

222239

});

223240

@@ -240,32 +257,33 @@ describe("handleMatrixSubagentSpawning", () => {

240257

}),

241258

);

242259243-

expect(bindMock).toHaveBeenCalledWith(

244-

expect.objectContaining({

245-

targetSessionKey: "agent:ops:subagent:worker",

246-

targetKind: "subagent",

247-

conversation: expect.objectContaining({

248-

channel: "matrix",

249-

accountId: "ops",

250-

conversationId: "!roomAbc:technerik.com",

251-

}),

252-

placement: "child",

253-

metadata: expect.objectContaining({

254-

agentId: "builder",

255-

label: "Build Agent",

256-

}),

257-

}),

258-

);

259-

expect(result).toMatchObject({

260+

const bindParams = requireBindCallWithTarget("agent:ops:subagent:worker");

261+

expectRecordFields(bindParams, {

262+

targetKind: "subagent",

263+

placement: "child",

264+

});

265+

expectRecordFields(requireRecord(bindParams.conversation, "bind conversation"), {

266+

channel: "matrix",

267+

accountId: "ops",

268+

conversationId: "!roomAbc:technerik.com",

269+

});

270+

expectRecordFields(requireRecord(bindParams.metadata, "bind metadata"), {

271+

agentId: "builder",

272+

label: "Build Agent",

273+

});

274+

expectResultFields(result, {

260275

status: "ok",

261276

threadBindingReady: true,

262-

deliveryOrigin: {

277+

});

278+

expectRecordFields(

279+

requireRecord(requireRecord(result, "hook result").deliveryOrigin, "delivery origin"),

280+

{

263281

channel: "matrix",

264282

accountId: "ops",

265283

to: "room:!roomAbc:technerik.com",

266284

threadId: "$thread-ops",

267285

},

268-

});

286+

);

269287

});

270288271289

it("uses 'default' as accountId when requester.accountId is absent", async () => {

@@ -281,22 +299,14 @@ describe("handleMatrixSubagentSpawning", () => {

281299

channel: "matrix",

282300

accountId: "default",

283301

});

284-

expect(bindMock).toHaveBeenCalledWith(

285-

expect.objectContaining({

286-

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

287-

}),

288-

);

302+

const bindParams = requireBindCallWithTarget("agent:default:subagent:child");

303+

expect(requireRecord(bindParams.conversation, "bind conversation").accountId).toBe("default");

289304

});

290305291306

it("returns error when bind() throws", async () => {

292307

bindMock.mockRejectedValue(new Error("provider auth failed"));

293308

const result = await handleMatrixSubagentSpawning(fakeApi, makeSpawnEvent());

294-

expect(result).toEqual(

295-

expect.objectContaining({

296-

status: "error",

297-

error: expect.stringContaining("provider auth failed"),

298-

}),

299-

);

309+

expectErrorResult(result, "provider auth failed");

300310

});

301311302312

it("respects per-account threadBindings override over base config", async () => {

@@ -319,7 +329,7 @@ describe("handleMatrixSubagentSpawning", () => {

319329

} as never,

320330

makeSpawnEvent({ accountId: "forge" }),

321331

);

322-

expect(result).toMatchObject({ status: "ok", threadBindingReady: true });

332+

expectResultFields(result, { status: "ok", threadBindingReady: true });

323333

});

324334

});

325335

@@ -359,16 +369,19 @@ describe("matrix subagent hook registration", () => {

359369

const result = await handler(makeSpawnEvent(), {});

360370361371

expect(bindMock).toHaveBeenCalledTimes(1);

362-

expect(result).toMatchObject({

372+

expectResultFields(result, {

363373

status: "ok",

364374

threadBindingReady: true,

365-

deliveryOrigin: {

375+

});

376+

expectRecordFields(

377+

requireRecord(requireRecord(result, "hook result").deliveryOrigin, "delivery origin"),

378+

{

366379

channel: "matrix",

367380

accountId: "default",

368381

to: "room:!room123:example.org",

369382

threadId: "$thread-root",

370383

},

371-

});

384+

);

372385

});

373386374387

it("resolves delivery targets through the lazy registration barrel", async () => {

@@ -825,28 +838,30 @@ describe("concurrent spawns across accounts", () => {

825838

spawnForAccount("forge"),

826839

]);

827840828-

expect(opsResult).toMatchObject({ status: "ok", threadBindingReady: true });

829-

expect(forgeResult).toMatchObject({ status: "ok", threadBindingReady: true });

841+

expectResultFields(opsResult, { status: "ok", threadBindingReady: true });

842+

expectResultFields(forgeResult, { status: "ok", threadBindingReady: true });

830843

expect(bindMock).toHaveBeenCalledTimes(2);

831844832845

// Each bind call targeted the correct account's room

833-

expect(bindMock).toHaveBeenCalledWith(

834-

expect.objectContaining({

835-

targetSessionKey: "agent:ops:subagent:child-ops",

836-

conversation: expect.objectContaining({

837-

accountId: "ops",

838-

conversationId: "!room-ops:example.org",

839-

}),

840-

}),

846+

expectRecordFields(

847+

requireRecord(

848+

requireBindCallWithTarget("agent:ops:subagent:child-ops").conversation,

849+

"ops bind conversation",

850+

),

851+

{

852+

accountId: "ops",

853+

conversationId: "!room-ops:example.org",

854+

},

841855

);

842-

expect(bindMock).toHaveBeenCalledWith(

843-

expect.objectContaining({

844-

targetSessionKey: "agent:forge:subagent:child-forge",

845-

conversation: expect.objectContaining({

846-

accountId: "forge",

847-

conversationId: "!room-forge:example.org",

848-

}),

849-

}),

856+

expectRecordFields(

857+

requireRecord(

858+

requireBindCallWithTarget("agent:forge:subagent:child-forge").conversation,

859+

"forge bind conversation",

860+

),

861+

{

862+

accountId: "forge",

863+

conversationId: "!room-forge:example.org",

864+

},

850865

);

851866

});

852867

@@ -860,12 +875,7 @@ describe("concurrent spawns across accounts", () => {

860875

spawnForAccount("forge"),

861876

]);

862877863-

expect(opsResult).toEqual(

864-

expect.objectContaining({

865-

status: "error",

866-

error: expect.stringContaining("ops provider auth failed"),

867-

}),

868-

);

869-

expect(forgeResult).toMatchObject({ status: "ok", threadBindingReady: true });

878+

expectErrorResult(opsResult, "ops provider auth failed");

879+

expectResultFields(forgeResult, { status: "ok", threadBindingReady: true });

870880

});

871881

});