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

推荐订阅源

云风的 BLOG
云风的 BLOG
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
博客园 - 三生石上(FineUI控件)
T
The Blog of Author Tim Ferriss
宝玉的分享
宝玉的分享
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
V
Visual Studio Blog
小众软件
小众软件
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MongoDB | Blog
MongoDB | Blog
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
The Cloudflare Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Engineering at Meta
Engineering at Meta
L
LangChain Blog
Martin Fowler
Martin Fowler
GbyAI
GbyAI
博客园 - 司徒正美

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 test: merge chat context notice checks · openclaw/openclaw@5c2f4af 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
fix: align host tilde paths with OS home (#62804) (thanks...
2026-04-16 · via Recent Commits to openclaw:main
1+

import fs from "node:fs/promises";

2+

import os from "node:os";

3+

import path from "node:path";

4+

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

5+6+

type CapturedEditOperations = {

7+

readFile: (absolutePath: string) => Promise<Buffer>;

8+

writeFile: (absolutePath: string, content: string) => Promise<void>;

9+

access: (absolutePath: string) => Promise<void>;

10+

};

11+12+

type CapturedWriteOperations = {

13+

mkdir: (dir: string) => Promise<void>;

14+

writeFile: (absolutePath: string, content: string) => Promise<void>;

15+

};

16+17+

const mocks = vi.hoisted(() => ({

18+

editOps: undefined as CapturedEditOperations | undefined,

19+

writeOps: undefined as CapturedWriteOperations | undefined,

20+

}));

21+22+

vi.mock("@mariozechner/pi-coding-agent", async () => {

23+

const actual = await vi.importActual<typeof import("@mariozechner/pi-coding-agent")>(

24+

"@mariozechner/pi-coding-agent",

25+

);

26+

return {

27+

...actual,

28+

createEditTool: (_cwd: string, options?: { operations?: CapturedEditOperations }) => {

29+

mocks.editOps = options?.operations;

30+

return {

31+

name: "edit",

32+

description: "test edit tool",

33+

parameters: { type: "object", properties: {} },

34+

execute: async () => ({ content: [{ type: "text" as const, text: "ok" }] }),

35+

};

36+

},

37+

createWriteTool: (_cwd: string, options?: { operations?: CapturedWriteOperations }) => {

38+

mocks.writeOps = options?.operations;

39+

return {

40+

name: "write",

41+

description: "test write tool",

42+

parameters: { type: "object", properties: {} },

43+

execute: async () => ({ content: [{ type: "text" as const, text: "ok" }] }),

44+

};

45+

},

46+

};

47+

});

48+49+

const { createHostWorkspaceEditTool, createHostWorkspaceWriteTool } =

50+

await import("./pi-tools.read.js");

51+52+

const osHome = () => process.env.HOME ?? os.homedir();

53+

const toTildePath = (absolutePath: string) => absolutePath.replace(osHome(), "~");

54+55+

describe("host tool tilde expansion (non-workspace mode)", () => {

56+

const tempDirs: string[] = [];

57+58+

const createTempDir = async (prefix: string, parent = osHome()) => {

59+

const dir = await fs.mkdtemp(path.join(parent, prefix));

60+

tempDirs.push(dir);

61+

return dir;

62+

};

63+64+

beforeEach(() => {

65+

mocks.editOps = undefined;

66+

mocks.writeOps = undefined;

67+

});

68+69+

afterEach(async () => {

70+

vi.unstubAllEnvs();

71+

mocks.editOps = undefined;

72+

mocks.writeOps = undefined;

73+

while (tempDirs.length > 0) {

74+

await fs.rm(tempDirs.pop()!, { recursive: true, force: true });

75+

}

76+

});

77+78+

it("edit readFile expands ~ to the OS home directory", async () => {

79+

const dir = await createTempDir("openclaw-tilde-test-edit-");

80+

const testFile = path.join(dir, "test.txt");

81+

await fs.writeFile(testFile, "hello", "utf8");

82+83+

createHostWorkspaceEditTool(dir, { workspaceOnly: false });

84+

const content = await mocks.editOps!.readFile(toTildePath(testFile));

85+86+

expect(content.toString("utf8")).toBe("hello");

87+

});

88+89+

it("edit access expands ~ to the OS home directory", async () => {

90+

const dir = await createTempDir("openclaw-tilde-test-edit-");

91+

const testFile = path.join(dir, "test.txt");

92+

await fs.writeFile(testFile, "hello", "utf8");

93+94+

createHostWorkspaceEditTool(dir, { workspaceOnly: false });

95+96+

await expect(mocks.editOps!.access(toTildePath(testFile))).resolves.toBeUndefined();

97+

});

98+99+

it("write writeFile expands ~ to the OS home directory", async () => {

100+

const dir = await createTempDir("openclaw-tilde-test-write-");

101+

const testFile = path.join(dir, "tilde-write-test.txt");

102+103+

createHostWorkspaceWriteTool(dir, { workspaceOnly: false });

104+

await mocks.writeOps!.writeFile(toTildePath(testFile), "written via tilde");

105+106+

expect(await fs.readFile(testFile, "utf8")).toBe("written via tilde");

107+

});

108+109+

it("write mkdir expands ~ to the OS home directory", async () => {

110+

const dir = await createTempDir("openclaw-tilde-test-mkdir-");

111+

const newDir = path.join(dir, "subdir");

112+113+

createHostWorkspaceWriteTool(dir, { workspaceOnly: false });

114+

await mocks.writeOps!.mkdir(toTildePath(newDir));

115+116+

expect((await fs.stat(newDir)).isDirectory()).toBe(true);

117+

});

118+119+

it("ignores OPENCLAW_HOME for write operations", async () => {

120+

const openclawHome = await createTempDir("openclaw-home-override-", os.tmpdir());

121+

const dir = await createTempDir("openclaw-tilde-test-write-");

122+

const testFile = path.join(dir, "os-home-write.txt");

123+

vi.stubEnv("OPENCLAW_HOME", openclawHome);

124+125+

createHostWorkspaceWriteTool(openclawHome, { workspaceOnly: false });

126+

await mocks.writeOps!.writeFile(toTildePath(testFile), "written via os home");

127+128+

expect(await fs.readFile(testFile, "utf8")).toBe("written via os home");

129+

await expect(fs.access(path.join(openclawHome, path.basename(testFile)))).rejects.toBeDefined();

130+

});

131+132+

it("ignores OPENCLAW_HOME for mkdir operations", async () => {

133+

const openclawHome = await createTempDir("openclaw-home-override-", os.tmpdir());

134+

const dir = await createTempDir("openclaw-tilde-test-mkdir-");

135+

const newDir = path.join(dir, "os-home-subdir");

136+

vi.stubEnv("OPENCLAW_HOME", openclawHome);

137+138+

createHostWorkspaceWriteTool(openclawHome, { workspaceOnly: false });

139+

await mocks.writeOps!.mkdir(toTildePath(newDir));

140+141+

expect((await fs.stat(newDir)).isDirectory()).toBe(true);

142+

await expect(fs.access(path.join(openclawHome, path.basename(newDir)))).rejects.toBeDefined();

143+

});

144+145+

it("ignores OPENCLAW_HOME for readFile operations", async () => {

146+

const openclawHome = await createTempDir("openclaw-home-override-", os.tmpdir());

147+

const dir = await createTempDir("openclaw-tilde-test-edit-");

148+

const testFile = path.join(dir, "os-home-read.txt");

149+

await fs.writeFile(testFile, "OS home content", "utf8");

150+

vi.stubEnv("OPENCLAW_HOME", openclawHome);

151+152+

createHostWorkspaceEditTool(openclawHome, { workspaceOnly: false });

153+

const content = await mocks.editOps!.readFile(toTildePath(testFile));

154+155+

expect(content.toString("utf8")).toBe("OS home content");

156+

await expect(fs.access(path.join(openclawHome, path.basename(testFile)))).rejects.toBeDefined();

157+

});

158+159+

it("ignores OPENCLAW_HOME for access operations", async () => {

160+

const openclawHome = await createTempDir("openclaw-home-override-", os.tmpdir());

161+

const dir = await createTempDir("openclaw-tilde-test-edit-");

162+

const testFile = path.join(dir, "os-home-access.txt");

163+

await fs.writeFile(testFile, "exists", "utf8");

164+

vi.stubEnv("OPENCLAW_HOME", openclawHome);

165+166+

createHostWorkspaceEditTool(openclawHome, { workspaceOnly: false });

167+168+

await expect(mocks.editOps!.access(toTildePath(testFile))).resolves.toBeUndefined();

169+

await expect(fs.access(path.join(openclawHome, path.basename(testFile)))).rejects.toBeDefined();

170+

});

171+

});