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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
B
Blog
Jina AI
Jina AI
N
Netflix TechBlog - Medium
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园_首页
Hugging Face - Blog
Hugging Face - Blog
博客园 - 聂微东
美团技术团队
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42
The Cloudflare Blog
V
V2EX
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
小众软件
小众软件
罗磊的独立博客
Microsoft Security Blog
Microsoft Security Blog
Apple Machine Learning Research
Apple Machine Learning Research
I
InfoQ
GbyAI
GbyAI
腾讯CDC
MongoDB | Blog
MongoDB | 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(read): route text decoding through shared Windows cod...
zhanxingxin1 · 2026-06-16 · via Recent Commits to openclaw:main

@@ -4,11 +4,17 @@ import { Buffer } from "node:buffer";

44

import fs from "node:fs/promises";

55

import os from "node:os";

66

import path from "node:path";

7-

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

7+

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

88

import { withEnvAsync } from "../../../test-utils/env.js";

99

import { createReadToolDefinition } from "./read.js";

1010

import { DEFAULT_MAX_BYTES } from "./truncate.js";

111112+

const decodeWindowsTextFileBufferMock = vi.hoisted(() => vi.fn(() => ""));

13+14+

vi.mock("../../../infra/windows-encoding.js", () => ({

15+

decodeWindowsTextFileBuffer: decodeWindowsTextFileBufferMock,

16+

}));

17+1218

const ONE_PIXEL_PNG_BASE64 =

1319

"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mP8/x8AAwMCAO+/p9sAAAAASUVORK5CYII=";

1420

@@ -20,6 +26,10 @@ function textContent(

2026

}

21272228

describe("read tool", () => {

29+

beforeEach(() => {

30+

decodeWindowsTextFileBufferMock.mockReset();

31+

});

32+2333

it("reads managed inbound media refs as image files", async () => {

2434

const stateDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-read-media-"));

2535

const mediaId = `read-tool-${Date.now()}-${Math.random().toString(36).slice(2)}.png`;

@@ -100,4 +110,71 @@ describe("read tool", () => {

100110101111

expect(textContent(result)).toBe("alpha\n\n[2 more lines in file. Use offset=2 to continue.]");

102112

});

113+114+

it("uses the shared Windows decoder for local filesystem reads", async () => {

115+

const tempDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-read-encoding-"));

116+

const filePath = path.join(tempDir, "legacy.txt");

117+

const legacyBytes = Buffer.from([0xc4, 0xe3, 0xba, 0xc3]);

118+

decodeWindowsTextFileBufferMock.mockReturnValueOnce("decoded legacy text");

119+120+

try {

121+

await fs.writeFile(filePath, legacyBytes);

122+

const tool = createReadToolDefinition(tempDir);

123+

const result = await tool.execute(

124+

"call-1",

125+

{ path: "legacy.txt" },

126+

undefined,

127+

undefined,

128+

{} as never,

129+

);

130+131+

expect(decodeWindowsTextFileBufferMock).toHaveBeenCalledWith({ buffer: legacyBytes });

132+

expect(textContent(result)).toBe("decoded legacy text");

133+

} finally {

134+

await fs.rm(tempDir, { recursive: true, force: true });

135+

}

136+

});

137+138+

it("leaves injected read operation decoding owner-controlled", async () => {

139+

const bytes = Buffer.from([0xc4, 0xe3, 0xba, 0xc3]);

140+

const tool = createReadToolDefinition("/workspace", {

141+

operations: {

142+

access: async () => {},

143+

detectImageMimeType: async () => null,

144+

readFile: async () => bytes,

145+

},

146+

});

147+

const result = await tool.execute(

148+

"call-1",

149+

{ path: "legacy.txt" },

150+

undefined,

151+

undefined,

152+

{} as never,

153+

);

154+155+

expect(decodeWindowsTextFileBufferMock).not.toHaveBeenCalled();

156+

expect(textContent(result)).toBe(bytes.toString("utf8"));

157+

});

158+159+

it("uses an injected backend decoder when declared", async () => {

160+

const bytes = Buffer.from([0xc4, 0xe3, 0xba, 0xc3]);

161+

const tool = createReadToolDefinition("/workspace", {

162+

operations: {

163+

decodeText: ({ buffer, absolutePath }) => `${absolutePath}:${buffer.toString("hex")}`,

164+

access: async () => {},

165+

detectImageMimeType: async () => null,

166+

readFile: async () => bytes,

167+

},

168+

});

169+

const result = await tool.execute(

170+

"call-1",

171+

{ path: "legacy.txt" },

172+

undefined,

173+

undefined,

174+

{} as never,

175+

);

176+177+

expect(decodeWindowsTextFileBufferMock).not.toHaveBeenCalled();

178+

expect(textContent(result)).toBe("/workspace/legacy.txt:c4e3bac3");

179+

});

103180

});