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

推荐订阅源

博客园 - 司徒正美
大猫的无限游戏
大猫的无限游戏
腾讯CDC
J
Java Code Geeks
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
V
Visual Studio Blog
人人都是产品经理
人人都是产品经理
博客园 - Franky
博客园 - 聂微东
阮一峰的网络日志
阮一峰的网络日志
美团技术团队
云风的 BLOG
云风的 BLOG
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
雷峰网
雷峰网
B
Blog RSS Feed
博客园_首页
量子位
F
Fortinet All Blogs
罗磊的独立博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More
酷 壳 – CoolShell
酷 壳 – CoolShell
C
Check Point 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
test(browser): use real trash fixture paths · openclaw/op...
vincentkoc · 2026-05-07 · via Recent Commits to openclaw:main

@@ -1,10 +1,14 @@

11

import fs from "node:fs";

22

import os from "node:os";

3-

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

3+

import path from "node:path";

4+

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

4556

const resolvePreferredOpenClawTmpDirMock = vi.hoisted(() => vi.fn(() => "/tmp/openclaw"));

6-

const OPENCLAW_TMP_ROOT = "/tmp/openclaw";

7-

const TRASH_SOURCE = `${OPENCLAW_TMP_ROOT}/demo`;

7+

const realMkdirSync = fs.mkdirSync.bind(fs);

8+

const realMkdtempSync = fs.mkdtempSync.bind(fs);

9+

const realRmSync = fs.rmSync.bind(fs);

10+

const realWriteFileSync = fs.writeFileSync.bind(fs);

11+

const realRealpathSyncNative = fs.realpathSync.native.bind(fs.realpathSync);

812913

