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

推荐订阅源

月光博客
月光博客
J
Java Code Geeks
F
Fortinet All Blogs
Blog — PlanetScale
Blog — PlanetScale
P
Proofpoint News Feed
U
Unit 42
B
Blog
宝玉的分享
宝玉的分享
腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
博客园 - Franky
博客园 - 三生石上(FineUI控件)
人人都是产品经理
人人都是产品经理
Martin Fowler
Martin Fowler
博客园_首页
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
云风的 BLOG
云风的 BLOG
L
LangChain Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Y
Y Combinator Blog
The GitHub Blog
The GitHub 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 client broad matchers · openclaw/openc...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -46,6 +46,52 @@ class MockMatrixClient {

4646

}

4747

}

484849+

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

50+

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

51+

expect(value).not.toBeNull();

52+

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

53+

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

54+

}

55+

return value as Record<string, unknown>;

56+

}

57+58+

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

59+

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

60+

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

61+

}

62+

}

63+64+

function expectAuthFields(auth: unknown, fields: Record<string, unknown>) {

65+

expectRecordFields(requireRecord(auth, "Matrix auth"), fields);

66+

}

67+68+

function expectSavedCredentials(

69+

mock: ReturnType<typeof vi.fn>,

70+

fields: Record<string, unknown>,

71+

accountId: string,

72+

) {

73+

const call = mock.mock.calls[0] as unknown[] | undefined;

74+

expect(call).toBeDefined();

75+

if (!call) {

76+

throw new Error("missing save credentials call");

77+

}

78+

expectRecordFields(requireRecord(call[0], "Matrix credentials"), fields);

79+

requireRecord(call[1], "Matrix credential save options");

80+

expect(call[2]).toBe(accountId);

81+

}

82+83+

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

84+

const call = matrixDoRequestMock.mock.calls[0] as unknown[] | undefined;

85+

expect(call).toBeDefined();

86+

if (!call) {

87+

throw new Error("missing Matrix login call");

88+

}

89+

expect(call[0]).toBe("POST");

90+

expect(call[1]).toBe("/_matrix/client/v3/login");

91+

expect(call[2]).toBeUndefined();

92+

expectRecordFields(requireRecord(call[3], "Matrix login body"), fields);

93+

}

94+4995

