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

推荐订阅源

U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
博客园 - 【当耐特】
人人都是产品经理
人人都是产品经理
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
Blog — PlanetScale
Blog — PlanetScale
酷 壳 – CoolShell
酷 壳 – CoolShell
aimingoo的专栏
aimingoo的专栏
Jina AI
Jina AI
小众软件
小众软件
博客园 - 叶小钗
MongoDB | Blog
MongoDB | Blog
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
I
InfoQ
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Martin Fowler
Martin Fowler
P
Proofpoint News Feed
MyScale Blog
MyScale 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: restore ci gates on main · openclaw/openclaw@f2f34e5
steipete · 2026-04-29 · via Recent Commits to openclaw:main

@@ -3,11 +3,16 @@ import os from "node:os";

33

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

4455

const runExec = vi.hoisted(() => vi.fn());

6+

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

6778

vi.mock("../process/exec.js", () => ({

89

runExec,

910

}));

101112+

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

13+

resolvePreferredOpenClawTmpDir: resolvePreferredOpenClawTmpDirMock,

14+

}));

15+1116

function mockTrashContainer(...suffixes: string[]) {

1217

let call = 0;

1318

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

@@ -21,6 +26,8 @@ describe("browser trash", () => {

2126

beforeEach(() => {

2227

vi.restoreAllMocks();

2328

runExec.mockReset();

29+

resolvePreferredOpenClawTmpDirMock.mockReset();

30+

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

2431

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

2532

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

2633

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

@@ -39,7 +46,7 @@ describe("browser trash", () => {

3946

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

4047

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

414842-

await expect(movePathToTrash("/tmp/demo")).resolves.toBe(

49+

await expect(movePathToTrash("/tmp/openclaw/demo")).resolves.toBe(

4350

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

4451

);

4552

expect(runExec).not.toHaveBeenCalled();

@@ -48,7 +55,10 @@ describe("browser trash", () => {

4855

mode: 0o700,

4956

});

5057

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

51-

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

58+

expect(renameSync).toHaveBeenCalledWith(

59+

"/tmp/openclaw/demo",

60+

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

61+

);

5262

expect(cpSync).not.toHaveBeenCalled();

5363

expect(rmSync).not.toHaveBeenCalled();

5464

});

@@ -69,12 +79,12 @@ describe("browser trash", () => {

6979

const mkdtempSync = mockTrashContainer("secure");

7080

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

718172-

await expect(movePathToTrash("/tmp/demo")).resolves.toBe(

82+

await expect(movePathToTrash("/tmp/openclaw/demo")).resolves.toBe(

7383

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

7484

);

7585

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

7686

expect(renameSync).toHaveBeenCalledWith(

77-

"/tmp/demo",

87+

"/tmp/openclaw/demo",

7888

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

7989

);

8090

});

@@ -101,7 +111,7 @@ describe("browser trash", () => {

101111

isSymbolicLink: () => true,

102112

} as fs.Stats);

103113104-

await expect(movePathToTrash("/tmp/demo")).rejects.toThrow(

114+

await expect(movePathToTrash("/tmp/openclaw/demo")).rejects.toThrow(

105115

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

106116

);

107117

});

@@ -117,15 +127,22 @@ describe("browser trash", () => {

117127

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

118128

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

119129120-

await expect(movePathToTrash("/tmp/demo")).resolves.toBe(

130+

await expect(movePathToTrash("/tmp/openclaw/demo")).resolves.toBe(

131+

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

132+

);

133+

expect(cpSync).toHaveBeenCalledWith(

134+

"/tmp/openclaw/demo",

121135

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

136+

{

137+

recursive: true,

138+

force: false,

139+

errorOnExist: true,

140+

},

122141

);

123-

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

142+

expect(rmSync).toHaveBeenCalledWith("/tmp/openclaw/demo", {

124143

recursive: true,

125144

force: false,

126-

errorOnExist: true,

127145

});

128-

expect(rmSync).toHaveBeenCalledWith("/tmp/demo", { recursive: true, force: false });

129146

});

130147131148

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

@@ -147,12 +164,12 @@ describe("browser trash", () => {

147164

.mockImplementation(() => undefined);

148165

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

149166150-

await expect(movePathToTrash("/tmp/demo")).resolves.toBe(

167+

await expect(movePathToTrash("/tmp/openclaw/demo")).resolves.toBe(

151168

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

152169

);

153170

expect(cpSync).toHaveBeenNthCalledWith(

154171

1,

155-

"/tmp/demo",

172+

"/tmp/openclaw/demo",

156173

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

157174

{

158175

recursive: true,

@@ -162,7 +179,7 @@ describe("browser trash", () => {

162179

);

163180

expect(cpSync).toHaveBeenNthCalledWith(

164181

2,

165-

"/tmp/demo",

182+

"/tmp/openclaw/demo",

166183

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

167184

{

168185

recursive: true,

@@ -186,17 +203,17 @@ describe("browser trash", () => {

186203

})

187204

.mockImplementation(() => undefined);

188205189-

await expect(movePathToTrash("/tmp/demo")).resolves.toBe(

206+

await expect(movePathToTrash("/tmp/openclaw/demo")).resolves.toBe(

190207

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

191208

);

192209

expect(renameSync).toHaveBeenNthCalledWith(

193210

1,

194-

"/tmp/demo",

211+

"/tmp/openclaw/demo",

195212

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

196213

);

197214

expect(renameSync).toHaveBeenNthCalledWith(

198215

2,

199-

"/tmp/demo",

216+

"/tmp/openclaw/demo",

200217

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

201218

);

202219

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