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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 三生石上(FineUI控件)
雷峰网
雷峰网
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
博客园 - 叶小钗
The Cloudflare Blog
T
Tailwind CSS Blog
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
小众软件
小众软件
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
美团技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 聂微东
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
宝玉的分享
宝玉的分享

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
test: speed up safe-bins exec harness · openclaw/openclaw...
steipete · 2026-04-17 · via Recent Commits to openclaw:main
11

import fs from "node:fs";

22

import os from "node:os";

33

import path from "node:path";

4-

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

4+

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

55

import type { OpenClawConfig } from "../config/config.js";

66

import type { ExecApprovalsResolved } from "../infra/exec-approvals.js";

77

import type { SafeBinProfileFixture } from "../infra/exec-safe-bin-policy.js";

88

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

9+

import { resetProcessRegistryForTests } from "./bash-process-registry.js";

9101011

let createOpenClawCodingTools: typeof import("./pi-tools.js").createOpenClawCodingTools;

111212-

beforeAll(async () => {

13-

await withEnvAsync(

14-

{

15-

OPENCLAW_BUNDLED_PLUGINS_DIR: path.join(os.tmpdir(), "openclaw-test-no-bundled-extensions"),

16-

},

17-

async () => {

18-

({ createOpenClawCodingTools } = await import("./pi-tools.js"));

19-

},

20-

);

21-

});

22-23-

vi.mock("../infra/shell-env.js", async () => {

24-

const mod =

25-

await vi.importActual<typeof import("../infra/shell-env.js")>("../infra/shell-env.js");

26-

return {

27-

...mod,

28-

getShellPathFromLoginShell: vi.fn(() => null),

29-

resolveShellEnvFallbackTimeoutMs: vi.fn(() => 50),

30-

};

31-

});

32-33-

vi.mock("../plugins/tools.js", () => ({

34-

copyPluginToolMeta: vi.fn((_from, to) => to),

35-

resolvePluginTools: () => [],

36-

getPluginToolMeta: () => undefined,

37-

}));

38-39-

