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

推荐订阅源

博客园 - 聂微东
GbyAI
GbyAI
S
SegmentFault 最新的问题
H
Hackread – Cybersecurity News, Data Breaches, AI and More
V
Visual Studio Blog
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
B
Blog
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI
雷峰网
雷峰网
爱范儿
爱范儿
Vercel News
Vercel News
人人都是产品经理
人人都是产品经理
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
Microsoft Security Blog
Microsoft Security Blog
Jina AI
Jina AI
P
Proofpoint News Feed
A
About on SuperTechFans
I
InfoQ
F
Fortinet All Blogs
L
LangChain Blog
T
Tailwind CSS 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
fix(gateway): surface connect assembly failures · opencla...
samzong · 2026-05-22 · via Recent Commits to openclaw:main

@@ -1,4 +1,5 @@

11

import { Buffer } from "node:buffer";

2+

import { generateKeyPairSync } from "node:crypto";

23

import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest";

34

import type { DeviceIdentity } from "../infra/device-identity.js";

45

import { captureEnv } from "../test-utils/env.js";

@@ -188,10 +189,11 @@ type GatewayClientModule = typeof import("./client.js");

188189

type GatewayClientInstance = InstanceType<GatewayClientModule["GatewayClient"]>;

189190190191

let GatewayClient: GatewayClientModule["GatewayClient"];

192+

let isGatewayConnectAssemblyError: GatewayClientModule["isGatewayConnectAssemblyError"];

191193192194

async function loadGatewayClientModule() {

193195

vi.resetModules();

194-

({ GatewayClient } = await import("./client.js"));

196+

({ GatewayClient, isGatewayConnectAssemblyError } = await import("./client.js"));

195197

}

196198197199

function getLatestWs(): MockWebSocket {

@@ -248,10 +250,11 @@ function createClientWithIdentity(

248250

onClose: (code: number, reason: string) => void,

249251

overrides: Partial<ConstructorParameters<typeof GatewayClient>[0]> = {},

250252

) {

253+

const { privateKey, publicKey } = generateKeyPairSync("ed25519");

251254

const identity: DeviceIdentity = {

252255

deviceId,

253-

privateKeyPem: "private-key", // pragma: allowlist secret

254-

publicKeyPem: "public-key",

256+

privateKeyPem: privateKey.export({ type: "pkcs8", format: "pem" }),

257+

publicKeyPem: publicKey.export({ type: "spki", format: "pem" }),

255258

};

256259

return new GatewayClient({

257260

url: "ws://127.0.0.1:18789",

@@ -836,6 +839,45 @@ describe("GatewayClient close handling", () => {

836839

});

837840

});

838841842+

describe("GatewayClient message dispatch", () => {

843+

beforeEach(() => {

844+

wsInstances.length = 0;

845+

logDebugMock.mockClear();

846+

});

847+848+

it("keeps event callback errors inside message dispatch", () => {

849+

const onEvent = vi.fn(() => {

850+

throw new Error("event callback failed");

851+

});

852+

const client = new GatewayClient({

853+

url: "ws://127.0.0.1:18789",

854+

deviceIdentity: null,

855+

onEvent,

856+

});

857+858+

try {

859+

client.start();

860+

const ws = getLatestWs();

861+862+

expect(() =>

863+

ws.emitMessage(

864+

JSON.stringify({

865+

type: "event",

866+

event: "tick",

867+

payload: {},

868+

}),

869+

),

870+

).not.toThrow();

871+

expect(onEvent).toHaveBeenCalledOnce();

872+

expect(logDebugMock).toHaveBeenCalledWith(

873+

"gateway client event handler error: Error: event callback failed",

874+

);

875+

} finally {

876+

client.stop();

877+

}

878+

});

879+

});

880+839881

describe("GatewayClient connect auth payload", () => {

840882

beforeEach(() => {

841883

vi.useRealTimers();

@@ -927,6 +969,76 @@ describe("GatewayClient connect auth payload", () => {

927969

return { ws, connect: connectRequestFrom(ws) };

928970

}

929971972+

it("surfaces connect assembly errors instead of waiting for the wrapper timeout", async () => {

973+

vi.useFakeTimers();

974+

let client: GatewayClientInstance | null = null;

975+

try {

976+

const onClose = vi.fn();

977+

const onConnectError = vi.fn();

978+

client = new GatewayClient({

979+

url: "ws://127.0.0.1:18789",

980+

token: "shared-token",

981+

deviceIdentity: {

982+

deviceId: "bad-device",

983+

privateKeyPem: "not a pem",

984+

publicKeyPem: "not a pem",

985+

},

986+

onClose,

987+

onConnectError,

988+

});

989+990+

client.start();

991+

const ws = getLatestWs();

992+

ws.emitOpen();

993+

emitConnectChallenge(ws);

994+995+

expect(ws.sent.some((frame) => frame.includes('"method":"connect"'))).toBe(false);

996+

const error = firstMockArg(onConnectError, "connect error") as Error;

997+

expect(error).toBeInstanceOf(Error);

998+

expect(error.message).not.toContain("gateway request timeout");

999+

expect(isGatewayConnectAssemblyError(error)).toBe(true);

1000+

expect(ws.lastClose).toEqual({ code: 1008, reason: "connect failed" });

1001+

await vi.advanceTimersByTimeAsync(1_000);

1002+

expect(wsInstances).toHaveLength(1);

1003+

expect(logErrorMock).toHaveBeenCalledWith(expect.stringContaining("gateway connect failed:"));

1004+

expect(logDebugMock).not.toHaveBeenCalledWith(

1005+

expect.stringContaining("gateway client parse error:"),

1006+

);

1007+

} finally {

1008+

client?.stop();

1009+

vi.useRealTimers();

1010+

}

1011+

});

1012+1013+

it("keeps connect error callback throws inside challenge dispatch", () => {

1014+

const onConnectError = vi.fn(() => {

1015+

throw new Error("connect callback failed");

1016+

});

1017+

const client = new GatewayClient({

1018+

url: "ws://127.0.0.1:18789",

1019+

deviceIdentity: null,

1020+

onConnectError,

1021+

});

1022+1023+

try {

1024+

client.start();

1025+

const ws = getLatestWs();

1026+

ws.emitOpen();

1027+1028+

expect(() => emitConnectChallenge(ws, " ")).not.toThrow();

1029+

expect(onConnectError).toHaveBeenCalledOnce();

1030+

expect(ws.lastClose).toEqual({

1031+

code: 1008,

1032+

reason: "connect challenge missing nonce",

1033+

});

1034+

expect(logDebugMock).toHaveBeenCalledWith(

1035+

"gateway client connect error handler error: Error: connect callback failed",

1036+

);

1037+

} finally {

1038+

client.stop();

1039+

}

1040+

});

1041+9301042

function emitConnectFailure(

9311043

ws: MockWebSocket,

9321044

connectId: string | undefined,