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

推荐订阅源

月光博客
月光博客
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
博客园 - Franky
V
V2EX
Y
Y Combinator Blog
Google DeepMind News
Google DeepMind News
J
Java Code Geeks
T
The Blog of Author Tim Ferriss
罗磊的独立博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Jina AI
Jina AI
博客园 - 叶小钗
F
Fortinet All Blogs
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
A
About on SuperTechFans
M
MIT News - Artificial intelligence
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
D
Docker
博客园 - 【当耐特】
阮一峰的网络日志
阮一峰的网络日志

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: guard ui gateway mock calls · openclaw/openclaw@e3d...
steipete · 2026-05-12 · via Recent Commits to openclaw:main

@@ -116,6 +116,36 @@ type RequestTimingPayload = {

116116

errorCode?: string;

117117

};

118118119+

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

120+

if (!value || typeof value !== "object" || Array.isArray(value)) {

121+

throw new Error(`expected ${label}`);

122+

}

123+

return value as Record<string, unknown>;

124+

}

125+126+

function requireFirstMockArg(

127+

mock: ReturnType<typeof vi.fn>,

128+

label: string,

129+

): Record<string, unknown> {

130+

const [call] = mock.mock.calls;

131+

if (!call) {

132+

throw new Error(`expected ${label} call`);

133+

}

134+

return requireRecord(call[0], `${label} payload`);

135+

}

136+137+

function requireFirstSignCall(): [privateKey: string, payload: string] {

138+

const [call] = signDevicePayloadMock.mock.calls;

139+

if (!call) {

140+

throw new Error("expected device payload signing call");

141+

}

142+

const [privateKey, payload] = call;

143+

if (typeof privateKey !== "string" || typeof payload !== "string") {

144+

throw new Error("expected device payload signing args");

145+

}

146+

return [privateKey, payload];

147+

}

148+119149

