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

推荐订阅源

WordPress大学
WordPress大学
小众软件
小众软件
MongoDB | Blog
MongoDB | Blog
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog
L
LangChain Blog
大猫的无限游戏
大猫的无限游戏
量子位
A
About on SuperTechFans
G
Google Developers Blog
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
IT之家
IT之家
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园_首页
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Vercel News
Vercel News
V
Visual Studio Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东
U
Unit 42
Apple Machine Learning Research
Apple Machine Learning Research

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
refactor: share e2e websocket open helper · openclaw/open...
vincentkoc · 2026-05-30 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -3,9 +3,9 @@ import { setTimeout as delay } from "node:timers/promises";

33

import { WebSocket } from "ws";

44

import { PROTOCOL_VERSION } from "../../../../dist/gateway/protocol/index.js";

55

import { renderBitmapTextPngBase64 } from "../../../../test/helpers/live-image-probe.ts";

6+

import { waitForWebSocketOpen } from "../websocket-open.mjs";

67

import { createJsonlRequestTailer } from "./jsonl-request-tail.mjs";

78

import { readPositiveIntEnv } from "./limits.mjs";

8-

import { waitForWebSocketOpen } from "./open-websocket.mjs";

99
1010

const port = process.env.PORT;

1111

const token = process.env.OPENCLAW_GATEWAY_TOKEN;

Original file line numberDiff line numberDiff line change

@@ -1,7 +1,7 @@

11

import { WebSocket } from "ws";

22

import { PROTOCOL_VERSION } from "../../../../dist/gateway/protocol/index.js";

3+

import { waitForWebSocketOpen } from "../websocket-open.mjs";

34

import { readGatewayNetworkClientConnectTimeoutMs } from "./limits.mjs";

4-

import { waitForWebSocketOpen } from "./open-websocket.mjs";

55
66

const url = process.env.GW_URL;

77

const token = process.env.GW_TOKEN;

File renamed without changes.

Original file line numberDiff line numberDiff line change

@@ -1,12 +1,10 @@

11

import { spawnSync } from "node:child_process";

2-

import { EventEmitter } from "node:events";

32

import { appendFileSync, mkdtempSync, readFileSync, rmSync, writeFileSync } from "node:fs";

43

import { tmpdir } from "node:os";

54

import path from "node:path";

65

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

76

import { createJsonlRequestTailer } from "../../scripts/e2e/lib/codex-media-path/jsonl-request-tail.mjs";

87

import { readPositiveIntEnv } from "../../scripts/e2e/lib/codex-media-path/limits.mjs";

9-

import { waitForWebSocketOpen } from "../../scripts/e2e/lib/codex-media-path/open-websocket.mjs";

108
119

const tempRoots: string[] = [];

1210

const writeConfigPath = path.resolve("scripts/e2e/lib/codex-media-path/write-config.mjs");

@@ -36,23 +34,6 @@ function runWriteConfig(root: string, env: Record<string, string> = {}) {

3634

});

3735

}

3836
39-

class FakeWebSocket extends EventEmitter {

40-

terminated = false;

41-

closed = false;

42-
43-

terminate(): void {

44-

this.terminated = true;

45-

queueMicrotask(() => {

46-

this.emit("error", new Error("socket abort after terminate"));

47-

this.emit("close");

48-

});

49-

}

50-
51-

close(): void {

52-

this.closed = true;

53-

}

54-

}

55-
5637

