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

推荐订阅源

The GitHub Blog
The GitHub Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
N
Netflix TechBlog - Medium
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页
宝玉的分享
宝玉的分享
Google DeepMind News
Google DeepMind News
B
Blog RSS Feed
Hugging Face - Blog
Hugging Face - Blog
量子位
Blog — PlanetScale
Blog — PlanetScale
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
阮一峰的网络日志
阮一峰的网络日志
D
Docker
罗磊的独立博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
云风的 BLOG
云风的 BLOG
IT之家
IT之家
MyScale Blog
MyScale Blog
Microsoft Azure Blog
Microsoft Azure 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(e2e): reject invalid mock fixture ports · openclaw/op...
vincentkoc · 2026-06-19 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,8 +1,8 @@

11

// Fixture HTTP server for browser CDP snapshot E2E scenarios.

22

import http from "node:http";

3-

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

3+

import { readTcpPortEnv } from "../env-limits.mjs";

44
5-

const port = readPositiveIntEnv("FIXTURE_PORT");

5+

const port = readTcpPortEnv("FIXTURE_PORT");

66
77

const html = `<!doctype html>

88

<html>

Original file line numberDiff line numberDiff line change

@@ -11,3 +11,13 @@ export function readPositiveIntEnv(name, fallback, env = process.env) {

1111

}

1212

return value;

1313

}

14+
15+

export function readTcpPortEnv(name, fallback, env = process.env) {

16+

const value = readPositiveIntEnv(name, fallback, env);

17+

if (value > 65_535) {

18+

const raw = env[name] ?? fallback;

19+

const text = raw == null ? "unset" : String(raw).trim();

20+

throw new Error(`invalid ${name}: ${text}`);

21+

}

22+

return value;

23+

}

Original file line numberDiff line numberDiff line change

@@ -1,6 +1,6 @@

11

// Mock server for minimal OpenAI web-search E2E scenarios.

22

import http from "node:http";

3-

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

3+

import { readTcpPortEnv } from "../env-limits.mjs";

44

import {

55

boundedRequestLogBody,

66

isRequestBodyTooLargeError,

@@ -10,7 +10,7 @@ import {

1010

writeSse,

1111

} from "../mock-openai-http.mjs";

1212
13-

const port = readPositiveIntEnv("MOCK_PORT");

13+

const port = readTcpPortEnv("MOCK_PORT");

1414

const requestLog = process.env.MOCK_REQUEST_LOG;

1515

const successMarker = process.env.SUCCESS_MARKER;

1616

const rawSchemaError = process.env.RAW_SCHEMA_ERROR;

Original file line numberDiff line numberDiff line change

@@ -2,9 +2,9 @@

22

import crypto from "node:crypto";

33

import fs from "node:fs";

44

import http from "node:http";

5-

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

5+

import { readPositiveIntEnv, readTcpPortEnv } from "../env-limits.mjs";

66
7-

const port = readPositiveIntEnv("CLICKCLACK_FIXTURE_PORT", 44181);

7+

const port = readTcpPortEnv("CLICKCLACK_FIXTURE_PORT", 44181);

88

const requestMaxBytes = readPositiveIntEnv("CLICKCLACK_FIXTURE_REQUEST_MAX_BYTES", 4 * 1024 * 1024);

99

const token = process.env.CLICKCLACK_FIXTURE_TOKEN ?? "clickclack-release-token";

1010

const statePath = process.env.CLICKCLACK_FIXTURE_STATE ?? "/tmp/openclaw-clickclack-fixture.json";

Original file line numberDiff line numberDiff line change

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

11

// Mock OpenAI-compatible server for broader E2E scenarios.

22

import { createHash } from "node:crypto";

33

import http from "node:http";

4-

import { readPositiveIntEnv } from "./lib/env-limits.mjs";

4+

import { readTcpPortEnv } from "./lib/env-limits.mjs";

55

import {

66

boundedRequestLogBody,

77

isRequestBodyTooLargeError,

@@ -13,8 +13,8 @@ import {

1313
1414

const port =

1515

process.env.MOCK_PORT != null

16-

? readPositiveIntEnv("MOCK_PORT")

17-

: readPositiveIntEnv("OPENCLAW_MOCK_OPENAI_PORT");

16+

? readTcpPortEnv("MOCK_PORT")

17+

: readTcpPortEnv("OPENCLAW_MOCK_OPENAI_PORT");

1818

const successMarker = process.env.SUCCESS_MARKER ?? "OPENCLAW_E2E_OK";

1919

const requestLog = process.env.MOCK_REQUEST_LOG;

2020
Original file line numberDiff line numberDiff line change

@@ -10,8 +10,13 @@ import { describe, expect, it } from "vitest";

1010
1111

const mockOpenAiPath = "scripts/e2e/mock-openai-server.mjs";

1212

const webSearchMockPath = "scripts/e2e/lib/openai-web-search-minimal/mock-server.mjs";

13+

const browserCdpFixturePath = "scripts/e2e/lib/browser-cdp-snapshot/fixture-server.mjs";

1314

const configReloadAssertPath = "scripts/e2e/lib/config-reload/assert-log.mjs";

15+

const clickClackFixturePath = "scripts/e2e/lib/release-user-journey/clickclack-fixture.mjs";

1416

const scrubbedEnvKeys = [

17+

"CLICKCLACK_FIXTURE_PORT",

18+

"CLICKCLACK_FIXTURE_REQUEST_MAX_BYTES",

19+

"FIXTURE_PORT",

1520

"MOCK_PORT",

1621

"MOCK_REQUEST_LOG",

1722

"OPENCLAW_CONFIG_RELOAD_LOG_MAX_READ_BYTES",

@@ -161,13 +166,41 @@ describe("e2e mock and config helper numeric limits", () => {

161166

expect(fallbackPort.stderr).toContain("invalid OPENCLAW_MOCK_OPENAI_PORT: 44080http");

162167

});

163168
169+

it("rejects out-of-range mock OpenAI port env values", () => {

170+

const mockPort = runScript(mockOpenAiPath, { MOCK_PORT: "65536" });

171+

expect(mockPort.status).not.toBe(0);

172+

expect(mockPort.stderr).toContain("invalid MOCK_PORT: 65536");

173+
174+

const fallbackPort = runScript(mockOpenAiPath, {

175+

OPENCLAW_MOCK_OPENAI_PORT: "65536",

176+

});

177+

expect(fallbackPort.status).not.toBe(0);

178+

expect(fallbackPort.stderr).toContain("invalid OPENCLAW_MOCK_OPENAI_PORT: 65536");

179+

});

180+
164181

it("rejects loose OpenAI web-search mock port env values", () => {

165182

const result = runScript(webSearchMockPath, { MOCK_PORT: "80http" });

166183
167184

expect(result.status).not.toBe(0);

168185

expect(result.stderr).toContain("invalid MOCK_PORT: 80http");

169186

});

170187
188+

it("rejects out-of-range fixture listener ports", () => {

189+

const webSearch = runScript(webSearchMockPath, { MOCK_PORT: "65536" });

190+

expect(webSearch.status).not.toBe(0);

191+

expect(webSearch.stderr).toContain("invalid MOCK_PORT: 65536");

192+
193+

const browserFixture = runScript(browserCdpFixturePath, { FIXTURE_PORT: "65536" });

194+

expect(browserFixture.status).not.toBe(0);

195+

expect(browserFixture.stderr).toContain("invalid FIXTURE_PORT: 65536");

196+
197+

const clickClack = runScript(clickClackFixturePath, {

198+

CLICKCLACK_FIXTURE_PORT: "65536",

199+

});

200+

expect(clickClack.status).not.toBe(0);

201+

expect(clickClack.stderr).toContain("invalid CLICKCLACK_FIXTURE_PORT: 65536");

202+

});

203+
171204

it("rejects loose config-reload log timeout env values", () => {

172205

const result = runScript(configReloadAssertPath, {

173206

OPENCLAW_CONFIG_RELOAD_LOG_TIMEOUT_MS: "30000ms",