vi.mock("../infra/exec-approvals.js", async () => {

40-

const mod = await vi.importActual<typeof import("../infra/exec-approvals.js")>(

41-

"../infra/exec-approvals.js",

42-

);

43-

const approvals: ExecApprovalsResolved = {

13+

const { mockExecApprovals, supervisorSpawnMock } = vi.hoisted(() => {

14+

const execApprovals = {

4415

path: "/tmp/exec-approvals.json",

4516

socketPath: "/tmp/exec-approvals.sock",

4617

token: "token",

@@ -74,7 +45,123 @@ vi.mock("../infra/exec-approvals.js", async () => {

7445

agents: {},

7546

},

7647

};

77-

return { ...mod, resolveExecApprovals: () => approvals };

48+

return {

49+

mockExecApprovals: execApprovals,

50+

supervisorSpawnMock: vi.fn(

51+

async (input: { argv?: string[]; onStdout?: (chunk: string) => void }) => {

52+

input.onStdout?.(`${input.argv?.join(" ") ?? ""}\n`);

53+

return {

54+

runId: "safe-bins-test-run",

55+

pid: 1234,

56+

startedAtMs: Date.now(),

57+

stdin: undefined,

58+

wait: async () => ({

59+

reason: "exit" as const,

60+

exitCode: 0,

61+

exitSignal: null,

62+

durationMs: 1,

63+

stdout: "",

64+

stderr: "",

65+

timedOut: false,

66+

noOutputTimedOut: false,

67+

}),

68+

cancel: vi.fn(),

69+

};

70+

},

71+

),

72+

};

73+

});

74+75+

beforeAll(async () => {

76+

await withEnvAsync(

77+

{

78+

OPENCLAW_BUNDLED_PLUGINS_DIR: path.join(os.tmpdir(), "openclaw-test-no-bundled-extensions"),

79+

},

80+

async () => {

81+

({ createOpenClawCodingTools } = await import("./pi-tools.js"));

82+

},

83+

);

84+

});

85+86+

beforeEach(() => {

87+

supervisorSpawnMock.mockClear();

88+

});

89+90+

vi.mock("../infra/shell-env.js", async () => {

91+

const mod =

92+

await vi.importActual<typeof import("../infra/shell-env.js")>("../infra/shell-env.js");

93+

return {

94+

...mod,

95+

getShellPathFromLoginShell: vi.fn(() => null),

96+

resolveShellEnvFallbackTimeoutMs: vi.fn(() => 50),

97+

};

98+

});

99+100+

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

101+

getProcessSupervisor: () => ({

102+

spawn: supervisorSpawnMock,

103+

cancel: vi.fn(),

104+

cancelScope: vi.fn(),

105+

reconcileOrphans: vi.fn(),

106+

getRecord: vi.fn(),

107+

}),

108+

}));

109+110+

vi.mock("./channel-tools.js", () => ({

111+

copyChannelAgentToolMeta: vi.fn((_from, to) => to),

112+

listChannelAgentTools: () => [],

113+

}));

114+115+

vi.mock("./openclaw-tools.js", () => ({

116+

createOpenClawTools: () => [],

117+

}));

118+119+

vi.mock("./bash-tools.exec-host-shared.js", async () => {

120+

const mod = await vi.importActual<typeof import("./bash-tools.exec-host-shared.js")>(

121+

"./bash-tools.exec-host-shared.js",

122+

);

123+

return {

124+

...mod,

125+

resolveExecHostApprovalContext: () => ({

126+

approvals: mockExecApprovals,

127+

hostSecurity: "allowlist",

128+

hostAsk: "off",

129+

askFallback: "deny",

130+

}),

131+

};

132+

});

133+134+

vi.mock("../plugins/tools.js", () => ({

135+

copyPluginToolMeta: vi.fn((_from, to) => to),

136+

resolvePluginTools: () => [],

137+

getPluginToolMeta: () => undefined,

138+

}));

139+140+

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

141+

AuthStorage: vi.fn(),

142+

CURRENT_SESSION_VERSION: 1,

143+

ModelRegistry: vi.fn(),

144+

SessionManager: vi.fn(),

145+

SettingsManager: vi.fn(),

146+

codingTools: [],

147+

createEditTool: vi.fn(),

148+

createReadTool: vi.fn(),

149+

createWriteTool: vi.fn(),

150+

estimateTokens: vi.fn(() => 0),

151+

formatSkillsForPrompt: vi.fn(() => ""),

152+

readTool: undefined,

153+

}));

154+155+

vi.mock("../infra/exec-approvals.js", async () => {

156+

const mod = await vi.importActual<typeof import("../infra/exec-approvals.js")>(

157+

"../infra/exec-approvals.js",

158+

);

159+

const approvals = mockExecApprovals as ExecApprovalsResolved;

160+

return {

161+

...mod,

162+

loadExecApprovals: () => approvals.file,

163+

resolveExecApprovals: () => approvals,

164+

};

78165

});

7916680167

type ExecToolResult = {

@@ -118,6 +205,9 @@ async function createSafeBinsExecTool(params: {

118205119206

const tools = createOpenClawCodingTools({

120207

config: cfg,

208+

exec: {

209+

notifyOnExit: false,

210+

},

121211

sessionKey: "agent:main:main",

122212

workspaceDir: tmpDir,

123213

agentDir: path.join(tmpDir, "agent"),

@@ -138,9 +228,18 @@ async function withSafeBinsExecTool(

138228

}

139229

const ctx = await createSafeBinsExecTool(params);

140230

try {

141-

await run(ctx);

231+

await withEnvAsync(

232+

{

233+

OPENCLAW_SHELL_ENV_TIMEOUT_MS: "1",

234+

SHELL: "/bin/sh",

235+

},

236+

async () => {

237+

await run(ctx);

238+

},

239+

);

142240

} finally {

143241

fs.rmSync(ctx.tmpDir, { recursive: true, force: true });

242+

resetProcessRegistryForTests();

144243

}

145244

}

146245

@@ -165,6 +264,7 @@ describe("createOpenClawCodingTools safeBins", () => {

165264

const resultDetails = result.details as { status?: string };

166265

expect(resultDetails.status).toBe("completed");

167266

expect(text).toContain(marker);

267+

expect(supervisorSpawnMock).toHaveBeenCalledOnce();

168268

},

169269

);

170270

});