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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
U
Unit 42
IT之家
IT之家
Y
Y Combinator Blog
T
Tailwind CSS Blog
B
Blog
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
I
InfoQ
J
Java Code Geeks
F
Fortinet All Blogs
T
The Blog of Author Tim Ferriss
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
H
Hackread – Cybersecurity News, Data Breaches, AI and More
人人都是产品经理
人人都是产品经理
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
GbyAI
GbyAI
博客园 - 司徒正美
The GitHub Blog
The GitHub Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
L
LangChain 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(test): stabilize tooling guard probes (#95114) · open...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -996,25 +996,31 @@ export async function readBoundedResponseText(response, byteLimit, timeoutPromis

996996

}

997997

const chunks = [];

998998

let totalBytes = 0;

999-

for (;;) {

1000-

const read = reader.read();

1001-

const { done, value } = await withOptionalTimeout(

1002-

read,

1003-

timeoutPromise?.catch((error) => {

1004-

cancelReaderSoon(reader);

1005-

throw error;

1006-

}),

1007-

);

1008-

if (done) {

1009-

break;

1010-

}

1011-

const chunk = Buffer.from(value);

1012-

totalBytes += chunk.byteLength;

1013-

if (totalBytes > resolvedByteLimit) {

1014-

await reader.cancel().catch(() => undefined);

1015-

throw createFetchBodyTooLargeError(resolvedByteLimit);

999+

try {

1000+

for (;;) {

1001+

const read = reader.read();

1002+

const { done, value } = await withOptionalTimeout(

1003+

read,

1004+

timeoutPromise?.catch((error) => {

1005+

cancelReaderSoon(reader);

1006+

throw error;

1007+

}),

1008+

);

1009+

if (done) {

1010+

break;

1011+

}

1012+

const chunk = Buffer.from(value);

1013+

totalBytes += chunk.byteLength;

1014+

if (totalBytes > resolvedByteLimit) {

1015+

await reader.cancel().catch(() => undefined);

1016+

throw createFetchBodyTooLargeError(resolvedByteLimit);

1017+

}

1018+

chunks.push(chunk);

10161019

}

1017-

chunks.push(chunk);

1020+

} finally {

1021+

try {

1022+

reader.releaseLock?.();

1023+

} catch {}

10181024

}

10191025

return Buffer.concat(chunks, totalBytes).toString("utf8");

10201026

}

Original file line numberDiff line numberDiff line change

@@ -1976,6 +1976,30 @@ describe("kitchen-sink RPC process sampling", () => {

19761976

);

19771977

});

19781978
1979+

it("releases HTTP probe response stream readers after bounded reads", async () => {

1980+

const releaseLock = vi.fn();

1981+

const response = {

1982+

headers: new Headers(),

1983+

body: {

1984+

getReader() {

1985+

return {

1986+

read: vi

1987+

.fn()

1988+

.mockResolvedValueOnce({ done: false, value: new TextEncoder().encode("ok") })

1989+

.mockResolvedValueOnce({ done: true }),

1990+

releaseLock,

1991+

};

1992+

},

1993+

},

1994+

text: vi.fn(async () => "not read"),

1995+

};

1996+
1997+

await expect(readBoundedResponseText(response, 1024)).resolves.toBe("ok");

1998+
1999+

expect(releaseLock).toHaveBeenCalledOnce();

2000+

expect(response.text).not.toHaveBeenCalled();

2001+

});

2002+
19792003

it("cancels stalled HTTP probe response streams when the timeout wins", async () => {

19802004

let canceled = false;

19812005

const timeoutError = Object.assign(new Error("fetch probe timed out"), {

Original file line numberDiff line numberDiff line change

@@ -136,14 +136,16 @@ describe("security-sensitive guard workflow", () => {

136136

it("uses a dedicated checked-in script and detects the intended file surfaces", () => {

137137

const workflow = readFileSync(WORKFLOW, "utf8");

138138

const script = readFileSync("scripts/github/security-sensitive-guard.mjs", "utf8");

139+

const sharedScript = readFileSync("scripts/github/guard-shared.mjs", "utf8");

140+

const guardSources = `${script}\n${sharedScript}`;

139141
140142

expect(workflow).toContain("scripts/github/security-sensitive-guard.mjs");

141143

expect(script).toContain('"security-sensitive-changed"');

142144

expect(script).toContain('path: ".gitignore"');

143145

expect(script).toContain(".env");

144146

expect(script).toContain("/allow-security-sensitive-change");

145147

expect(script).toContain("openclaw-secops");

146-

expect(script).toContain("/memberships/");

148+

expect(guardSources).toContain("/memberships/");

147149

expect(script).toContain("A later push requires a fresh approval.");

148150

expect(script).toContain("process.exitCode = 1");

149151

});