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

推荐订阅源

Stack Overflow Blog
Stack Overflow Blog
Vercel News
Vercel News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
J
Java Code Geeks
M
MIT News - Artificial intelligence
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
MongoDB | Blog
MongoDB | Blog
G
Google Developers Blog
Engineering at Meta
Engineering at Meta
量子位
S
SegmentFault 最新的问题
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
A
About on SuperTechFans
P
Proofpoint News Feed
Last Week in AI
Last Week in AI
Recent Announcements
Recent Announcements
腾讯CDC
I
InfoQ
F
Fortinet All Blogs
Hugging Face - Blog
Hugging Face - Blog
Blog — PlanetScale
Blog — PlanetScale
H
Help Net Security
爱范儿
爱范儿

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 config writer ports · openclaw/o...
vincentkoc · 2026-06-19 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

1010

}

1111

return value;

1212

}

13+
14+

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

15+

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

16+

if (value > 65_535) {

17+

const text = String(env[name] ?? fallback).trim();

18+

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

19+

}

20+

return value;

21+

}

Original file line numberDiff line numberDiff line change

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

11

// Writes config fixtures for Codex media-path E2E scenarios.

22

import fs from "node:fs";

33

import path from "node:path";

4-

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

4+

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

55
66

function requireEnv(name) {

77

const value = process.env[name];

@@ -16,7 +16,7 @@ const stateDir = requireEnv("OPENCLAW_STATE_DIR");

1616

const workspaceDir = requireEnv("OPENCLAW_TEST_WORKSPACE_DIR");

1717

const token = requireEnv("OPENCLAW_GATEWAY_TOKEN");

1818

const timeoutSeconds = readPositiveIntEnv("OPENCLAW_CODEX_MEDIA_PATH_TIMEOUT_SECONDS", 180);

19-

const gatewayPort = readPositiveIntEnv("PORT", 18790);

19+

const gatewayPort = readTcpPortEnv("PORT", 18790);

2020
2121

const config = {

2222

gateway: {

Original file line numberDiff line numberDiff line change

@@ -1,22 +1,11 @@

11

// Config fixture writer commands for E2E scenarios.

22

import path from "node:path";

3+

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

34

import { requireArg, writeJson } from "./common.mjs";

45
5-

function readPositiveIntEnv(name, fallback) {

6-

const text = String(process.env[name] ?? fallback).trim();

7-

if (!/^\d+$/u.test(text)) {

8-

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

9-

}

10-

const value = Number(text);

11-

if (!Number.isSafeInteger(value) || value <= 0) {

12-

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

13-

}

14-

return value;

15-

}

16-
176

function writeConfig(kind) {

187

const configPath = requireArg(process.env.OPENCLAW_CONFIG_PATH, "OPENCLAW_CONFIG_PATH");

19-

const port = readPositiveIntEnv("PORT", 18789);

8+

const port = readTcpPortEnv("PORT", 18789);

209

const config =

2110

kind === "config-reload"

2211

? {

@@ -47,7 +36,7 @@ function writeConfig(kind) {

4736

ssrfPolicy: { allowedHostnames: ["127.0.0.1"] },

4837

profiles: {

4938

"docker-cdp": {

50-

cdpUrl: `http://127.0.0.1:${readPositiveIntEnv("CDP_PORT", 19222)}`,

39+

cdpUrl: `http://127.0.0.1:${readTcpPortEnv("CDP_PORT", 19222)}`,

5140

color: "#FF4500",

5241

},

5342

},

Original file line numberDiff line numberDiff line change

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

11

// Config writer for OpenAI chat tools E2E scenarios.

22

import fs from "node:fs";

33

import path from "node:path";

4+

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

45
56

function requireEnv(name) {

67

const value = process.env[name];

@@ -10,25 +11,13 @@ function requireEnv(name) {

1011

return value;

1112

}

1213
13-

function readPositiveIntEnv(name, fallback) {

14-

const text = String(process.env[name] ?? fallback).trim();

15-

if (!/^\d+$/u.test(text)) {

16-

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

17-

}

18-

const value = Number(text);

19-

if (!Number.isSafeInteger(value) || value <= 0) {

20-

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

21-

}

22-

return value;

23-

}

24-
2514

const configPath = requireEnv("OPENCLAW_CONFIG_PATH");

2615

const stateDir = requireEnv("OPENCLAW_STATE_DIR");

2716

const workspaceDir = requireEnv("OPENCLAW_TEST_WORKSPACE_DIR");

2817

const modelRef = requireEnv("OPENCLAW_OPENAI_CHAT_TOOLS_MODEL");

2918

const token = requireEnv("OPENCLAW_GATEWAY_TOKEN");

3019

const timeoutSeconds = readPositiveIntEnv("OPENCLAW_OPENAI_CHAT_TOOLS_TIMEOUT_SECONDS", 180);

31-

const gatewayPort = readPositiveIntEnv("PORT", 18789);

20+

const gatewayPort = readTcpPortEnv("PORT", 18789);

3221

const [providerId, modelId] = modelRef.split("/");

3322

if (providerId !== "openai" || !modelId) {

3423

throw new Error(`OPENCLAW_OPENAI_CHAT_TOOLS_MODEL must be openai/*, got ${modelRef}`);

Original file line numberDiff line numberDiff line change

@@ -129,6 +129,14 @@ describe("codex media path limits", () => {

129129

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

130130

expect(result.stderr).toContain("invalid OPENCLAW_CODEX_MEDIA_PATH_TIMEOUT_SECONDS: 1e3");

131131

});

132+
133+

it("rejects out-of-range write-config gateway ports", () => {

134+

const root = makeTempRoot();

135+

const result = runWriteConfig(root, { PORT: "65536" });

136+
137+

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

138+

expect(result.stderr).toContain("invalid PORT: 65536");

139+

});

132140

});

133141
134142

describe("codex media path fake app-server", () => {

Original file line numberDiff line numberDiff line change

@@ -44,6 +44,18 @@ describe("scripts/e2e/lib/fixture.mjs config commands", () => {

4444

}

4545

});

4646
47+

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

48+

const root = makeTempRoot();

49+

try {

50+

const result = runFixture(root, "config-reload", [], { PORT: "65536" });

51+
52+

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

53+

expect(result.stderr).toContain("invalid PORT: 65536");

54+

} finally {

55+

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

56+

}

57+

});

58+
4759

it("writes strict positive browser CDP ports into generated config", () => {

4860

const root = makeTempRoot();

4961

try {

@@ -70,6 +82,18 @@ describe("scripts/e2e/lib/fixture.mjs config commands", () => {

7082

}

7183

});

7284
85+

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

86+

const root = makeTempRoot();

87+

try {

88+

const result = runFixture(root, "browser-cdp", [], { CDP_PORT: "65536" });

89+
90+

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

91+

expect(result.stderr).toContain("invalid CDP_PORT: 65536");

92+

} finally {

93+

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

94+

}

95+

});

96+
7397

it("rejects loose Open WebUI provider timeout values", () => {

7498

const root = makeTempRoot();

7599

try {

Original file line numberDiff line numberDiff line change

@@ -236,6 +236,18 @@ describe("scripts/e2e/lib/openai-chat-tools/client.mjs", () => {

236236

}

237237

});

238238
239+

it("rejects out-of-range write-config gateway ports", () => {

240+

const root = mkdtempSync(path.join(tmpdir(), "openclaw-openai-chat-tools-"));

241+

try {

242+

const result = runWriteConfig(root, { PORT: "65536" });

243+
244+

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

245+

expect(result.stderr).toContain("invalid PORT: 65536");

246+

} finally {

247+

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

248+

}

249+

});

250+
239251

it("writes strict positive timeout and port values into generated config", () => {

240252

const root = mkdtempSync(path.join(tmpdir(), "openclaw-openai-chat-tools-"));

241253

try {