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

推荐订阅源

B
Blog RSS Feed
Jina AI
Jina AI
雷峰网
雷峰网
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
博客园 - 司徒正美
罗磊的独立博客
J
Java Code Geeks
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
Vercel News
Vercel News
A
About on SuperTechFans
I
InfoQ
D
DataBreaches.Net
爱范儿
爱范儿
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
aimingoo的专栏
aimingoo的专栏
宝玉的分享
宝玉的分享
P
Proofpoint News Feed
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(pdf): bound remote body reads · openclaw/openclaw@248...
luoyanglang · 2026-05-21 · via Recent Commits to openclaw:main

@@ -10,6 +10,7 @@ import { resetPluginRuntimeStateForTest, setActivePluginRegistry } from "../plug

10101111

let LocalMediaAccessError: typeof import("./web-media.js").LocalMediaAccessError;

1212

let loadWebMedia: typeof import("./web-media.js").loadWebMedia;

13+

let loadWebMediaRaw: typeof import("./web-media.js").loadWebMediaRaw;

1314

let optimizeImageToJpeg: typeof import("./web-media.js").optimizeImageToJpeg;

14151516

const TINY_PNG_BASE64 =

@@ -39,7 +40,8 @@ function installCanvasMediaResolver() {

3940

}

40414142

beforeAll(async () => {

42-

({ LocalMediaAccessError, loadWebMedia, optimizeImageToJpeg } = await import("./web-media.js"));

43+

({ LocalMediaAccessError, loadWebMedia, loadWebMediaRaw, optimizeImageToJpeg } =

44+

await import("./web-media.js"));

4345

fixtureRoot = await fs.mkdtemp(path.join(resolvePreferredOpenClawTmpDir(), "web-media-core-"));

4446

tinyPngFile = path.join(fixtureRoot, "tiny.png");

4547

await fs.writeFile(tinyPngFile, Buffer.from(TINY_PNG_BASE64, "base64"));

@@ -75,6 +77,47 @@ afterAll(async () => {

7577

});

76787779

describe("loadWebMedia", () => {

80+

function makeStallingFetch(firstChunk: Uint8Array) {

81+

return vi.fn(

82+

async () =>

83+

new Response(

84+

new ReadableStream<Uint8Array>({

85+

start(controller) {

86+

controller.enqueue(firstChunk);

87+

},

88+

}),

89+

{

90+

status: 200,

91+

headers: { "content-type": "application/pdf" },

92+

},

93+

),

94+

);

95+

}

96+97+

async function expectWebMediaIdleTimeout(

98+

createLoadPromise: () => Promise<unknown>,

99+

idleTimeoutMs: number,

100+

) {

101+

vi.useFakeTimers();

102+

try {

103+

const outcome = createLoadPromise().then(

104+

() => ({ status: "resolved" as const }),

105+

(error: unknown) => ({ status: "rejected" as const, error }),

106+

);

107+

await vi.advanceTimersByTimeAsync(idleTimeoutMs + 5);

108+

await expect(

109+

Promise.race([outcome, Promise.resolve({ status: "pending" as const })]),

110+

).resolves.toMatchObject({ status: "rejected" });

111+

const result = await outcome;

112+

expect(result.status).toBe("rejected");

113+

if (result.status === "rejected") {

114+

expect(String(result.error)).toMatch(/stalled|no data received/i);

115+

}

116+

} finally {

117+

vi.useRealTimers();

118+

}

119+

}

120+78121

function createLocalWebMediaOptions() {

79122

return {

80123

maxBytes: 1024 * 1024,

@@ -689,6 +732,43 @@ describe("loadWebMedia", () => {

689732

}

690733

});

691734735+

it("applies the shared remote read idle timeout for raw web media loads", async () => {

736+

const readIdleTimeoutMs = 20;

737+

const fetchImpl = makeStallingFetch(new Uint8Array([0x25, 0x50, 0x44, 0x46]));

738+739+

await expectWebMediaIdleTimeout(

740+

() =>

741+

loadWebMediaRaw("https://example.test/stalled.pdf", {

742+

maxBytes: 1024 * 1024,

743+

fetchImpl,

744+

readIdleTimeoutMs,

745+

ssrfPolicy: { allowedHostnames: ["example.test"] },

746+

}),

747+

readIdleTimeoutMs,

748+

);

749+

});

750+751+

it("loads a valid remote PDF when the raw web media read stays active", async () => {

752+

const fetchImpl = vi.fn(

753+

async () =>

754+

new Response(Buffer.from("%PDF-1.4\n%%EOF"), {

755+

status: 200,

756+

headers: { "content-type": "application/pdf" },

757+

}),

758+

);

759+760+

const result = await loadWebMediaRaw("https://example.test/ok.pdf", {

761+

maxBytes: 1024 * 1024,

762+

fetchImpl,

763+

readIdleTimeoutMs: 20,

764+

ssrfPolicy: { allowedHostnames: ["example.test"] },

765+

});

766+767+

expect(result.kind).toBe("document");

768+

expect(result.contentType).toBe("application/pdf");

769+

expect(result.buffer.toString()).toContain("%PDF-1.4");

770+

});

771+692772

it("rejects unsupported media store URI locations", async () => {

693773

await expectLoadWebMediaErrorCode(

694774

loadWebMedia("media://outbound/tiny.png"),