describe("resolveMatrixAuth", () => {

5096

beforeEach(() => {

5197

vi.mocked(credentialsReadModule.loadMatrixCredentials).mockReset();

@@ -95,30 +141,27 @@ describe("resolveMatrixAuth", () => {

95141

env: {} as NodeJS.ProcessEnv,

96142

});

9714398-

expect(matrixDoRequestMock).toHaveBeenCalledWith(

99-

"POST",

100-

"/_matrix/client/v3/login",

101-

undefined,

102-

expect.objectContaining({

103-

type: "m.login.password",

104-

}),

105-

);

106-

expect(auth).toMatchObject({

144+

expectMatrixLoginCall({

145+

type: "m.login.password",

146+

identifier: { type: "m.id.user", user: "@bot:example.org" },

147+

password: "secret",

148+

});

149+

expectAuthFields(auth, {

107150

accountId: "default",

108151

homeserver: "https://matrix.example.org",

109152

userId: "@bot:example.org",

110153

accessToken: "tok-123",

111154

deviceId: "DEVICE123",

112155

encryption: true,

113156

});

114-

expect(saveMatrixCredentialsMock).toHaveBeenCalledWith(

115-

expect.objectContaining({

157+

expectSavedCredentials(

158+

saveMatrixCredentialsMock,

159+

{

116160

homeserver: "https://matrix.example.org",

117161

userId: "@bot:example.org",

118162

accessToken: "tok-123",

119163

deviceId: "DEVICE123",

120-

}),

121-

expect.any(Object),

164+

},

122165

"default",

123166

);

124167

});

@@ -143,14 +186,11 @@ describe("resolveMatrixAuth", () => {

143186

}),

144187

).rejects.toThrow("Invalid username or password");

145188146-

expect(matrixDoRequestMock).toHaveBeenCalledWith(

147-

"POST",

148-

"/_matrix/client/v3/login",

149-

undefined,

150-

expect.objectContaining({

151-

type: "m.login.password",

152-

}),

153-

);

189+

expectMatrixLoginCall({

190+

type: "m.login.password",

191+

identifier: { type: "m.id.user", user: "@bot:example.org" },

192+

password: "secret",

193+

});

154194

expect(saveMatrixCredentialsMock).not.toHaveBeenCalled();

155195

});

156196

@@ -179,7 +219,7 @@ describe("resolveMatrixAuth", () => {

179219

env: {} as NodeJS.ProcessEnv,

180220

});

181221182-

expect(auth).toMatchObject({

222+

expectAuthFields(auth, {

183223

accountId: "default",

184224

homeserver: "https://matrix.example.org",

185225

userId: "@bot:example.org",

@@ -216,7 +256,7 @@ describe("resolveMatrixAuth", () => {

216256

accountId: "ops",

217257

});

218258219-

expect(auth).toMatchObject({

259+

expectAuthFields(auth, {

220260

accountId: "ops",

221261

homeserver: "https://matrix.example.org",

222262

userId: "@ops:example.org",

@@ -266,14 +306,14 @@ describe("resolveMatrixAuth", () => {

266306267307

expect(auth.deviceId).toBe("DEVICE123");

268308

expect(auth.accountId).toBe("default");

269-

expect(saveMatrixCredentialsMock).toHaveBeenCalledWith(

270-

expect.objectContaining({

309+

expectSavedCredentials(

310+

saveMatrixCredentialsMock,

311+

{

271312

homeserver: "https://matrix.example.org",

272313

userId: "@bot:example.org",

273314

accessToken: "tok-123",

274315

deviceId: "DEVICE123",

275-

}),

276-

expect.any(Object),

316+

},

277317

"default",

278318

);

279319

});

@@ -293,7 +333,7 @@ describe("resolveMatrixAuth", () => {

293333294334

const auth = await resolveMatrixAuth({ cfg, env: {} as NodeJS.ProcessEnv });

295335296-

expect(auth).toMatchObject({

336+

expectAuthFields(auth, {

297337

homeserver: "http://127.0.0.1:8008",

298338

allowPrivateNetwork: true,

299339

ssrfPolicy: { allowPrivateNetwork: true },

@@ -363,17 +403,12 @@ describe("resolveMatrixAuth", () => {

363403

accountId: "ops",

364404

});

365405366-

expect(matrixDoRequestMock).toHaveBeenCalledWith(

367-

"POST",

368-

"/_matrix/client/v3/login",

369-

undefined,

370-

expect.objectContaining({

371-

type: "m.login.password",

372-

identifier: { type: "m.id.user", user: "@ops:example.org" },

373-

password: "ops-pass",

374-

}),

375-

);

376-

expect(auth).toMatchObject({

406+

expectMatrixLoginCall({

407+

type: "m.login.password",

408+

identifier: { type: "m.id.user", user: "@ops:example.org" },

409+

password: "ops-pass",

410+

});

411+

expectAuthFields(auth, {

377412

accountId: "ops",

378413

homeserver: "https://matrix.example.org",

379414

userId: "@ops:example.org",

@@ -404,7 +439,7 @@ describe("resolveMatrixAuth", () => {

404439

});

405440406441

expect(matrixDoRequestMock).toHaveBeenCalledWith("GET", "/_matrix/client/v3/account/whoami");

407-

expect(auth).toMatchObject({

442+

expectAuthFields(auth, {

408443

accountId: "default",

409444

homeserver: "https://matrix.example.org",

410445

userId: "@bot:example.org",

@@ -443,7 +478,7 @@ describe("resolveMatrixAuth", () => {

443478

});

444479445480

expect(matrixDoRequestMock).toHaveBeenCalledTimes(2);

446-

expect(auth).toMatchObject({

481+

expectAuthFields(auth, {

447482

userId: "@bot:example.org",

448483

deviceId: "DEVICE123",

449484

});

@@ -469,7 +504,7 @@ describe("resolveMatrixAuth", () => {

469504

});

470505471506

expect(matrixDoRequestMock).not.toHaveBeenCalled();

472-

expect(auth).toMatchObject({

507+

expectAuthFields(auth, {

473508

accountId: "default",

474509

homeserver: "https://matrix.example.org",

475510

userId: "@bot:example.org",

@@ -510,7 +545,7 @@ describe("resolveMatrixAuth", () => {

510545

});

511546512547

expect(matrixDoRequestMock).toHaveBeenCalledTimes(2);

513-

expect(auth).toMatchObject({

548+

expectAuthFields(auth, {

514549

accessToken: "tok-123",

515550

deviceId: "DEVICE123",

516551

});

@@ -533,24 +568,28 @@ describe("resolveMatrixAuth", () => {

533568

});

534569535570

expect(matrixDoRequestMock).toHaveBeenCalledWith("GET", "/_matrix/client/v3/account/whoami");

536-

expect(saveBackfilledMatrixDeviceIdMock).toHaveBeenCalledWith(

571+

expectSavedCredentials(

572+

saveBackfilledMatrixDeviceIdMock,

537573

{

538574

homeserver: "https://matrix.example.org",

539575

userId: "@bot:example.org",

540576

accessToken: "tok-123",

541577

deviceId: "DEVICE123",

542578

},

543-

expect.any(Object),

544579

"default",

545580

);

546-

expect(repairCurrentTokenStorageMetaDeviceIdMock).toHaveBeenCalledWith({

581+

const repairMeta = requireRecord(

582+

repairCurrentTokenStorageMetaDeviceIdMock.mock.calls[0]?.[0],

583+

"repair metadata",

584+

);

585+

expectRecordFields(repairMeta, {

547586

homeserver: "https://matrix.example.org",

548587

userId: "@bot:example.org",

549588

accessToken: "tok-123",

550589

accountId: "default",

551590

deviceId: "DEVICE123",

552-

env: expect.any(Object),

553591

});

592+

requireRecord(repairMeta.env, "repair env");

554593

expect(repairCurrentTokenStorageMetaDeviceIdMock.mock.invocationCallOrder[0]).toBeLessThan(

555594

saveBackfilledMatrixDeviceIdMock.mock.invocationCallOrder[0],

556595

);

@@ -689,15 +728,16 @@ describe("resolveMatrixAuth", () => {

689728

env: {} as NodeJS.ProcessEnv,

690729

});

691730692-

expect(resolveConfiguredSecretInputStringMock).toHaveBeenCalledWith(

693-

expect.objectContaining({

731+

expectRecordFields(

732+

requireRecord(resolveConfiguredSecretInputStringMock.mock.calls[0]?.[0], "secret request"),

733+

{

694734

config: cfg,

695735

value: { source: "file", provider: "matrix-file", id: "value" },

696736

path: "channels.matrix.accessToken",

697-

}),

737+

},

698738

);

699739

expect(matrixDoRequestMock).toHaveBeenCalledWith("GET", "/_matrix/client/v3/account/whoami");

700-

expect(auth).toMatchObject({

740+

expectAuthFields(auth, {

701741

accountId: "default",

702742

homeserver: "https://matrix.example.org",

703743

userId: "@bot:example.org",

@@ -741,7 +781,7 @@ describe("resolveMatrixAuth", () => {

741781

});

742782743783

expect(matrixDoRequestMock).toHaveBeenCalledWith("GET", "/_matrix/client/v3/account/whoami");

744-

expect(auth).toMatchObject({

784+

expectAuthFields(auth, {

745785

accountId: "ops",

746786

homeserver: "https://matrix.example.org",

747787

userId: "@ops:example.org",

@@ -773,7 +813,7 @@ describe("resolveMatrixAuth", () => {

773813774814

const auth = await resolveMatrixAuth({ cfg, env: {} as NodeJS.ProcessEnv });

775815776-

expect(auth).toMatchObject({

816+

expectAuthFields(auth, {

777817

accountId: "default",

778818

homeserver: "https://matrix.example.org",

779819

userId: "@bot:example.org",

@@ -802,22 +842,22 @@ describe("resolveMatrixAuth", () => {

802842803843

const auth = await resolveMatrixAuth({ cfg, env: {} as NodeJS.ProcessEnv });

804844805-

expect(auth).toMatchObject({

845+

expectAuthFields(auth, {

806846

accountId: "ops",

807847

homeserver: "https://ops.example.org",

808848

userId: "@ops:example.org",

809849

accessToken: "ops-token",

810850

deviceId: "OPSDEVICE",

811851

encryption: true,

812852

});

813-

expect(saveMatrixCredentialsMock).toHaveBeenCalledWith(

814-

expect.objectContaining({

853+

expectSavedCredentials(

854+

saveMatrixCredentialsMock,

855+

{

815856

homeserver: "https://ops.example.org",

816857

userId: "@ops:example.org",

817858

accessToken: "ops-token",

818859

deviceId: "OPSDEVICE",

819-

}),

820-

expect.any(Object),

860+

},

821861

"ops",

822862

);

823863

});