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

推荐订阅源

N
Netflix TechBlog - Medium
J
Java Code Geeks
爱范儿
爱范儿
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 三生石上(FineUI控件)
H
Hackread – Cybersecurity News, Data Breaches, AI and More
B
Blog RSS Feed
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
The GitHub Blog
The GitHub Blog
I
InfoQ
月光博客
月光博客
博客园 - 聂微东
博客园 - Franky
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
博客园_首页
G
Google Developers Blog
Blog — PlanetScale
Blog — PlanetScale
L
LangChain Blog
罗磊的独立博客
Apple Machine Learning Research
Apple Machine Learning Research

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: make QQ Bot media paths respect `OPENCLAW_HOME` conf...
sliverp · 2026-05-26 · via Recent Commits to openclaw:main

@@ -4,6 +4,8 @@ import path from "node:path";

44

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

55

import {

66

getHomeDir,

7+

getQQBotDataPath,

8+

getQQBotMediaPath,

79

resolveQQBotLocalMediaPath,

810

resolveQQBotPayloadLocalFilePath,

911

} from "./platform.js";

@@ -146,3 +148,147 @@ describe("qqbot local media path remapping", () => {

146148

expect(resolveQQBotPayloadLocalFilePath(missingWorkspacePath)).toBe(fs.realpathSync(mediaFile));

147149

});

148150

});

151+152+

// Regression coverage for https://github.com/openclaw/openclaw/issues/83562 —

153+

// when HOME and OPENCLAW_HOME diverge (Docker, multi-user hosts), QQ Bot media

154+

// paths must be anchored on OPENCLAW_HOME so files written under

155+

// `$OPENCLAW_HOME/.openclaw/media/qqbot/` are accepted by the outbound

156+

// allowlist.

157+

//

158+

// Tests intentionally do NOT mock `os.homedir()` — the helper reads it via

159+

// `import * as os from "node:os"` which `vi.spyOn` cannot reliably intercept

160+

// across the ESM/CJS interop boundary. Instead each test treats the real OS

161+

// home as the baseline and only varies `process.env.OPENCLAW_HOME`.

162+

