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

推荐订阅源

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(test): avoid walking channel import guardrails · open...
vincentkoc · 2026-05-16 · via Recent Commits to openclaw:main

@@ -1,7 +1,8 @@

1-

import { existsSync, readdirSync, readFileSync } from "node:fs";

1+

import { spawnSync } from "node:child_process";

2+

import fs from "node:fs";

23

import { basename, dirname, resolve } from "node:path";

34

import { fileURLToPath } from "node:url";

4-

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

5+

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

56

import { classifyBundledExtensionSourcePath } from "../../../../scripts/lib/extension-source-classifier.mjs";

67

import { GUARDED_EXTENSION_PUBLIC_SURFACE_BASENAMES } from "../../../plugin-sdk/test-helpers/public-artifacts.js";

78

import { loadPluginManifestRegistry } from "../../../plugins/manifest-registry.js";

@@ -48,7 +49,7 @@ const GUARDED_CHANNEL_EXTENSIONS = new Set([

48494950

function resolveBundledPluginSourceRoot(rootDir: string): string {

5051

const sourceRoot = resolve(REPO_ROOT, BUNDLED_PLUGIN_ROOT_DIR, basename(rootDir));

51-

return existsSync(sourceRoot) ? sourceRoot : rootDir;

52+

return fs.existsSync(sourceRoot) ? sourceRoot : rootDir;

5253

}

53545455

function bundledPluginFile(pluginId: string, relativePath: string): string {

@@ -261,6 +262,7 @@ const RE_EXPORT_STAR_RE =

261262

const RE_EXPORT_NAMED_RE = /^\s*export\s+(?:type\s+)?\{[^}]*\}\s+from\s*["']([^"']+)["']/gmu;

262263

const DYNAMIC_IMPORT_RE = /\bimport\s*\(\s*["']([^"']+)["']\s*\)/gmu;

263264

const REQUIRE_RE = /\brequire\s*\(\s*["']([^"']+)["']\s*\)/gmu;

265+

const trackedSourceFilesByRoot = new Map<string, readonly string[] | null>();

264266265267

type SourceFileCollectorOptions = {

266268

rootDir: string;

@@ -274,7 +276,7 @@ function readSource(path: string): string {

274276

if (cached !== undefined) {

275277

return cached;

276278

}

277-

const text = readFileSync(fullPath, "utf8");

279+

const text = fs.readFileSync(fullPath, "utf8");

278280

sourceTextCache.set(fullPath, text);

279281

return text;

280282

}

@@ -283,21 +285,78 @@ function normalizePath(path: string): string {

283285

return path.replaceAll("\\", "/");

284286

}

285287288+

function repoRelativePath(path: string): string {

289+

const normalizedRepoRoot = normalizePath(REPO_ROOT);

290+

const normalizedPath = normalizePath(path);

291+

return normalizedPath.startsWith(normalizedRepoRoot)

292+

? normalizedPath.slice(normalizedRepoRoot.length + 1)

293+

: normalizedPath;

294+

}

295+296+

function listTrackedSourceFiles(options: SourceFileCollectorOptions): string[] | null {

297+

const relativeRoot = repoRelativePath(options.rootDir);

298+

if (!relativeRoot || relativeRoot.startsWith("..")) {

299+

return null;

300+

}

301+

if (trackedSourceFilesByRoot.has(relativeRoot)) {

302+

const files = trackedSourceFilesByRoot.get(relativeRoot);

303+

return files ? [...files] : null;

304+

}

305+

const result = spawnSync("git", ["ls-files", "--", relativeRoot], {

306+

cwd: REPO_ROOT,

307+

encoding: "utf8",

308+

stdio: ["ignore", "pipe", "ignore"],

309+

});

310+

if (result.status !== 0) {

311+

trackedSourceFilesByRoot.set(relativeRoot, null);

312+

return null;

313+

}

314+

const files = result.stdout

315+

.split("\n")

316+

.map((line) => line.trim().replaceAll("\\", "/"))

317+

.filter((line) => {

318+

if (!/\.(?:[cm]?ts|[cm]?js|tsx|jsx)$/u.test(line) || line.endsWith(".d.ts")) {

319+

return false;

320+

}

321+

const parts = line.split("/");

322+

return !parts.some(

323+

(part) => part === "node_modules" || part === "dist" || part === "coverage",

324+

);

325+

})

326+

.map((line) => resolve(REPO_ROOT, line))

327+

.filter((fullPath) => {

328+

const normalizedFullPath = normalizePath(fullPath);

329+

const entryName = basename(fullPath);

330+

return !(

331+

options.shouldSkipPath?.(normalizedFullPath) ||

332+

options.shouldSkipEntry?.({ entryName, normalizedFullPath })

333+

);

334+

})

335+

.toSorted();

336+

trackedSourceFilesByRoot.set(relativeRoot, files);

337+

return [...files];

338+

}

339+286340

function collectSourceFiles(

287341

cached: string[] | undefined | null,

288342

options: SourceFileCollectorOptions,

289343

): string[] {

290344

if (cached) {

291345

return cached;

292346

}

347+

const trackedFiles = listTrackedSourceFiles(options);

348+

if (trackedFiles) {

349+

return trackedFiles;

350+

}

351+293352

const files: string[] = [];

294353

const stack = [options.rootDir];

295354

while (stack.length > 0) {

296355

const current = stack.pop();

297356

if (!current) {

298357

continue;

299358

}

300-

for (const entry of readdirSync(current, { withFileTypes: true })) {

359+

for (const entry of fs.readdirSync(current, { withFileTypes: true })) {

301360

const fullPath = resolve(current, entry.name);

302361

const normalizedFullPath = normalizePath(fullPath);

303362

if (entry.isDirectory()) {

@@ -529,6 +588,22 @@ function expectCoreSourceStaysOffPluginSpecificSdkFacades(file: string, imports:

529588

}

530589531590

describe("channel import guardrails", () => {

591+

it("lists channel import guardrail sources from git without walking roots", () => {

592+

const readDir = vi.spyOn(fs, "readdirSync");

593+

try {

594+

const extensionSources = collectExtensionSourceFiles();

595+

const coreSources = collectCoreSourceFiles();

596+

const telegramSources = collectExtensionFiles("telegram");

597+598+

expect(extensionSources.length).toBeGreaterThan(0);

599+

expect(coreSources.length).toBeGreaterThan(0);

600+

expect(telegramSources.length).toBeGreaterThan(0);

601+

expect(readDir).not.toHaveBeenCalled();

602+

} finally {

603+

readDir.mockRestore();

604+

}

605+

});

606+532607

it("keeps channel helper modules off their own SDK barrels", () => {

533608

for (const source of SAME_CHANNEL_SDK_GUARDS) {

534609

const text = readSource(source.path);