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

推荐订阅源

U
Unit 42
博客园 - 司徒正美
V
Visual Studio Blog
博客园 - 【当耐特】
T
Tailwind CSS Blog
美团技术团队
博客园 - 叶小钗
Jina AI
Jina AI
宝玉的分享
宝玉的分享
IT之家
IT之家
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
Stack Overflow Blog
Stack Overflow Blog
博客园_首页
人人都是产品经理
人人都是产品经理
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
Microsoft Security Blog
Microsoft Security Blog
Y
Y Combinator Blog
GbyAI
GbyAI
大猫的无限游戏
大猫的无限游戏
Martin Fowler
Martin Fowler
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC

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(e2e): isolate plugin sweep scratch files · openclaw/o...
vincentkoc · 2026-06-02 · via Recent Commits to openclaw:main
11

import { spawn, spawnSync } from "node:child_process";

2-

import { chmodSync, mkdirSync, mkdtempSync, readFileSync, rmSync, writeFileSync } from "node:fs";

2+

import {

3+

chmodSync,

4+

existsSync,

5+

mkdirSync,

6+

mkdtempSync,

7+

readFileSync,

8+

rmSync,

9+

writeFileSync,

10+

} from "node:fs";

311

import { createServer } from "node:http";

412

import { tmpdir } from "node:os";

513

import path from "node:path";

@@ -88,6 +96,14 @@ function waitForDead(pid: number, timeoutMs = 2_000): void {

8896

}

8997

}

909899+

function runPluginsSweepShell(script: string, env: NodeJS.ProcessEnv = {}) {

100+

return spawnSync("/bin/bash", ["-c", script], {

101+

cwd: process.cwd(),

102+

encoding: "utf8",

103+

env: { ...process.env, ...env },

104+

});

105+

}

106+91107

describe("plugins Docker assertions", () => {

92108

it("rejects loose ClawHub preflight limits instead of parsing prefixes", () => {

93109

const timeoutResult = spawnSync(process.execPath, [ASSERTIONS_SCRIPT, "clawhub-preflight"], {

@@ -126,13 +142,68 @@ describe("plugins Docker assertions", () => {

126142127143

for (const scriptPath of scripts) {

128144

const script = readFileSync(scriptPath, "utf8");

145+

const scriptWithoutDefaultScratch = script.replace('mktemp -d "/tmp/openclaw-plugins.XXXXXX"', "");

129146

expect(script).toContain("OPENCLAW_PLUGINS_TMP_DIR");

130-

expect(script).not.toMatch(

147+

expect(scriptWithoutDefaultScratch).not.toMatch(

131148

/\/tmp\/(?:plugins|marketplace|demo-plugin|is-number|openclaw-plugin|openclaw-clawhub)/,

132149

);

133150

}

134151

});

135152153+

it("cleans the default plugin sweep scratch root", () => {

154+

const root = mkdtempSync(path.join(tmpdir(), "openclaw-plugin-sweep-cleanup-"));

155+

const marker = path.join(root, "scratch-path.txt");

156+

try {

157+

const result = runPluginsSweepShell(

158+

`

159+

set -euo pipefail

160+

export OPENCLAW_PLUGINS_SWEEP_SOURCE_ONLY=1

161+

source scripts/e2e/lib/plugins/sweep.sh

162+

printf '%s\\n' "$OPENCLAW_PLUGINS_TMP_DIR" > "$MARKER"

163+

test -d "$OPENCLAW_PLUGINS_TMP_DIR"

164+

cleanup_openclaw_plugins_sweep

165+

test ! -e "$OPENCLAW_PLUGINS_TMP_DIR"

166+

`,

167+

{ MARKER: marker },

168+

);

169+170+

expect(result.stdout).toBe("");

171+

expect(result.stderr).toBe("");

172+

expect(result.status).toBe(0);

173+

const scratchRoot = readFileSync(marker, "utf8").trim();

174+

expect(scratchRoot).toContain("/tmp/openclaw-plugins.");

175+

expect(existsSync(scratchRoot)).toBe(false);

176+

} finally {

177+

rmSync(root, { force: true, recursive: true });

178+

}

179+

});

180+181+

it("preserves caller-provided plugin sweep scratch roots", () => {

182+

const root = mkdtempSync(path.join(tmpdir(), "openclaw-plugin-sweep-caller-"));

183+

const scratchRoot = path.join(root, "scratch");

184+

try {

185+

const result = runPluginsSweepShell(

186+

`

187+

set -euo pipefail

188+

export OPENCLAW_PLUGINS_SWEEP_SOURCE_ONLY=1

189+

export OPENCLAW_PLUGINS_TMP_DIR="$SCRATCH_ROOT"

190+

source scripts/e2e/lib/plugins/sweep.sh

191+

test -d "$OPENCLAW_PLUGINS_TMP_DIR"

192+

cleanup_openclaw_plugins_sweep

193+

test -d "$OPENCLAW_PLUGINS_TMP_DIR"

194+

`,

195+

{ SCRATCH_ROOT: scratchRoot },

196+

);

197+198+

expect(result.stdout).toBe("");

199+

expect(result.stderr).toBe("");

200+

expect(result.status).toBe(0);

201+

expect(existsSync(scratchRoot)).toBe(true);

202+

} finally {

203+

rmSync(root, { force: true, recursive: true });

204+

}

205+

});

206+136207

it("cleans npm fixture registry children when readiness times out", () => {

137208

const root = mkdtempSync(path.join(tmpdir(), "openclaw-plugin-npm-fixture-cleanup-"));

138209

try {