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

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
小众软件
小众软件
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
美团技术团队
博客园 - 三生石上(FineUI控件)
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - Franky
Microsoft Security Blog
Microsoft Security Blog
Y
Y Combinator Blog
A
About on SuperTechFans
The GitHub Blog
The GitHub Blog
U
Unit 42
H
Hackread – Cybersecurity News, Data Breaches, AI and More
云风的 BLOG
云风的 BLOG
IT之家
IT之家
MyScale Blog
MyScale Blog
V
Visual Studio Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
I
InfoQ
博客园 - 司徒正美

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 unsafe chat tools body lengths · opencla...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main

File tree

  • scripts/e2e/lib/openai-chat-tools

Original file line numberDiff line numberDiff line change

@@ -51,7 +51,7 @@ async function readBoundedResponseText(response, byteLimit, timeoutPromise) {

5151

const contentLength = response.headers?.get?.("content-length");

5252

if (contentLength && /^\d+$/u.test(contentLength)) {

5353

const parsedContentLength = Number(contentLength);

54-

if (Number.isSafeInteger(parsedContentLength) && parsedContentLength > byteLimit) {

54+

if (!Number.isSafeInteger(parsedContentLength) || parsedContentLength > byteLimit) {

5555

await response.body?.cancel().catch(() => undefined);

5656

throw new Error(`chat completions response body exceeded ${byteLimit} bytes`);

5757

}

Original file line numberDiff line numberDiff line change

@@ -3020,7 +3020,7 @@ export ROOT_DIR TMPDIR

30203020
30213021

source "$ROOT_DIR/scripts/lib/docker-e2e-logs.sh"

30223022
3023-

output="$(run_logged_print_heartbeat plugins-run 1 bash -c 'printf "captured container log\\\\n"; /bin/sleep 2')"

3023+

output="$(run_logged_print_heartbeat plugins-run 1 bash -c 'printf "captured container log\\\\n"; /bin/sleep 4')"

30243024

[[ "$output" = *"still running plugins-run ("* ]]

30253025

[[ "$output" = *"log bytes captured"* ]]

30263026

[[ "$output" = *"captured container log"* ]]

@@ -3195,28 +3195,18 @@ output="$(run_logged_print_heartbeat plugins-run 30 bash -c 'printf "quick conta

31953195

});

31963196
31973197

it("normalizes zero-padded Docker E2E log heartbeat intervals", () => {

3198-

const workDir = mkdtempSync(join(tmpdir(), "openclaw-docker-e2e-log-zero-heartbeat-"));

3199-
3200-

try {

3201-

const rootDir = process.cwd();

3202-

const script = `

3198+

const rootDir = process.cwd();

3199+

const script = `

32033200

set -euo pipefail

32043201

ROOT_DIR=${shellQuote(rootDir)}

3205-

TMPDIR=${shellQuote(workDir)}

3206-

export ROOT_DIR TMPDIR

3202+

export ROOT_DIR

32073203
32083204

source "$ROOT_DIR/scripts/lib/docker-e2e-logs.sh"

32093205
3210-

output="$(run_logged_print_heartbeat plugins-run 08 bash -c 'printf "captured container log\\\\n"; /bin/sleep 9')"

3211-

[[ "$output" = *"still running plugins-run (8s elapsed,"* ]]

3212-

[[ "$output" = *"log bytes captured"* ]]

3213-

[[ "$output" = *"captured container log"* ]]

3206+

[[ "$(docker_e2e_normalize_positive_int_value 'Docker E2E log heartbeat interval' 08)" = "8" ]]

32143207

`;

32153208
3216-

execFileSync("bash", ["-lc", script], { encoding: "utf8" });

3217-

} finally {

3218-

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

3219-

}

3209+

execFileSync("bash", ["-lc", script], { encoding: "utf8" });

32203210

});

32213211
32223212

it("normalizes zero-padded Docker E2E stats heartbeat intervals", () => {

Original file line numberDiff line numberDiff line change

@@ -404,4 +404,27 @@ describe("scripts/e2e/lib/openai-chat-tools/client.mjs", () => {

404404

server.close();

405405

}

406406

});

407+
408+

it("rejects unsafe declared chat completion body lengths before waiting on the stream", async () => {

409+

const server = createServer((_request, response) => {

410+

response.writeHead(200, {

411+

"content-length": "9007199254740993",

412+

"content-type": "application/json",

413+

});

414+

response.flushHeaders();

415+

});

416+

const port = await listen(server);

417+

try {

418+

const startedAt = Date.now();

419+

const result = await runClient(port, { OPENCLAW_OPENAI_CHAT_TOOLS_MAX_BODY_BYTES: "64" });

420+
421+

expect(result.error).toBeUndefined();

422+

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

423+

expect(result.stderr).toContain("chat completions response body exceeded 64 bytes");

424+

expect(result.stderr).not.toContain("timed out");

425+

expect(Date.now() - startedAt).toBeLessThan(3_500);

426+

} finally {

427+

server.close();

428+

}

429+

});

407430

});