vi.mock("openclaw/plugin-sdk/temp-path", () => ({

1014

resolvePreferredOpenClawTmpDir: resolvePreferredOpenClawTmpDirMock,

@@ -15,70 +19,92 @@ function mockTrashContainer(...suffixes: string[]) {

1519

return vi.spyOn(fs, "mkdtempSync").mockImplementation((prefix) => {

1620

const suffix = suffixes[call] ?? "secure";

1721

call += 1;

18-

return `${prefix}${suffix}`;

22+

const container = `${prefix}${suffix}`;

23+

realMkdirSync(container, { recursive: true });

24+

return container;

1925

});

2026

}

21272228

describe("browser trash", () => {

29+

let testRoot = "";

30+

let homeDir = "";

31+

let tmpDir = "";

32+2333

beforeEach(() => {

2434

vi.restoreAllMocks();

35+

testRoot = realRealpathSyncNative(realMkdtempSync(path.join(os.tmpdir(), "openclaw-browser-")));

36+

homeDir = path.join(testRoot, "home", "test");

37+

tmpDir = path.join(testRoot, "tmp");

38+

realMkdirSync(path.join(homeDir, ".Trash"), { recursive: true, mode: 0o700 });

39+

realMkdirSync(tmpDir, { recursive: true, mode: 0o700 });

2540

resolvePreferredOpenClawTmpDirMock.mockReset();

26-

resolvePreferredOpenClawTmpDirMock.mockReturnValue("/tmp/openclaw");

41+

resolvePreferredOpenClawTmpDirMock.mockReturnValue(tmpDir);

2742

vi.spyOn(Date, "now").mockReturnValue(123);

28-

vi.spyOn(os, "homedir").mockReturnValue("/home/test");

29-

vi.spyOn(os, "tmpdir").mockReturnValue("/tmp");

30-

vi.spyOn(fs, "lstatSync").mockReturnValue({

31-

isDirectory: () => true,

32-

isSymbolicLink: () => false,

33-

} as fs.Stats);

34-

vi.spyOn(fs.realpathSync, "native").mockImplementation((candidate) => String(candidate));

43+

vi.spyOn(os, "homedir").mockReturnValue(homeDir);

44+

vi.spyOn(os, "tmpdir").mockReturnValue(tmpDir);

45+

vi.spyOn(fs.realpathSync, "native").mockImplementation((candidate) =>

46+

realRealpathSyncNative(candidate),

47+

);

3548

});

364950+

afterEach(() => {

51+

vi.restoreAllMocks();

52+

if (testRoot) {

53+

realRmSync(testRoot, { recursive: true, force: true });

54+

}

55+

});

56+57+

function writeTrashTarget(name = "demo"): string {

58+

const target = path.join(tmpDir, name);

59+

realWriteFileSync(target, "demo");

60+

return target;

61+

}

62+3763

it("moves paths to a reserved user trash container without invoking a PATH-resolved command", async () => {

3864

const { movePathToTrash } = await import("./trash.js");

3965

const mkdirSync = vi.spyOn(fs, "mkdirSync").mockImplementation(() => undefined);

4066

const mkdtempSync = mockTrashContainer("secure");

4167

const renameSync = vi.spyOn(fs, "renameSync").mockImplementation(() => undefined);

4268

const cpSync = vi.spyOn(fs, "cpSync");

4369

const rmSync = vi.spyOn(fs, "rmSync");

70+

const target = writeTrashTarget();

71+

const expected = path.join(homeDir, ".Trash", "demo-123-secure", "demo");

447245-

await expect(movePathToTrash(TRASH_SOURCE)).resolves.toBe(

46-

"/home/test/.Trash/demo-123-secure/demo",

47-

);

48-

expect(mkdirSync).toHaveBeenCalledWith("/home/test/.Trash", {

73+

await expect(movePathToTrash(target)).resolves.toBe(expected);

74+

expect(mkdirSync).toHaveBeenCalledWith(path.join(homeDir, ".Trash"), {

4975

recursive: true,

5076

mode: 0o700,

5177

});

52-

expect(mkdtempSync).toHaveBeenCalledWith("/home/test/.Trash/demo-123-");

53-

expect(renameSync).toHaveBeenCalledWith(TRASH_SOURCE, "/home/test/.Trash/demo-123-secure/demo");

78+

expect(mkdtempSync).toHaveBeenCalledWith(path.join(homeDir, ".Trash", "demo-123-"));

79+

expect(renameSync).toHaveBeenCalledWith(target, expected);

5480

expect(cpSync).not.toHaveBeenCalled();

5581

expect(rmSync).not.toHaveBeenCalled();

5682

});

57835884

it("uses the resolved trash directory for reserved destinations", async () => {

5985

const { movePathToTrash } = await import("./trash.js");

6086

vi.spyOn(fs, "mkdirSync").mockImplementation(() => undefined);

87+

const resolvedHomeDir = path.join(testRoot, "real", "home", "test");

88+

const resolvedTrashDir = path.join(resolvedHomeDir, ".Trash");

89+

realMkdirSync(resolvedTrashDir, { recursive: true, mode: 0o700 });

6190

vi.spyOn(fs.realpathSync, "native").mockImplementation((candidate) => {

6291

const value = String(candidate);

63-

if (value === "/home/test") {

64-

return "/real/home/test";

92+

if (value === homeDir) {

93+

return resolvedHomeDir;

6594

}

66-

if (value === "/home/test/.Trash") {

67-

return "/real/home/test/.Trash";

95+

if (value === path.join(homeDir, ".Trash")) {

96+

return resolvedTrashDir;

6897

}

69-

return value;

98+

return realRealpathSyncNative(candidate);

7099

});

71100

const mkdtempSync = mockTrashContainer("secure");

72101

const renameSync = vi.spyOn(fs, "renameSync").mockImplementation(() => undefined);

102+

const target = writeTrashTarget();

103+

const expected = path.join(resolvedTrashDir, "demo-123-secure", "demo");

7310474-

await expect(movePathToTrash(TRASH_SOURCE)).resolves.toBe(

75-

"/real/home/test/.Trash/demo-123-secure/demo",

76-

);

77-

expect(mkdtempSync).toHaveBeenCalledWith("/real/home/test/.Trash/demo-123-");

78-

expect(renameSync).toHaveBeenCalledWith(

79-

TRASH_SOURCE,

80-

"/real/home/test/.Trash/demo-123-secure/demo",

81-

);

105+

await expect(movePathToTrash(target)).resolves.toBe(expected);

106+

expect(mkdtempSync).toHaveBeenCalledWith(path.join(resolvedTrashDir, "demo-123-"));

107+

expect(renameSync).toHaveBeenCalledWith(target, expected);

82108

});

8310984110

it("refuses to trash filesystem roots", async () => {

@@ -97,16 +123,13 @@ describe("browser trash", () => {

9712398124

it("refuses to use a symlinked trash directory", async () => {

99125

const { movePathToTrash } = await import("./trash.js");

126+

const realTrashDir = path.join(testRoot, "real-trash");

127+

realRmSync(path.join(homeDir, ".Trash"), { recursive: true, force: true });

128+

realMkdirSync(realTrashDir, { recursive: true, mode: 0o700 });

129+

fs.symlinkSync(realTrashDir, path.join(homeDir, ".Trash"), "dir");

100130

vi.spyOn(fs, "mkdirSync").mockImplementation(() => undefined);

101-

vi.spyOn(fs, "lstatSync").mockImplementation(

102-

(candidate) =>

103-

({

104-

isDirectory: () => true,

105-

isSymbolicLink: () => String(candidate) === "/home/test/.Trash",

106-

}) as fs.Stats,

107-

);

108131109-

await expect(movePathToTrash(TRASH_SOURCE)).rejects.toThrow(

132+

await expect(movePathToTrash(writeTrashTarget())).rejects.toThrow(

110133

"Refusing to use non-directory/symlink trash directory",

111134

);

112135

});

@@ -121,16 +144,16 @@ describe("browser trash", () => {

121144

});

122145

const cpSync = vi.spyOn(fs, "cpSync").mockImplementation(() => undefined);

123146

const rmSync = vi.spyOn(fs, "rmSync").mockImplementation(() => undefined);

147+

const target = writeTrashTarget();

148+

const expected = path.join(homeDir, ".Trash", "demo-123-secure", "demo");

124149125-

await expect(movePathToTrash(TRASH_SOURCE)).resolves.toBe(

126-

"/home/test/.Trash/demo-123-secure/demo",

127-

);

128-

expect(cpSync).toHaveBeenCalledWith(TRASH_SOURCE, "/home/test/.Trash/demo-123-secure/demo", {

150+

await expect(movePathToTrash(target)).resolves.toBe(expected);

151+

expect(cpSync).toHaveBeenCalledWith(target, expected, {

129152

recursive: true,

130153

force: false,

131154

errorOnExist: true,

132155

});

133-

expect(rmSync).toHaveBeenCalledWith(TRASH_SOURCE, { recursive: true, force: false });

156+

expect(rmSync).toHaveBeenCalledWith(target, { recursive: true, force: false });

134157

});

135158136159

it("retries copy fallback when the copy destination is created concurrently", async () => {

@@ -151,30 +174,21 @@ describe("browser trash", () => {

151174

})

152175

.mockImplementation(() => undefined);

153176

const rmSync = vi.spyOn(fs, "rmSync").mockImplementation(() => undefined);

177+

const target = writeTrashTarget();

178+

const first = path.join(homeDir, ".Trash", "demo-123-first", "demo");

179+

const second = path.join(homeDir, ".Trash", "demo-123-second", "demo");

154180155-

await expect(movePathToTrash(TRASH_SOURCE)).resolves.toBe(

156-

"/home/test/.Trash/demo-123-second/demo",

157-

);

158-

expect(cpSync).toHaveBeenNthCalledWith(

159-

1,

160-

TRASH_SOURCE,

161-

"/home/test/.Trash/demo-123-first/demo",

162-

{

163-

recursive: true,

164-

force: false,

165-

errorOnExist: true,

166-

},

167-

);

168-

expect(cpSync).toHaveBeenNthCalledWith(

169-

2,

170-

TRASH_SOURCE,

171-

"/home/test/.Trash/demo-123-second/demo",

172-

{

173-

recursive: true,

174-

force: false,

175-

errorOnExist: true,

176-

},

177-

);

181+

await expect(movePathToTrash(target)).resolves.toBe(second);

182+

expect(cpSync).toHaveBeenNthCalledWith(1, target, first, {

183+

recursive: true,

184+

force: false,

185+

errorOnExist: true,

186+

});

187+

expect(cpSync).toHaveBeenNthCalledWith(2, target, second, {

188+

recursive: true,

189+

force: false,

190+

errorOnExist: true,

191+

});

178192

expect(rmSync).toHaveBeenCalledTimes(1);

179193

expect(Date.now).toHaveBeenCalledTimes(1);

180194

});

@@ -190,20 +204,13 @@ describe("browser trash", () => {

190204

throw collision;

191205

})

192206

.mockImplementation(() => undefined);

207+

const target = writeTrashTarget();

208+

const first = path.join(homeDir, ".Trash", "demo-123-first", "demo");

209+

const second = path.join(homeDir, ".Trash", "demo-123-second", "demo");

193210194-

await expect(movePathToTrash(TRASH_SOURCE)).resolves.toBe(

195-

"/home/test/.Trash/demo-123-second/demo",

196-

);

197-

expect(renameSync).toHaveBeenNthCalledWith(

198-

1,

199-

TRASH_SOURCE,

200-

"/home/test/.Trash/demo-123-first/demo",

201-

);

202-

expect(renameSync).toHaveBeenNthCalledWith(

203-

2,

204-

TRASH_SOURCE,

205-

"/home/test/.Trash/demo-123-second/demo",

206-

);

211+

await expect(movePathToTrash(target)).resolves.toBe(second);

212+

expect(renameSync).toHaveBeenNthCalledWith(1, target, first);

213+

expect(renameSync).toHaveBeenNthCalledWith(2, target, second);

207214

expect(Date.now).toHaveBeenCalledTimes(1);

208215

});

209216

});