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

推荐订阅源

D
DataBreaches.Net
N
Netflix TechBlog - Medium
P
Proofpoint News Feed
D
Docker
J
Java Code Geeks
L
LangChain Blog
Microsoft Security Blog
Microsoft Security Blog
The GitHub Blog
The GitHub Blog
I
InfoQ
Stack Overflow Blog
Stack Overflow Blog
云风的 BLOG
云风的 BLOG
Engineering at Meta
Engineering at Meta
MongoDB | Blog
MongoDB | Blog
月光博客
月光博客
T
Tailwind CSS Blog
M
MIT News - Artificial intelligence
Blog — PlanetScale
Blog — PlanetScale
Google DeepMind News
Google DeepMind News
腾讯CDC
罗磊的独立博客
U
Unit 42
爱范儿
爱范儿
Vercel News
Vercel News
MyScale Blog
MyScale 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(gateway): fall back to managed path when inbound PDF ...
amknight · 2026-06-16 · via Recent Commits to openclaw:main

@@ -5395,7 +5395,10 @@ describe("chat directive tag stripping for non-streaming final payloads", () =>

53955395

expect(mockState.lastDispatchCtx?.MediaStaged).toBe(true);

53965396

});

539753975398-

it("wraps stageSandboxMedia infrastructure errors as 5xx UNAVAILABLE and cleans up media-store files", async () => {

5398+

it("wraps stageSandboxMedia infrastructure errors as 5xx UNAVAILABLE for non-fallback refs and cleans up media-store files", async () => {

5399+

// A non-PDF managed offload cannot fall back to a managed path, so an infra

5400+

// staging error stays a retryable 5xx. (Managed PDFs fall back instead — see

5401+

// the staging-throw fallback test below.) #90097

53995402

createTranscriptFixture("openclaw-chat-send-stage-unavailable-");

54005403

mockState.finalText = "ok";

54015404

mockState.sessionEntry = {

@@ -5411,7 +5414,10 @@ describe("chat directive tag stripping for non-streaming final payloads", () =>

54115414

},

54125415

];

54135416

mockState.savedMediaResults = [

5414-

{ path: "/home/user/.openclaw/media/inbound/report.pdf", contentType: "application/pdf" },

5417+

{

5418+

path: "/home/user/.openclaw/media/inbound/report.bin",

5419+

contentType: "application/octet-stream",

5420+

},

54155421

];

54165422

mockState.sandboxWorkspace = { workspaceDir: "/sandbox/workspace" };

54175423

const stageError = Object.assign(new Error("ENOSPC: no space left on device"), {

@@ -5422,7 +5428,7 @@ describe("chat directive tag stripping for non-streaming final payloads", () =>

54225428

mockState.stageSandboxMediaError = stageError;

54235429

const respond = vi.fn();

54245430

const context = createChatContext();

5425-

const pdf = Buffer.from("%PDF-1.4\n%µ¶\n1 0 obj\n<<>>\nendobj\n").toString("base64");

5431+

const binPayload = Buffer.from("OPENCLAW-BINARY\n").toString("base64");

5426543254275433

await runNonStreamingChatSend({

54285434

context,

@@ -5433,9 +5439,9 @@ describe("chat directive tag stripping for non-streaming final payloads", () =>

54335439

attachments: [

54345440

{

54355441

type: "file",

5436-

mimeType: "application/pdf",

5437-

fileName: "report.pdf",

5438-

content: pdf,

5442+

mimeType: "application/octet-stream",

5443+

fileName: "report.bin",

5444+

content: binPayload,

54395445

},

54405446

],

54415447

},

@@ -5518,7 +5524,9 @@ describe("chat directive tag stripping for non-streaming final payloads", () =>

55185524

// absolute path, so a simple `stagedPaths.length === nonImage.length`

55195525

// check could not detect when one of the files silently fell out (e.g. a

55205526

// file between the RPC cap and the staging cap). Prestage must compare

5521-

// the returned `staged` map against the input refs.

5527+

// the returned `staged` map against the input refs. Non-PDF refs cannot fall

5528+

// back to a managed path, so an incomplete stage stays a 5xx. (Managed PDFs

5529+

// fall back instead — see the staging-skip fallback test below.) #90097

55225530

createTranscriptFixture("openclaw-chat-send-partial-stage-");

55235531

mockState.finalText = "ok";

55245532

mockState.sessionEntry = {

@@ -5534,15 +5542,21 @@ describe("chat directive tag stripping for non-streaming final payloads", () =>

55345542

},

55355543

];

55365544

mockState.savedMediaResults = [

5537-

{ path: "/home/user/.openclaw/media/inbound/report.pdf", contentType: "application/pdf" },

5538-

{ path: "/home/user/.openclaw/media/inbound/oversize.pdf", contentType: "application/pdf" },

5545+

{

5546+

path: "/home/user/.openclaw/media/inbound/report.bin",

5547+

contentType: "application/octet-stream",

5548+

},

5549+

{

5550+

path: "/home/user/.openclaw/media/inbound/data.bin",

5551+

contentType: "application/octet-stream",

5552+

},

55395553

];

55405554

mockState.sandboxWorkspace = { workspaceDir: "/sandbox/workspace" };

5541-

mockState.stagedRelativePaths = ["media/inbound/report.pdf", "media/inbound/oversize.pdf"];

5542-

mockState.unstagedSources = ["/home/user/.openclaw/media/inbound/oversize.pdf"];

5555+

mockState.stagedRelativePaths = ["media/inbound/report.bin", "media/inbound/data.bin"];

5556+

mockState.unstagedSources = ["/home/user/.openclaw/media/inbound/data.bin"];

55435557

const respond = vi.fn();

55445558

const context = createChatContext();

5545-

const pdf = Buffer.from("%PDF-1.4\n").toString("base64");

5559+

const binPayload = Buffer.from("OPENCLAW-BINARY\n").toString("base64");

5546556055475561

await runNonStreamingChatSend({

55485562

context,

@@ -5551,8 +5565,18 @@ describe("chat directive tag stripping for non-streaming final payloads", () =>

55515565

message: "read these",

55525566

requestParams: {

55535567

attachments: [

5554-

{ type: "file", mimeType: "application/pdf", fileName: "report.pdf", content: pdf },

5555-

{ type: "file", mimeType: "application/pdf", fileName: "oversize.pdf", content: pdf },

5568+

{

5569+

type: "file",

5570+

mimeType: "application/octet-stream",

5571+

fileName: "report.bin",

5572+

content: binPayload,

5573+

},

5574+

{

5575+

type: "file",

5576+

mimeType: "application/octet-stream",

5577+

fileName: "data.bin",

5578+

content: binPayload,

5579+

},

55565580

],

55575581

},

55585582

expectBroadcast: false,

@@ -5634,6 +5658,188 @@ describe("chat directive tag stripping for non-streaming final payloads", () =>

56345658

expect(mockState.deleteMediaBufferCalls).toEqual([]);

56355659

});

563656605661+

it("falls back to the managed path when sandbox staging throws for an already-managed PDF", async () => {

5662+

// #90097: an already-managed inbound PDF below the staging cap normally

5663+

// stages into the sandbox, but if staging throws (e.g. workspace mkdir

5664+

// ENOSPC) the PDF must still reach the agent via its managed media path

5665+

// instead of failing the send — host-side media-understanding reads it from

5666+

// the media-store root.

5667+

createTranscriptFixture("openclaw-chat-send-managed-pdf-stage-throw-");

5668+

mockState.finalText = "ok";

5669+

mockState.sessionEntry = {

5670+

modelProvider: "test-provider",

5671+

model: "vision-model",

5672+

};

5673+

mockState.modelCatalog = [

5674+

{

5675+

provider: "test-provider",

5676+

id: "vision-model",

5677+

name: "Vision model",

5678+

input: ["text", "image"],

5679+

},

5680+

];

5681+

mockState.savedMediaResults = [

5682+

{ path: "/home/user/.openclaw/media/inbound/report.pdf", contentType: "application/pdf" },

5683+

];

5684+

mockState.sandboxWorkspace = { workspaceDir: "/sandbox/workspace" };

5685+

mockState.stageSandboxMediaError = Object.assign(new Error("ENOSPC: no space left on device"), {

5686+

code: "ENOSPC",

5687+

});

5688+

const respond = vi.fn();

5689+

const context = createChatContext();

5690+

// Small PDF (below the 5MB staging cap) so it takes the staging path, not the

5691+

// oversized pass-through path.

5692+

const pdf = Buffer.from("%PDF-1.4\n%µ¶\nendobj\n").toString("base64");

5693+5694+

await runNonStreamingChatSend({

5695+

context,

5696+

respond,

5697+

idempotencyKey: "idem-managed-pdf-stage-throw",

5698+

message: "read this",

5699+

requestParams: {

5700+

attachments: [

5701+

{ type: "file", mimeType: "application/pdf", fileName: "report.pdf", content: pdf },

5702+

],

5703+

},

5704+

expectBroadcast: false,

5705+

});

5706+5707+

// Falls back to the absolute managed path; nothing staged (so no workspace

5708+

// dir) and the media-store entry is preserved for host-side extraction.

5709+

expect(mockState.lastDispatchCtx?.MediaPath).toBe(

5710+

"/home/user/.openclaw/media/inbound/report.pdf",

5711+

);

5712+

expect(mockState.lastDispatchCtx?.MediaPaths).toEqual([

5713+

"/home/user/.openclaw/media/inbound/report.pdf",

5714+

]);

5715+

expect(mockState.lastDispatchCtx?.MediaType).toBe("application/pdf");

5716+

expect(mockState.lastDispatchCtx?.MediaWorkspaceDir).toBeUndefined();

5717+

expect(mockState.lastDispatchCtx?.MediaStaged).toBe(true);

5718+

expect(mockState.deleteMediaBufferCalls).toEqual([]);

5719+

});

5720+5721+

it("falls back to the managed path when sandbox staging silently skips an already-managed PDF", async () => {

5722+

// #90097: stageSandboxMedia can silently skip a file (keeping its absolute

5723+

// path) and return it absent from the staged map. An already-managed PDF in

5724+

// that state falls back to its managed media path rather than failing the

5725+

// send; the staged workspace dir is still carried for any files that landed.

5726+

createTranscriptFixture("openclaw-chat-send-managed-pdf-stage-skip-");

5727+

mockState.finalText = "ok";

5728+

mockState.sessionEntry = {

5729+

modelProvider: "test-provider",

5730+

model: "vision-model",

5731+

};

5732+

mockState.modelCatalog = [

5733+

{

5734+

provider: "test-provider",

5735+

id: "vision-model",

5736+

name: "Vision model",

5737+

input: ["text", "image"],

5738+

},

5739+

];

5740+

mockState.savedMediaResults = [

5741+

{ path: "/home/user/.openclaw/media/inbound/report.pdf", contentType: "application/pdf" },

5742+

];

5743+

mockState.sandboxWorkspace = { workspaceDir: "/sandbox/workspace" };

5744+

// No stagedRelativePaths → staged map is empty and ctx.MediaPaths keeps the

5745+

// absolute path, mirroring stageSandboxMedia silently skipping the file.

5746+

const respond = vi.fn();

5747+

const context = createChatContext();

5748+

const pdf = Buffer.from("%PDF-1.4\n%µ¶\nendobj\n").toString("base64");

5749+5750+

await runNonStreamingChatSend({

5751+

context,

5752+

respond,

5753+

idempotencyKey: "idem-managed-pdf-stage-skip",

5754+

message: "read this",

5755+

requestParams: {

5756+

attachments: [

5757+

{ type: "file", mimeType: "application/pdf", fileName: "report.pdf", content: pdf },

5758+

],

5759+

},

5760+

expectBroadcast: false,

5761+

});

5762+5763+

expect(mockState.lastDispatchCtx?.MediaPath).toBe(

5764+

"/home/user/.openclaw/media/inbound/report.pdf",

5765+

);

5766+

expect(mockState.lastDispatchCtx?.MediaPaths).toEqual([

5767+

"/home/user/.openclaw/media/inbound/report.pdf",

5768+

]);

5769+

expect(mockState.lastDispatchCtx?.MediaType).toBe("application/pdf");

5770+

expect(mockState.lastDispatchCtx?.MediaWorkspaceDir).toBe("/sandbox/workspace");

5771+

expect(mockState.lastDispatchCtx?.MediaStaged).toBe(true);

5772+

expect(mockState.deleteMediaBufferCalls).toEqual([]);

5773+

});

5774+5775+

it("still fails the send when staging skips a non-PDF in a mixed managed batch", async () => {

5776+

// #90097: the PDF fallback is per-ref. A managed PDF that stages does not

5777+

// rescue a sibling non-PDF that silently fell out of staging; that batch must

5778+

// still surface a retryable 5xx and clean up every offloaded entry.

5779+

createTranscriptFixture("openclaw-chat-send-mixed-stage-skip-");

5780+

mockState.finalText = "ok";

5781+

mockState.sessionEntry = {

5782+

modelProvider: "test-provider",

5783+

model: "vision-model",

5784+

};

5785+

mockState.modelCatalog = [

5786+

{

5787+

provider: "test-provider",

5788+

id: "vision-model",

5789+

name: "Vision model",

5790+

input: ["text", "image"],

5791+

},

5792+

];

5793+

mockState.savedMediaResults = [

5794+

{ path: "/home/user/.openclaw/media/inbound/report.pdf", contentType: "application/pdf" },

5795+

{

5796+

path: "/home/user/.openclaw/media/inbound/data.bin",

5797+

contentType: "application/octet-stream",

5798+

},

5799+

];

5800+

mockState.sandboxWorkspace = { workspaceDir: "/sandbox/workspace" };

5801+

mockState.stagedRelativePaths = ["media/inbound/report.pdf", "media/inbound/data.bin"];

5802+

mockState.unstagedSources = ["/home/user/.openclaw/media/inbound/data.bin"];

5803+

const respond = vi.fn();

5804+

const context = createChatContext();

5805+

const pdf = Buffer.from("%PDF-1.4\n").toString("base64");

5806+

const bin = Buffer.from("OPENCLAW-BINARY\n").toString("base64");

5807+5808+

await runNonStreamingChatSend({

5809+

context,

5810+

respond,

5811+

idempotencyKey: "idem-mixed-stage-skip",

5812+

message: "read these",

5813+

requestParams: {

5814+

attachments: [

5815+

{ type: "file", mimeType: "application/pdf", fileName: "report.pdf", content: pdf },

5816+

{

5817+

type: "file",

5818+

mimeType: "application/octet-stream",

5819+

fileName: "data.bin",

5820+

content: bin,

5821+

},

5822+

],

5823+

},

5824+

expectBroadcast: false,

5825+

waitFor: "none",

5826+

});

5827+5828+

expect(mockState.lastDispatchCtx).toBeUndefined();

5829+

expect(respond).toHaveBeenCalledTimes(1);

5830+

const [ok, payload, error] = lastRespondCall(respond) ?? [];

5831+

expect(ok).toBe(false);

5832+

expect(payload).toBeUndefined();

5833+

expect(error?.code).toBe(ErrorCodes.UNAVAILABLE);

5834+

expect(responseErrorMessage(error)).toMatch(/staging incomplete/i);

5835+

// The whole batch is cleaned up — including the PDF that would have fallen

5836+

// back on its own — because the non-PDF cannot be delivered.

5837+

expect(mockState.deleteMediaBufferCalls.map((c) => c.id).toSorted()).toEqual([

5838+

"saved-media",

5839+

"saved-media",

5840+

]);

5841+

});

5842+56375843

it("rejects sandbox-oversized non-image attachments as 4xx before staging", async () => {

56385844

// Regression: resolveChatAttachmentMaxBytes defaults to 20MB, but

56395845

// stageSandboxMedia caps each file at STAGED_MEDIA_MAX_BYTES (5MB) and