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

推荐订阅源

D
DataBreaches.Net
罗磊的独立博客
雷峰网
雷峰网
量子位
V
Visual Studio Blog
Vercel News
Vercel News
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
宝玉的分享
宝玉的分享
月光博客
月光博客
Martin Fowler
Martin Fowler
aimingoo的专栏
aimingoo的专栏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
腾讯CDC
Engineering at Meta
Engineering at Meta
博客园 - Franky
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
Jina AI
Jina AI
A
About on SuperTechFans

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
refactor: trim duplicated transcript tests · openclaw/ope...
shakkernerd · 2026-05-27 · via Recent Commits to openclaw:main

@@ -1,4 +1,4 @@

1-

import { mkdir, mkdtemp, rm, writeFile } from "node:fs/promises";

1+

import { mkdtemp, rm, writeFile } from "node:fs/promises";

22

import os from "node:os";

33

import path from "node:path";

44

import { importFreshModule } from "openclaw/plugin-sdk/test-fixtures";

@@ -971,164 +971,6 @@ describe("runPreparedReply media-only handling", () => {

971971

expect(call.followupRun.imageOrder).toEqual(["inline"]);

972972

});

973973974-

it("persists staged relative media paths as workspace-backed paths", async () => {

975-

const tmpDir = await mkdtemp(path.join(os.tmpdir(), "openclaw-followup-image-"));

976-

cleanupPaths.push(tmpDir);

977-

const relativeImagePath = "media/inbound/inbound.png";

978-

const imagePath = path.join(tmpDir, relativeImagePath);

979-

await mkdir(path.dirname(imagePath), { recursive: true });

980-

await writeFile(

981-

imagePath,

982-

Buffer.from(

983-

"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mP8/x8AAwMCAO+/p9sAAAAASUVORK5CYII=",

984-

"base64",

985-

),

986-

);

987-988-

const result = await runPreparedReply(

989-

baseParams({

990-

ctx: {

991-

Body: "describe this",

992-

RawBody: "describe this",

993-

CommandBody: "describe this",

994-

MediaPaths: [relativeImagePath],

995-

MediaTypes: ["image/png"],

996-

MediaWorkspaceDir: tmpDir,

997-

OriginatingChannel: "telegram",

998-

OriginatingTo: "42",

999-

ChatType: "direct",

1000-

},

1001-

sessionCtx: {

1002-

Body: "describe this",

1003-

BodyStripped: "describe this",

1004-

Provider: "telegram",

1005-

OriginatingChannel: "telegram",

1006-

OriginatingTo: "42",

1007-

ChatType: "direct",

1008-

MediaPaths: [relativeImagePath],

1009-

MediaTypes: ["image/png"],

1010-

MediaWorkspaceDir: tmpDir,

1011-

},

1012-

}),

1013-

);

1014-1015-

expect(result).toEqual({ text: "ok" });

1016-

const call = requireRunReplyAgentCall();

1017-

expect(call.followupRun.userTurnTranscriptRecorder?.message).toMatchObject({

1018-

role: "user",

1019-

content: "describe this",

1020-

MediaPath: imagePath,

1021-

MediaPaths: [imagePath],

1022-

MediaType: "image/png",

1023-

MediaTypes: ["image/png"],

1024-

});

1025-

});

1026-1027-

