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

推荐订阅源

Y
Y Combinator Blog
腾讯CDC
Recent Announcements
Recent Announcements
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Hugging Face - Blog
Hugging Face - Blog
H
Help Net Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
博客园_首页
D
DataBreaches.Net
P
Proofpoint News Feed
云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
月光博客
月光博客
Jina AI
Jina AI
Stack Overflow Blog
Stack Overflow Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
Vercel News
Vercel News
WordPress大学
WordPress大学
J
Java Code Geeks
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
U
Unit 42

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: Found one bug in the new compile-cache prune path: i...
openclaw-clo · 2026-04-29 · via Recent Commits to openclaw:main

@@ -1,4 +1,5 @@

11

import fs from "node:fs/promises";

2+

import { tmpdir } from "node:os";

23

import path from "node:path";

34

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

45

import {

@@ -181,29 +182,79 @@ describe("bundled plugin postinstall", () => {

181182

expect(spawnSync).not.toHaveBeenCalled();

182183

});

183184184-

it("prunes OpenClaw compile cache during package postinstall", () => {

185+

it("prunes Node versioned compile cache dirs during package postinstall", () => {

186+

const configuredBase = path.join("/tmp", "openclaw-cache");

187+

const defaultBase = path.join(tmpdir(), "node-compile-cache");

185188

const removed: string[] = [];

186-

const existsSync = vi.fn((value: string) =>

187-

value.endsWith(path.join("openclaw-cache", "openclaw")),

188-

);

189+

const existsSync = vi.fn((value: string) => value === configuredBase || value === defaultBase);

190+

const readdirSync = vi.fn((value: string) => {

191+

if (value === configuredBase) {

192+

return [

193+

{ name: "v22.13.1-x64-efe9a9df-1001", isDirectory: () => true },

194+

{ name: "openclaw", isDirectory: () => true },

195+

{ name: "README", isDirectory: () => false },

196+

];

197+

}

198+

if (value === defaultBase) {

199+

return [{ name: "v24.14.1-x64-efe9a9df-1001", isDirectory: () => true }];

200+

}

201+

throw new Error(`unexpected readdir: ${value}`);

202+

});

189203

const rmSync = vi.fn((value: string) => {

190204

removed.push(value);

191205

});

192206193207

pruneOpenClawCompileCache({

194-

env: { NODE_COMPILE_CACHE: path.join("/tmp", "openclaw-cache") },

208+

env: { NODE_COMPILE_CACHE: configuredBase },

195209

existsSync,

210+

readdirSync,

196211

rmSync,

197212

log: { warn: vi.fn() },

198213

});

199214200-

expect(removed).toEqual([path.join("/tmp", "openclaw-cache", "openclaw")]);

201-

expect(rmSync).toHaveBeenCalledWith(path.join("/tmp", "openclaw-cache", "openclaw"), {

202-

recursive: true,

203-

force: true,

204-

maxRetries: 2,

205-

retryDelay: 100,

215+

expect(removed).toEqual([

216+

path.join(configuredBase, "v22.13.1-x64-efe9a9df-1001"),

217+

path.join(defaultBase, "v24.14.1-x64-efe9a9df-1001"),

218+

]);

219+

expect(removed).not.toContain(path.join(configuredBase, "openclaw"));

220+

for (const cacheDir of removed) {

221+

expect(rmSync).toHaveBeenCalledWith(cacheDir, {

222+

recursive: true,

223+

force: true,

224+

maxRetries: 2,

225+

retryDelay: 100,

226+

});

227+

}

228+

});

229+230+

it("keeps pruning sibling compile cache dirs after one removal fails", () => {

231+

const configuredBase = path.join("/tmp", "openclaw-cache");

232+

const attempted: string[] = [];

233+

const warn = vi.fn();

234+

const firstCacheDir = path.join(configuredBase, "v22.13.1-x64-efe9a9df-1001");

235+

const secondCacheDir = path.join(configuredBase, "v22.13.1-x64-efe9a9df-1002");

236+

const rmSync = vi.fn((value: string) => {

237+

attempted.push(value);

238+

if (value === firstCacheDir) {

239+

throw new Error("locked");

240+

}

241+

});

242+243+

pruneOpenClawCompileCache({

244+

env: { NODE_COMPILE_CACHE: configuredBase },

245+

existsSync: vi.fn((value: string) => value === configuredBase),

246+

readdirSync: vi.fn(() => [

247+

{ name: path.basename(firstCacheDir), isDirectory: () => true },

248+

{ name: path.basename(secondCacheDir), isDirectory: () => true },

249+

]),

250+

rmSync,

251+

log: { warn },

206252

});

253+254+

expect(attempted).toEqual([firstCacheDir, secondCacheDir]);

255+

expect(warn).toHaveBeenCalledWith(

256+

"[postinstall] could not prune OpenClaw compile cache: Error: locked",

257+

);

207258

});

208259209260

it("prunes source-checkout bundled plugin node_modules", async () => {