afterEach(() => {

5738

for (const root of tempRoots.splice(0)) {

5839

rmSync(root, { recursive: true, force: true });

@@ -152,33 +133,3 @@ describe("codex media path JSONL tailer", () => {

152133

expect(tailer.read()).toEqual([{ method: "turn/start" }]);

153134

});

154135

});

155-
156-

describe("codex media path WebSocket open guard", () => {

157-

it("terminates sockets that never open", async () => {

158-

const ws = new FakeWebSocket();

159-

const keepAlive = setTimeout(() => {}, 100);

160-
161-

try {

162-

await expect(waitForWebSocketOpen(ws, 1)).rejects.toThrow("gateway ws open timeout");

163-

} finally {

164-

clearTimeout(keepAlive);

165-

}

166-
167-

expect(ws.terminated).toBe(true);

168-

await new Promise((resolve) => setImmediate(resolve));

169-

expect(ws.listenerCount("open")).toBe(0);

170-

expect(ws.listenerCount("error")).toBe(0);

171-

});

172-
173-

it("cleans listeners after successful opens", async () => {

174-

const ws = new FakeWebSocket();

175-

const opened = waitForWebSocketOpen(ws, 100);

176-
177-

ws.emit("open");

178-
179-

await expect(opened).resolves.toBeUndefined();

180-

expect(ws.terminated).toBe(false);

181-

expect(ws.listenerCount("open")).toBe(0);

182-

expect(ws.listenerCount("error")).toBe(0);

183-

});

184-

});

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,58 @@

1+

import { EventEmitter } from "node:events";

2+

import { describe, expect, it } from "vitest";

3+

import { waitForWebSocketOpen } from "../../scripts/e2e/lib/websocket-open.mjs";

4+
5+

class FakeWebSocket extends EventEmitter {

6+

terminated = false;

7+
8+

terminate(): void {

9+

this.terminated = true;

10+

queueMicrotask(() => {

11+

this.emit("error", new Error("socket abort after terminate"));

12+

this.emit("close");

13+

});

14+

}

15+

}

16+
17+

describe("E2E WebSocket open guard", () => {

18+

it("consumes abort errors after open timeouts", async () => {

19+

const ws = new FakeWebSocket();

20+

const keepAlive = setTimeout(() => {}, 100);

21+
22+

try {

23+

await expect(waitForWebSocketOpen(ws, 1)).rejects.toThrow("ws open timeout");

24+

} finally {

25+

clearTimeout(keepAlive);

26+

}

27+

await new Promise((resolve) => setImmediate(resolve));

28+
29+

expect(ws.terminated).toBe(true);

30+

expect(ws.listenerCount("open")).toBe(0);

31+

expect(ws.listenerCount("error")).toBe(0);

32+

});

33+
34+

it("uses caller-specific timeout messages", async () => {

35+

const ws = new FakeWebSocket();

36+

const keepAlive = setTimeout(() => {}, 100);

37+
38+

try {

39+

await expect(waitForWebSocketOpen(ws, 1, "gateway ws open timeout")).rejects.toThrow(

40+

"gateway ws open timeout",

41+

);

42+

} finally {

43+

clearTimeout(keepAlive);

44+

}

45+

});

46+
47+

it("cleans listeners after successful opens", async () => {

48+

const ws = new FakeWebSocket();

49+

const opened = waitForWebSocketOpen(ws, 100);

50+
51+

ws.emit("open");

52+
53+

await expect(opened).resolves.toBeUndefined();

54+

expect(ws.terminated).toBe(false);

55+

expect(ws.listenerCount("open")).toBe(0);

56+

expect(ws.listenerCount("error")).toBe(0);

57+

});

58+

});

Original file line numberDiff line numberDiff line change

@@ -1,24 +1,5 @@

1-

import { EventEmitter } from "node:events";

21

import { describe, expect, it } from "vitest";

32

import { readGatewayNetworkClientConnectTimeoutMs } from "../../scripts/e2e/lib/gateway-network/limits.mjs";

4-

import { waitForWebSocketOpen } from "../../scripts/e2e/lib/gateway-network/open-websocket.mjs";

5-
6-

class FakeWebSocket extends EventEmitter {

7-

terminated = false;

8-

closed = false;

9-
10-

terminate(): void {

11-

this.terminated = true;

12-

queueMicrotask(() => {

13-

this.emit("error", new Error("socket abort after terminate"));

14-

this.emit("close");

15-

});

16-

}

17-
18-

close(): void {

19-

this.closed = true;

20-

}

21-

}

223
234

describe("gateway network WebSocket open guard", () => {

245

it("rejects loose client timeout env values instead of parsing prefixes", () => {

@@ -52,32 +33,4 @@ describe("gateway network WebSocket open guard", () => {

5233

}),

5334

).toBe(3000);

5435

});

55-
56-

it("consumes abort errors after open timeouts", async () => {

57-

const ws = new FakeWebSocket();

58-

const keepAlive = setTimeout(() => {}, 100);

59-
60-

try {

61-

await expect(waitForWebSocketOpen(ws, 1)).rejects.toThrow("ws open timeout");

62-

} finally {

63-

clearTimeout(keepAlive);

64-

}

65-

await new Promise((resolve) => setImmediate(resolve));

66-
67-

expect(ws.terminated).toBe(true);

68-

expect(ws.listenerCount("open")).toBe(0);

69-

expect(ws.listenerCount("error")).toBe(0);

70-

});

71-
72-

it("cleans listeners after successful opens", async () => {

73-

const ws = new FakeWebSocket();

74-

const opened = waitForWebSocketOpen(ws, 100);

75-
76-

ws.emit("open");

77-
78-

await expect(opened).resolves.toBeUndefined();

79-

expect(ws.terminated).toBe(false);

80-

expect(ws.listenerCount("open")).toBe(0);

81-

expect(ws.listenerCount("error")).toBe(0);

82-

});

8336

});