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

推荐订阅源

宝玉的分享
宝玉的分享
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MyScale Blog
MyScale Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
S
SegmentFault 最新的问题
Y
Y Combinator Blog
月光博客
月光博客
IT之家
IT之家
T
Tailwind CSS Blog
Last Week in AI
Last Week in AI
L
LangChain Blog
博客园_首页
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
博客园 - Franky
WordPress大学
WordPress大学
云风的 BLOG
云风的 BLOG
M
MIT News - Artificial intelligence
V
Visual Studio Blog
小众软件
小众软件
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
N
Netflix TechBlog - Medium

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(core): remove unused helper wrappers · openclaw/...
vincentkoc · 2026-06-19 · via Recent Commits to openclaw:main

@@ -3,20 +3,19 @@

33

import { describe, expect, it } from "vitest";

44

import {

55

extractToolResultMediaArtifact,

6-

extractToolResultMediaPaths,

76

filterToolResultMediaUrls,

87

isToolResultMediaTrusted,

98

} from "./embedded-agent-subscribe.tools.js";

10911-

describe("extractToolResultMediaPaths", () => {

12-

it("returns empty array for null/undefined", () => {

13-

expect(extractToolResultMediaPaths(null)).toStrictEqual([]);

14-

expect(extractToolResultMediaPaths(undefined)).toStrictEqual([]);

10+

describe("extractToolResultMediaArtifact", () => {

11+

it("returns undefined for null/undefined", () => {

12+

expect(extractToolResultMediaArtifact(null)).toBeUndefined();

13+

expect(extractToolResultMediaArtifact(undefined)).toBeUndefined();

1514

});

161517-

it("returns empty array for non-object", () => {

18-

expect(extractToolResultMediaPaths("hello")).toStrictEqual([]);

19-

expect(extractToolResultMediaPaths(42)).toStrictEqual([]);

16+

it("returns undefined for non-object", () => {

17+

expect(extractToolResultMediaArtifact("hello")).toBeUndefined();

18+

expect(extractToolResultMediaArtifact(42)).toBeUndefined();

2019

});

21202221

it("extracts structured details.media without content blocks", () => {

@@ -81,8 +80,8 @@ describe("extractToolResultMediaPaths", () => {

8180

});

8281

});

838284-

it("returns empty array when content has no text or image blocks", () => {

85-

expect(extractToolResultMediaPaths({ content: [{ type: "other" }] })).toStrictEqual([]);

83+

it("returns undefined when content has no text or image blocks", () => {

84+

expect(extractToolResultMediaArtifact({ content: [{ type: "other" }] })).toBeUndefined();

8685

});

87868887

it("extracts structured media with audioAsVoice", () => {

@@ -125,7 +124,9 @@ describe("extractToolResultMediaPaths", () => {

125124

],

126125

details: { path: "/tmp/screenshot.png" },

127126

};

128-

expect(extractToolResultMediaPaths(result)).toEqual(["/tmp/screenshot.png"]);

127+

expect(extractToolResultMediaArtifact(result)).toEqual({

128+

mediaUrls: ["/tmp/screenshot.png"],

129+

});

129130

});

130131131132

it("ignores media-looking text content without structured media or image fallback", () => {

@@ -135,7 +136,7 @@ describe("extractToolResultMediaPaths", () => {

135136

{ type: "text", text: "MEDIA:/tmp/page2.png" },

136137

],

137138

};

138-

expect(extractToolResultMediaPaths(result)).toStrictEqual([]);

139+

expect(extractToolResultMediaArtifact(result)).toBeUndefined();

139140

});

140141141142

it("falls back to details.path when image content exists", () => {

@@ -150,32 +151,34 @@ describe("extractToolResultMediaPaths", () => {

150151

],

151152

details: { path: "/tmp/generated.png" },

152153

};

153-

expect(extractToolResultMediaPaths(result)).toEqual(["/tmp/generated.png"]);

154+

expect(extractToolResultMediaArtifact(result)).toEqual({

155+

mediaUrls: ["/tmp/generated.png"],

156+

});

154157

});

155158156-

it("returns empty array when image content exists but no details.path", () => {

159+

it("returns undefined when image content exists but no details.path", () => {

157160

// Embedded read tool: has image content but no path anywhere in the result.

158161

const result = {

159162

content: [

160163

{ type: "text", text: "Read image file [image/png]" },

161164

{ type: "image", data: "base64data", mimeType: "image/png" },

162165

],

163166

};

164-

expect(extractToolResultMediaPaths(result)).toStrictEqual([]);

167+

expect(extractToolResultMediaArtifact(result)).toBeUndefined();

165168

});

166169167170

it("ignores null/undefined items in content array", () => {

168171

const result = {

169172

content: [null, undefined, { type: "text", text: "MEDIA:/tmp/ok.png" }],

170173

};

171-

expect(extractToolResultMediaPaths(result)).toStrictEqual([]);

174+

expect(extractToolResultMediaArtifact(result)).toBeUndefined();

172175

});

173176174177

it("returns empty array for text-only results", () => {

175178

const result = {

176179

content: [{ type: "text", text: "Command executed successfully" }],

177180

};

178-

expect(extractToolResultMediaPaths(result)).toStrictEqual([]);

181+

expect(extractToolResultMediaArtifact(result)).toBeUndefined();

179182

});

180183181184

it("ignores details.path when no image content exists", () => {

@@ -186,23 +189,25 @@ describe("extractToolResultMediaPaths", () => {

186189

content: [{ type: "text", text: "File saved" }],

187190

details: { path: "/tmp/data.json" },

188191

};

189-

expect(extractToolResultMediaPaths(result)).toStrictEqual([]);

192+

expect(extractToolResultMediaArtifact(result)).toBeUndefined();

190193

});

191194192195

it("handles details.path with whitespace", () => {

193196

const result = {

194197

content: [{ type: "image", data: "base64", mimeType: "image/png" }],

195198

details: { path: " /tmp/image.png " },

196199

};

197-

expect(extractToolResultMediaPaths(result)).toEqual(["/tmp/image.png"]);

200+

expect(extractToolResultMediaArtifact(result)).toEqual({

201+

mediaUrls: ["/tmp/image.png"],

202+

});

198203

});

199204200205

it("skips empty details.path", () => {

201206

const result = {

202207

content: [{ type: "image", data: "base64", mimeType: "image/png" }],

203208

details: { path: " " },

204209

};

205-

expect(extractToolResultMediaPaths(result)).toStrictEqual([]);

210+

expect(extractToolResultMediaArtifact(result)).toBeUndefined();

206211

});

207212208213

it("does not match <media:audio> placeholder as media", () => {

@@ -214,14 +219,14 @@ describe("extractToolResultMediaPaths", () => {

214219

},

215220

],

216221

};

217-

expect(extractToolResultMediaPaths(result)).toStrictEqual([]);

222+

expect(extractToolResultMediaArtifact(result)).toBeUndefined();

218223

});

219224220225

it("does not match <media:image> placeholder as media", () => {

221226

const result = {

222227

content: [{ type: "text", text: "<media:image> (2 images)" }],

223228

};

224-

expect(extractToolResultMediaPaths(result)).toStrictEqual([]);

229+

expect(extractToolResultMediaArtifact(result)).toBeUndefined();

225230

});

226231227232

it("does not match other media placeholder variants", () => {

@@ -234,7 +239,7 @@ describe("extractToolResultMediaPaths", () => {

234239

const result = {

235240

content: [{ type: "text", text: `${tag} some context` }],

236241

};

237-

expect(extractToolResultMediaPaths(result)).toStrictEqual([]);

242+

expect(extractToolResultMediaArtifact(result)).toBeUndefined();

238243

}

239244

});

240245

@@ -247,7 +252,7 @@ describe("extractToolResultMediaPaths", () => {

247252

},

248253

],

249254

};

250-

expect(extractToolResultMediaPaths(result)).toStrictEqual([]);

255+

expect(extractToolResultMediaArtifact(result)).toBeUndefined();

251256

});

252257253258

it("does not treat malformed media-looking prose as a file path", () => {

@@ -259,7 +264,7 @@ describe("extractToolResultMediaPaths", () => {

259264

},

260265

],

261266

};

262-

expect(extractToolResultMediaPaths(result)).toStrictEqual([]);

267+

expect(extractToolResultMediaArtifact(result)).toBeUndefined();

263268

});

264269265270

it("trusts image_generate local media paths", () => {