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

推荐订阅源

博客园 - Franky
U
Unit 42
MyScale Blog
MyScale Blog
B
Blog
阮一峰的网络日志
阮一峰的网络日志
量子位
IT之家
IT之家
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
Recent Announcements
Recent Announcements
V
Visual Studio Blog
G
Google Developers Blog
Last Week in AI
Last Week in AI
雷峰网
雷峰网
博客园 - 聂微东
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
J
Java Code Geeks
博客园 - 司徒正美
Y
Y Combinator Blog
T
The Blog of Author Tim Ferriss
月光博客
月光博客
aimingoo的专栏
aimingoo的专栏

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(ui): keep chat attachment payloads out of state · ope...
steipete · 2026-04-28 · via Recent Commits to openclaw:main

@@ -2,6 +2,12 @@

2233

import { afterAll, afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest";

44

import type { ChatHost } from "./app-chat.ts";

5+

import {

6+

getChatAttachmentDataUrl,

7+

getChatAttachmentPreviewUrl,

8+

registerChatAttachmentPayload,

9+

resetChatAttachmentPayloadStoreForTest,

10+

} from "./chat/attachment-payload-store.ts";

511

import type { GatewaySessionRow, SessionsListResult } from "./types.ts";

612713

const { setLastActiveSessionKeyMock } = vi.hoisted(() => ({

@@ -18,6 +24,7 @@ let navigateChatInputHistory: typeof import("./app-chat.ts").navigateChatInputHi

1824

let handleAbortChat: typeof import("./app-chat.ts").handleAbortChat;

1925

let refreshChatAvatar: typeof import("./app-chat.ts").refreshChatAvatar;

2026

let clearPendingQueueItemsForRun: typeof import("./app-chat.ts").clearPendingQueueItemsForRun;

27+

let removeQueuedMessage: typeof import("./app-chat.ts").removeQueuedMessage;

21282229

async function loadChatHelpers(): Promise<void> {

2330

({

@@ -27,6 +34,7 @@ async function loadChatHelpers(): Promise<void> {

2734

handleAbortChat,

2835

refreshChatAvatar,

2936

clearPendingQueueItemsForRun,

37+

removeQueuedMessage,

3038

} = await import("./app-chat.ts"));

3139

}

3240

@@ -117,6 +125,7 @@ describe("refreshChatAvatar", () => {

117125

});

118126119127

afterEach(() => {

128+

resetChatAttachmentPayloadStoreForTest();

120129

vi.unstubAllGlobals();

121130

});

122131

@@ -729,6 +738,75 @@ describe("handleSendChat", () => {

729738

}),

730739

]);

731740

});

741+742+

it("drops sent attachment payload bytes while keeping the optimistic preview URL", async () => {

743+

vi.stubGlobal(

744+

"URL",

745+

class extends URL {

746+

static createObjectURL = vi.fn(() => "blob:brief");

747+

static revokeObjectURL = vi.fn();

748+

},

749+

);

750+

const request = vi.fn(async (method: string) => {

751+

if (method === "chat.send") {

752+

return { status: "started", runId: "run-1" };

753+

}

754+

throw new Error(`Unexpected request: ${method}`);

755+

});

756+

const file = new File(["%PDF-1.4\n"], "brief.pdf", { type: "application/pdf" });

757+

const attachment = registerChatAttachmentPayload({

758+

attachment: {

759+

id: "att-1",

760+

mimeType: "application/pdf",

761+

fileName: "brief.pdf",

762+

sizeBytes: file.size,

763+

},

764+

dataUrl: "data:application/pdf;base64,JVBERi0xLjQK",

765+

file,

766+

});

767+

const host = makeHost({

768+

client: { request } as unknown as ChatHost["client"],

769+

chatAttachments: [attachment],

770+

chatMessage: "summarize",

771+

});

772+773+

await handleSendChat(host);

774+775+

expect(getChatAttachmentDataUrl(attachment)).toBeNull();

776+

expect(getChatAttachmentPreviewUrl(attachment)).toBe("blob:brief");

777+

expect(JSON.stringify(host.chatMessages)).not.toContain("JVBERi0xLjQK");

778+

});

779+780+

it("releases queued attachment payloads when the queued item is removed", async () => {

781+

const revokeObjectURL = vi.fn();

782+

vi.stubGlobal(

783+

"URL",

784+

class extends URL {

785+

static createObjectURL = vi.fn(() => "blob:queued");

786+

static revokeObjectURL = revokeObjectURL;

787+

},

788+

);

789+

const file = new File(["%PDF-1.4\n"], "brief.pdf", { type: "application/pdf" });

790+

const attachment = registerChatAttachmentPayload({

791+

attachment: {

792+

id: "queued-att",

793+

mimeType: "application/pdf",

794+

fileName: "brief.pdf",

795+

sizeBytes: file.size,

796+

},

797+

dataUrl: "data:application/pdf;base64,JVBERi0xLjQK",

798+

file,

799+

});

800+

const host = makeHost({

801+

chatQueue: [{ id: "queued", text: "later", createdAt: 1, attachments: [attachment] }],

802+

});

803+804+

removeQueuedMessage(host, "queued");

805+806+

expect(host.chatQueue).toEqual([]);

807+

expect(getChatAttachmentDataUrl(attachment)).toBeNull();

808+

expect(revokeObjectURL).toHaveBeenCalledWith("blob:queued");

809+

});

732810

});

733811734812

describe("handleAbortChat", () => {