describe("qqbot media path resolution honors OPENCLAW_HOME (#83562)", () => {

163+

const tempPaths: string[] = [];

164+

const realOsHome = getHomeDir();

165+166+

afterEach(() => {

167+

vi.unstubAllEnvs();

168+

vi.restoreAllMocks();

169+

for (const target of tempPaths.splice(0)) {

170+

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

171+

}

172+

});

173+174+

function makeFakeOpenclawHome(): string {

175+

const dir = fs.mkdtempSync(path.join(os.tmpdir(), "qqbot-oc-home-"));

176+

tempPaths.push(dir);

177+

return dir;

178+

}

179+180+

it("accepts files under $OPENCLAW_HOME/.openclaw/media/qqbot when OPENCLAW_HOME differs from HOME", () => {

181+

const fakeOpenclawHome = makeFakeOpenclawHome();

182+

// Sanity: the fake OPENCLAW_HOME must not be a subpath of the real OS home,

183+

// otherwise the test would pass for the wrong reason on hosts where

184+

// `os.tmpdir()` happens to live under `$HOME`.

185+

expect(fakeOpenclawHome.startsWith(realOsHome)).toBe(false);

186+

vi.stubEnv("OPENCLAW_HOME", fakeOpenclawHome);

187+188+

const mediaFile = path.join(fakeOpenclawHome, ".openclaw", "media", "qqbot", "repro.png");

189+

fs.mkdirSync(path.dirname(mediaFile), { recursive: true });

190+

fs.writeFileSync(mediaFile, "image", "utf8");

191+192+

expect(getQQBotMediaPath()).toBe(path.join(fakeOpenclawHome, ".openclaw", "media", "qqbot"));

193+

expect(resolveQQBotPayloadLocalFilePath(mediaFile)).toBe(fs.realpathSync(mediaFile));

194+

});

195+196+

it("expands tilde-prefixed OPENCLAW_HOME against the OS home", () => {

197+

// Use a unique subdirectory name so we can clean it up safely without

198+

// touching anything that exists under the real home.

199+

const sub = `qqbot-tilde-${process.pid}-${Date.now()}`;

200+

const expectedHome = path.join(realOsHome, sub);

201+

tempPaths.push(expectedHome);

202+

vi.stubEnv("OPENCLAW_HOME", `~/${sub}`);

203+204+

expect(getQQBotMediaPath()).toBe(path.join(expectedHome, ".openclaw", "media", "qqbot"));

205+206+

const mediaFile = path.join(expectedHome, ".openclaw", "media", "qqbot", "tilde.png");

207+

fs.mkdirSync(path.dirname(mediaFile), { recursive: true });

208+

fs.writeFileSync(mediaFile, "image", "utf8");

209+210+

expect(resolveQQBotPayloadLocalFilePath(mediaFile)).toBe(fs.realpathSync(mediaFile));

211+

});

212+213+

it("falls back to OS home when OPENCLAW_HOME is unset (no regression)", () => {

214+

vi.stubEnv("OPENCLAW_HOME", "");

215+216+

expect(getQQBotMediaPath()).toBe(path.join(realOsHome, ".openclaw", "media", "qqbot"));

217+

});

218+219+

it("treats sentinel strings 'undefined' and 'null' as unset", () => {

220+

for (const sentinel of ["undefined", "null"]) {

221+

vi.stubEnv("OPENCLAW_HOME", sentinel);

222+

expect(getQQBotMediaPath()).toBe(path.join(realOsHome, ".openclaw", "media", "qqbot"));

223+

}

224+

});

225+226+

it("keeps persisted QQ Bot data anchored on the OS home (compatibility)", () => {

227+

const fakeOpenclawHome = makeFakeOpenclawHome();

228+

vi.stubEnv("OPENCLAW_HOME", fakeOpenclawHome);

229+230+

// Persisted state (sessions, known users, refs) must NOT migrate when an

231+

// operator adds OPENCLAW_HOME — otherwise existing deployments would lose

232+

// their session state. Only the media root follows OPENCLAW_HOME.

233+

expect(getQQBotDataPath()).toBe(path.join(realOsHome, ".openclaw", "qqbot"));

234+

});

235+236+

it("rejects files that live under HOME tree when OPENCLAW_HOME is the active root", () => {

237+

const fakeOpenclawHome = makeFakeOpenclawHome();

238+

vi.stubEnv("OPENCLAW_HOME", fakeOpenclawHome);

239+240+

// File under the HOME-side mirror — exactly the path that *worked* on

241+

// current main and *broke* the OPENCLAW_HOME setup. After the fix the

242+

// active media root is OPENCLAW_HOME, so a file under HOME is no longer

243+

// implicitly allowed unless it remaps via the existing workspace fallback.

244+

// Use a unique subdirectory so we never collide with real user media.

245+

const stale = `qqbot-stale-${process.pid}-${Date.now()}.png`;

246+

const homeOnlyFile = path.join(realOsHome, ".openclaw", "media", "qqbot", stale);

247+

tempPaths.push(homeOnlyFile);

248+

fs.mkdirSync(path.dirname(homeOnlyFile), { recursive: true });

249+

fs.writeFileSync(homeOnlyFile, "image", "utf8");

250+251+

expect(resolveQQBotPayloadLocalFilePath(homeOnlyFile)).toBeNull();

252+

});

253+254+

it("remaps workspace paths under either HOME or OPENCLAW_HOME to the OPENCLAW_HOME media root", () => {

255+

const fakeOpenclawHome = makeFakeOpenclawHome();

256+

vi.stubEnv("OPENCLAW_HOME", fakeOpenclawHome);

257+258+

const baseName = `remap-${process.pid}-${Date.now()}`;

259+260+

// Real file lives under the OPENCLAW_HOME media tree.

261+

const mediaFile = path.join(

262+

fakeOpenclawHome,

263+

".openclaw",

264+

"media",

265+

"qqbot",

266+

"downloads",

267+

baseName,

268+

"remap.png",

269+

);

270+

fs.mkdirSync(path.dirname(mediaFile), { recursive: true });

271+

fs.writeFileSync(mediaFile, "image", "utf8");

272+273+

// Agent that only knows the HOME-relative workspace path should still

274+

// resolve to the real file thanks to the dual-tree workspace fallback.

275+

const homeWorkspaceDir = path.join(realOsHome, ".openclaw", "workspace", "qqbot");

276+

const homeWorkspacePath = path.join(homeWorkspaceDir, "downloads", baseName, "remap.png");

277+

// Track for cleanup; we only created the unique baseName subdir indirectly

278+

// through resolveQQBotLocalMediaPath, which does NOT actually create the

279+

// HOME-side path, so nothing to clean up there beyond the OPENCLAW_HOME tree.

280+

expect(resolveQQBotLocalMediaPath(homeWorkspacePath)).toBe(mediaFile);

281+282+

// Same path but under OPENCLAW_HOME should also remap.

283+

const openclawWorkspacePath = path.join(

284+

fakeOpenclawHome,

285+

".openclaw",

286+

"workspace",

287+

"qqbot",

288+

"downloads",

289+

baseName,

290+

"remap.png",

291+

);

292+

expect(resolveQQBotLocalMediaPath(openclawWorkspacePath)).toBe(mediaFile);

293+

});

294+

});