it("persists clean media captions instead of model-only media notes", async () => {

1028-

const tmpDir = await mkdtemp(path.join(os.tmpdir(), "openclaw-followup-image-"));

1029-

cleanupPaths.push(tmpDir);

1030-

const imagePath = path.join(tmpDir, "inbound.png");

1031-

await writeFile(

1032-

imagePath,

1033-

Buffer.from(

1034-

"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mP8/x8AAwMCAO+/p9sAAAAASUVORK5CYII=",

1035-

"base64",

1036-

),

1037-

);

1038-1039-

await runPreparedReply(

1040-

baseParams({

1041-

ctx: {

1042-

Body: "What is in this image?",

1043-

RawBody: "What is in this image?",

1044-

CommandBody: "What is in this image?",

1045-

MediaPaths: [imagePath],

1046-

MediaTypes: ["image/png"],

1047-

MediaWorkspaceDir: tmpDir,

1048-

OriginatingChannel: "telegram",

1049-

OriginatingTo: "42",

1050-

ChatType: "direct",

1051-

},

1052-

sessionCtx: {

1053-

Body: "[media attached: media://inbound/a.png (image/png)]\nTo send an image back, prefer the message tool (media/path/filePath).\nWhat is in this image?",

1054-

BodyStripped:

1055-

"[media attached: media://inbound/a.png (image/png)]\nTo send an image back, prefer the message tool (media/path/filePath).\nWhat is in this image?",

1056-

Provider: "telegram",

1057-

OriginatingChannel: "telegram",

1058-

OriginatingTo: "42",

1059-

ChatType: "direct",

1060-

MediaPaths: [imagePath],

1061-

MediaTypes: ["image/png"],

1062-

MediaWorkspaceDir: tmpDir,

1063-

},

1064-

}),

1065-

);

1066-1067-

const call = requireRunReplyAgentCall();

1068-

expect(call.followupRun.userTurnTranscriptRecorder?.message).toMatchObject({

1069-

role: "user",

1070-

content: "What is in this image?",

1071-

MediaPath: imagePath,

1072-

MediaPaths: [imagePath],

1073-

MediaType: "image/png",

1074-

MediaTypes: ["image/png"],

1075-

});

1076-

const persistedContent = call.followupRun.userTurnTranscriptRecorder?.message?.content;

1077-

expect(persistedContent).toBe("What is in this image?");

1078-

expect(persistedContent).not.toContain("media attached");

1079-

expect(persistedContent).not.toContain("message tool");

1080-

});

1081-1082-

it("uses a media-only transcript label for exact media placeholders", async () => {

1083-

const tmpDir = await mkdtemp(path.join(os.tmpdir(), "openclaw-followup-image-"));

1084-

cleanupPaths.push(tmpDir);

1085-

const imagePath = path.join(tmpDir, "inbound.png");

1086-

await writeFile(

1087-

imagePath,

1088-

Buffer.from(

1089-

"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mP8/x8AAwMCAO+/p9sAAAAASUVORK5CYII=",

1090-

"base64",

1091-

),

1092-

);

1093-1094-

await runPreparedReply(

1095-

baseParams({

1096-

ctx: {

1097-

Body: "<media:image>",

1098-

RawBody: "<media:image>",

1099-

CommandBody: "<media:image>",

1100-

MediaPaths: [imagePath],

1101-

MediaTypes: ["image/png"],

1102-

MediaWorkspaceDir: tmpDir,

1103-

OriginatingChannel: "telegram",

1104-

OriginatingTo: "42",

1105-

ChatType: "direct",

1106-

},

1107-

sessionCtx: {

1108-

Body: "<media:image>",

1109-

BodyStripped: "<media:image>",

1110-

Provider: "telegram",

1111-

OriginatingChannel: "telegram",

1112-

OriginatingTo: "42",

1113-

ChatType: "direct",

1114-

MediaPaths: [imagePath],

1115-

MediaTypes: ["image/png"],

1116-

MediaWorkspaceDir: tmpDir,

1117-

},

1118-

}),

1119-

);

1120-1121-

const call = requireRunReplyAgentCall();

1122-

expect(call.followupRun.userTurnTranscriptRecorder?.message).toMatchObject({

1123-

role: "user",

1124-

content: "[User sent media without caption]",

1125-

MediaPath: imagePath,

1126-

MediaPaths: [imagePath],

1127-

MediaType: "image/png",

1128-

MediaTypes: ["image/png"],

1129-

});

1130-

});

1131-1132974

it("does not copy prior session media onto text-only followups", async () => {

1133975

await runPreparedReply(

1134976

baseParams({