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

推荐订阅源

Y
Y Combinator Blog
V
V2EX
Jina AI
Jina AI
爱范儿
爱范儿
M
MIT News - Artificial intelligence
量子位
L
LangChain Blog
Google DeepMind News
Google DeepMind News
酷 壳 – CoolShell
酷 壳 – CoolShell
罗磊的独立博客
腾讯CDC
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss

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(media): decode remote URL fallback filenames (#84108)...
clawsweeper · 2026-05-19 · via Recent Commits to openclaw:main

@@ -583,6 +583,70 @@ describe("readRemoteMediaBuffer", () => {

583583

await expect(fs.readFile(saved.path)).resolves.toStrictEqual(Buffer.from([1, 2, 3, 4]));

584584

});

585585586+

it("decodes URL path basenames when deriving remote media filenames", async () => {

587+

const fetchImpl = vi.fn(

588+

async () =>

589+

new Response(makeStream([new Uint8Array([1, 2, 3])]), {

590+

status: 200,

591+

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

592+

}),

593+

);

594+595+

const saved = await saveRemoteMedia({

596+

url: "https://example.com/files/My%20Report.pdf",

597+

fetchImpl,

598+

lookupFn: makeLookupFn(),

599+

maxBytes: 8,

600+

});

601+602+

expect(saved.fileName).toBe("My Report.pdf");

603+

});

604+605+

it("keeps raw URL path basenames when percent escapes are malformed", async () => {

606+

const fetchImpl = vi.fn(

607+

async () =>

608+

new Response(makeStream([new Uint8Array([1, 2, 3])]), {

609+

status: 200,

610+

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

611+

}),

612+

);

613+614+

const saved = await saveRemoteMedia({

615+

url: "https://example.com/files/bad%E0%A4%A.pdf",

616+

fetchImpl,

617+

lookupFn: makeLookupFn(),

618+

maxBytes: 8,

619+

});

620+621+

expect(saved.fileName).toBe("bad%E0%A4%A.pdf");

622+

});

623+624+

it.each([

625+

["https://example.com/files/reports%2FQ1.pdf", "reports_Q1.pdf"],

626+

["https://example.com/files/reports%5CQ1.pdf", "reports_Q1.pdf"],

627+

["https://example.com/files/reports%2F%2FQ1.pdf", "reports__Q1.pdf"],

628+

])(

629+

"keeps decoded URL fallback separators inside the selected basename",

630+

async (url, fileName) => {

631+

const fetchImpl = vi.fn(

632+

async () =>

633+

new Response(makeStream([new Uint8Array([1, 2, 3])]), {

634+

status: 200,

635+

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

636+

}),

637+

);

638+639+

const saved = await saveRemoteMedia({

640+

url,

641+

fetchImpl,

642+

lookupFn: makeLookupFn(),

643+

maxBytes: 8,

644+

});

645+646+

expect(saved.fileName).toBe(fileName);

647+

},

648+

);

649+586650

it("saves bodyless successful responses without unbounded buffering", async () => {

587651

const saved = await saveResponseMedia(new Response(null, { status: 204 }), {

588652

sourceUrl: "https://example.com/empty",