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

推荐订阅源

Google DeepMind News
Google DeepMind News
B
Blog RSS Feed
量子位
aimingoo的专栏
aimingoo的专栏
V
Visual Studio Blog
Y
Y Combinator Blog
Vercel News
Vercel News
云风的 BLOG
云风的 BLOG
宝玉的分享
宝玉的分享
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
Stack Overflow Blog
Stack Overflow Blog
大猫的无限游戏
大猫的无限游戏
Microsoft Security Blog
Microsoft Security Blog
B
Blog
Last Week in AI
Last Week in AI
有赞技术团队
有赞技术团队
博客园 - 聂微东
腾讯CDC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks

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 crypto bootstrap broad matchers · open...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -3,6 +3,36 @@ import { MatrixCryptoBootstrapper, type MatrixCryptoBootstrapperDeps } from "./c

33

import type { MatrixCryptoBootstrapApi, MatrixRawEvent } from "./types.js";

4455

type BootstrapCrossSigningMock = Mock<MatrixCryptoBootstrapApi["bootstrapCrossSigning"]>;

6+

type MockCallSource = { mock: { calls: Array<Array<unknown>> } };

7+8+

function mockObjectArg(

9+

source: MockCallSource,

10+

label: string,

11+

callIndex = 0,

12+

argIndex = 0,

13+

): Record<string, unknown> {

14+

const call = source.mock.calls[callIndex];

15+

if (!call) {

16+

throw new Error(`Expected ${label} call ${callIndex} to exist`);

17+

}

18+

const value = call[argIndex];

19+

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

20+

throw new Error(`Expected ${label} call ${callIndex} argument ${argIndex} to be an object`);

21+

}

22+

return value as Record<string, unknown>;

23+

}

24+25+

function expectBootstrapCrossSigningCall(

26+

source: MockCallSource,

27+

callNumber: number,

28+

expected?: { setupNewCrossSigning?: boolean },

29+

) {

30+

const options = mockObjectArg(source, "bootstrapCrossSigning", callNumber - 1);

31+

expect(options.authUploadDeviceSigningKeys).toBeTypeOf("function");

32+

if (expected && "setupNewCrossSigning" in expected) {

33+

expect(options.setupNewCrossSigning).toBe(expected.setupNewCrossSigning);

34+

}

35+

}

636737

function createBootstrapperDeps() {

838

return {

@@ -106,19 +136,10 @@ function expectForcedResetCrossSigningCalls(

106136

params: { setupNewCall: number; totalCalls: number },

107137

) {

108138

expect(bootstrapCrossSigning).toHaveBeenCalledTimes(params.totalCalls);

109-

expect(bootstrapCrossSigning).toHaveBeenNthCalledWith(

110-

params.setupNewCall,

111-

expect.objectContaining({

112-

setupNewCrossSigning: true,

113-

authUploadDeviceSigningKeys: expect.any(Function),

114-

}),

115-

);

116-

expect(bootstrapCrossSigning).toHaveBeenNthCalledWith(

117-

params.totalCalls,

118-

expect.objectContaining({

119-

authUploadDeviceSigningKeys: expect.any(Function),

120-

}),

121-

);

139+

expectBootstrapCrossSigningCall(bootstrapCrossSigning, params.setupNewCall, {

140+

setupNewCrossSigning: true,

141+

});

142+

expectBootstrapCrossSigningCall(bootstrapCrossSigning, params.totalCalls);

122143

}

123144124145

async function bootstrapWithVerificationRequestListener(overrides?: {

@@ -169,11 +190,8 @@ describe("MatrixCryptoBootstrapper", () => {

169190170191

await bootstrapper.bootstrap(crypto);

171192172-

expect(crypto.bootstrapCrossSigning).toHaveBeenCalledWith(

173-

expect.objectContaining({

174-

authUploadDeviceSigningKeys: expect.any(Function),

175-

}),

176-

);

193+

expect(crypto.bootstrapCrossSigning).toHaveBeenCalledOnce();

194+

expectBootstrapCrossSigningCall(crypto.bootstrapCrossSigning as unknown as MockCallSource, 1);

177195

expect(deps.recoveryKeyStore.bootstrapSecretStorageWithRecoveryKey).toHaveBeenCalledWith(

178196

crypto,

179197

{

@@ -209,19 +227,8 @@ describe("MatrixCryptoBootstrapper", () => {

209227

await bootstrapper.bootstrap(crypto);

210228211229

expect(bootstrapCrossSigning).toHaveBeenCalledTimes(2);

212-

expect(bootstrapCrossSigning).toHaveBeenNthCalledWith(

213-

1,

214-

expect.objectContaining({

215-

authUploadDeviceSigningKeys: expect.any(Function),

216-

}),

217-

);

218-

expect(bootstrapCrossSigning).toHaveBeenNthCalledWith(

219-

2,

220-

expect.objectContaining({

221-

setupNewCrossSigning: true,

222-

authUploadDeviceSigningKeys: expect.any(Function),

223-

}),

224-

);

230+

expectBootstrapCrossSigningCall(bootstrapCrossSigning, 1);

231+

expectBootstrapCrossSigningCall(bootstrapCrossSigning, 2, { setupNewCrossSigning: true });

225232

});

226233227234

it("does not auto-reset cross-signing when automatic reset is disabled", async () => {

@@ -247,11 +254,7 @@ describe("MatrixCryptoBootstrapper", () => {

247254

});

248255249256

expect(bootstrapCrossSigning).toHaveBeenCalledTimes(1);

250-

expect(bootstrapCrossSigning).toHaveBeenCalledWith(

251-

expect.objectContaining({

252-

authUploadDeviceSigningKeys: expect.any(Function),

253-

}),

254-

);

257+

expectBootstrapCrossSigningCall(bootstrapCrossSigning, 1);

255258

});

256259257260

it("does not mark the own Matrix identity verified before cross-signing the current device", async () => {

@@ -349,18 +352,8 @@ describe("MatrixCryptoBootstrapper", () => {

349352

);

350353351354

expectSecretStorageRepairRetry(deps, crypto, bootstrapCrossSigning);

352-

expect(bootstrapCrossSigning).toHaveBeenNthCalledWith(

353-

1,

354-

expect.objectContaining({

355-

authUploadDeviceSigningKeys: expect.any(Function),

356-

}),

357-

);

358-

expect(bootstrapCrossSigning).toHaveBeenNthCalledWith(

359-

2,

360-

expect.objectContaining({

361-

authUploadDeviceSigningKeys: expect.any(Function),

362-

}),

363-

);

355+

expectBootstrapCrossSigningCall(bootstrapCrossSigning, 1);

356+

expectBootstrapCrossSigningCall(bootstrapCrossSigning, 2);

364357

});

365358366359

it("recreates secret storage and retries cross-signing when explicit bootstrap hits bad MAC", async () => {

@@ -592,13 +585,7 @@ describe("MatrixCryptoBootstrapper", () => {

592585

await bootstrapper.bootstrap(crypto);

593586594587

expect(bootstrapCrossSigning).toHaveBeenCalledTimes(2);

595-

expect(bootstrapCrossSigning).toHaveBeenNthCalledWith(

596-

2,

597-

expect.objectContaining({

598-

setupNewCrossSigning: true,

599-

authUploadDeviceSigningKeys: expect.any(Function),

600-

}),

601-

);

588+

expectBootstrapCrossSigningCall(bootstrapCrossSigning, 2, { setupNewCrossSigning: true });

602589

});

603590604591

it("marks own device verified and cross-signs it when needed", async () => {