function expectLatestRequestTiming(

120150

onRequestTiming: ReturnType<typeof vi.fn>,

121151

expected: Partial<RequestTimingPayload>,

@@ -330,23 +360,15 @@ describe("GatewayBrowserClient", () => {

330360

});

331361332362

expect(() => client.start()).not.toThrow();

333-

const close = onClose.mock.calls[0]?.[0] as

334-

| {

335-

code?: number;

336-

reason?: string;

337-

error?: {

338-

code?: string;

339-

message?: string;

340-

details?: { code?: string; browserErrorName?: string };

341-

};

342-

}

343-

| undefined;

344-

expect(close?.code).toBe(1006);

345-

expect(close?.reason).toBe("security error");

346-

expect(close?.error?.code).toBe("BROWSER_WEBSOCKET_SECURITY_ERROR");

347-

expect(close?.error?.message).toContain("Use wss://");

348-

expect(close?.error?.details?.code).toBe("BROWSER_WEBSOCKET_SECURITY_ERROR");

349-

expect(close?.error?.details?.browserErrorName).toBe("SecurityError");

363+

const close = requireFirstMockArg(onClose, "close");

364+

expect(close.code).toBe(1006);

365+

expect(close.reason).toBe("security error");

366+

const closeError = requireRecord(close.error, "close error");

367+

const closeErrorDetails = requireRecord(closeError.details, "close error details");

368+

expect(closeError.code).toBe("BROWSER_WEBSOCKET_SECURITY_ERROR");

369+

expect(String(closeError.message)).toContain("Use wss://");

370+

expect(closeErrorDetails.code).toBe("BROWSER_WEBSOCKET_SECURITY_ERROR");

371+

expect(closeErrorDetails.browserErrorName).toBe("SecurityError");

350372

expect(wsInstances).toHaveLength(0);

351373352374

await vi.advanceTimersByTimeAsync(30_000);

@@ -374,24 +396,16 @@ describe("GatewayBrowserClient", () => {

374396

});

375397376398

expect(() => client.start()).not.toThrow();

377-

const close = onClose.mock.calls[0]?.[0] as

378-

| {

379-

code?: number;

380-

reason?: string;

381-

error?: {

382-

code?: string;

383-

message?: string;

384-

details?: { code?: string; browserErrorName?: string; browserMessage?: string };

385-

};

386-

}

387-

| undefined;

388-

expect(close?.code).toBe(1006);

389-

expect(close?.reason).toBe("websocket error");

390-

expect(close?.error?.code).toBe("BROWSER_WEBSOCKET_CONSTRUCTOR_ERROR");

391-

expect(close?.error?.message).toContain("Could not create the Gateway WebSocket");

392-

expect(close?.error?.details?.code).toBe("BROWSER_WEBSOCKET_CONSTRUCTOR_ERROR");

393-

expect(close?.error?.details?.browserErrorName).toBe("TypeError");

394-

expect(close?.error?.details?.browserMessage).toBe("constructor failed");

399+

const close = requireFirstMockArg(onClose, "close");

400+

expect(close.code).toBe(1006);

401+

expect(close.reason).toBe("websocket error");

402+

const closeError = requireRecord(close.error, "close error");

403+

const closeErrorDetails = requireRecord(closeError.details, "close error details");

404+

expect(closeError.code).toBe("BROWSER_WEBSOCKET_CONSTRUCTOR_ERROR");

405+

expect(String(closeError.message)).toContain("Could not create the Gateway WebSocket");

406+

expect(closeErrorDetails.code).toBe("BROWSER_WEBSOCKET_CONSTRUCTOR_ERROR");

407+

expect(closeErrorDetails.browserErrorName).toBe("TypeError");

408+

expect(closeErrorDetails.browserMessage).toBe("constructor failed");

395409

expect(wsInstances).toHaveLength(0);

396410397411

await vi.advanceTimersByTimeAsync(30_000);

@@ -479,7 +493,7 @@ describe("GatewayBrowserClient", () => {

479493

expect((error as { gatewayCode?: string }).gatewayCode).toBe("CONFIG_ERROR");

480494

}

481495

expect(onRequestTiming).toHaveBeenCalledTimes(1);

482-

expect(onRequestTiming.mock.calls[0]?.[0]).not.toHaveProperty("params");

496+

expect(requireFirstMockArg(onRequestTiming, "request timing")).not.toHaveProperty("params");

483497

expectLatestRequestTiming(onRequestTiming, {

484498

id: frame.id,

485499

method: "config.get",

@@ -499,10 +513,8 @@ describe("GatewayBrowserClient", () => {

499513

expect(typeof connectFrame.id).toBe("string");

500514

expect(connectFrame.method).toBe("connect");

501515

expect(connectFrame.params?.auth?.token).toBe("shared-auth-token");

502-

const signCall = signDevicePayloadMock.mock.calls[0];

503-

expect(signCall?.[0]).toBe("private-key");

504-

expect(signCall?.[1]).toBeTypeOf("string");

505-

const signedPayload = signCall?.[1];

516+

const [privateKey, signedPayload] = requireFirstSignCall();

517+

expect(privateKey).toBe("private-key");

506518

expect(signedPayload).toContain("|shared-auth-token|nonce-1");

507519

expect(signedPayload).not.toContain("stored-device-token");

508520

});

@@ -557,10 +569,8 @@ describe("GatewayBrowserClient", () => {

557569

expect(typeof connectFrame.id).toBe("string");

558570

expect(connectFrame.method).toBe("connect");

559571

expect(connectFrame.params?.auth?.token).toBe("stored-device-token");

560-

const signCall = signDevicePayloadMock.mock.calls[0];

561-

expect(signCall?.[0]).toBe("private-key");

562-

expect(signCall?.[1]).toBeTypeOf("string");

563-

const signedPayload = signCall?.[1];

572+

const [privateKey, signedPayload] = requireFirstSignCall();

573+

expect(privateKey).toBe("private-key");

564574

expect(signedPayload).toContain("|stored-device-token|nonce-1");

565575

});

566576

@@ -581,7 +591,7 @@ describe("GatewayBrowserClient", () => {

581591582592

expect(connectFrame.method).toBe("connect");

583593

expect(connectFrame.params?.auth?.token).toBeUndefined();

584-

const signedPayload = signDevicePayloadMock.mock.calls[0]?.[1];

594+

const [, signedPayload] = requireFirstSignCall();

585595

expect(signedPayload).not.toContain("under-scoped-device-token");

586596

});

587597