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

推荐订阅源

T
Tailwind CSS Blog
博客园 - 【当耐特】
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - Franky
小众软件
小众软件
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
B
Blog
有赞技术团队
有赞技术团队
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
Recent Announcements
Recent Announcements
Jina AI
Jina AI
Vercel News
Vercel News
博客园 - 叶小钗
Hugging Face - Blog
Hugging Face - Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
F
Fortinet All Blogs
The Cloudflare Blog
V
V2EX
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
腾讯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
test: speed up test project routing · openclaw/openclaw@1...
steipete · 2026-05-27 · via Recent Commits to openclaw:main

@@ -351,6 +351,7 @@ const PRECISE_SOURCE_TEST_TARGETS = new Map([

351351

],

352352

],

353353

]);

354+

const BROAD_ONLY_TEST_HELPERS = new Set(["test/helpers/poll.ts"]);

354355

const TOOLING_SOURCE_TEST_TARGETS = new Map([

355356

["scripts/github/barnacle-auto-response.mjs", ["test/scripts/barnacle-auto-response.test.ts"]],

356357

["scripts/changed-lanes.mjs", ["test/scripts/changed-lanes.test.ts"]],

@@ -593,6 +594,9 @@ const SOURCE_ROOTS_FOR_IMPORT_GRAPH = [

593594

"test",

594595

];

595596

const IMPORTABLE_FILE_EXTENSIONS = [".ts", ".tsx", ".mts", ".cts"];

597+

const IMPORT_GRAPH_GREP_PATHS = SOURCE_ROOTS_FOR_IMPORT_GRAPH.flatMap((root) =>

598+

IMPORTABLE_FILE_EXTENSIONS.map((ext) => `:(glob)${root}/**/*${ext}`),

599+

);

596600

const IMPORT_SPECIFIER_PATTERN =

597601

/\b(?:import|export)\s+(?:type\s+)?(?:[^'"]*?\s+from\s+)?["']([^"']+)["']|\bimport\s*\(\s*["']([^"']+)["']\s*\)/gu;

598602

const BROAD_CHANGED_ENV_KEY = "OPENCLAW_TEST_CHANGED_BROAD";

@@ -768,7 +772,7 @@ function isPathLikeTargetArg(arg, cwd) {

768772

if (!arg || arg === "--" || arg.startsWith("-")) {

769773

return false;

770774

}

771-

return isExistingPathTarget(arg, cwd) || isGlobTarget(arg) || isFileLikeTarget(arg);

775+

return isGlobTarget(arg) || isFileLikeTarget(arg) || isExistingPathTarget(arg, cwd);

772776

}

773777774778

function toRepoRelativeTarget(arg, cwd) {

@@ -844,7 +848,11 @@ export function findUnmatchedExplicitTestTargets(args, cwd = process.cwd()) {

844848

return [];

845849

}

846850847-

const candidateFiles = listExplicitTestTargetFilesForCwd(cwd);

851+

let candidateFiles = null;

852+

const getCandidateFiles = () => {

853+

candidateFiles ??= listExplicitTestTargetFilesForCwd(cwd);

854+

return candidateFiles;

855+

};

848856

const unmatched = [];

849857

for (const targetArg of targetArgs) {

850858

const relative = toRepoRelativeTarget(targetArg, cwd);

@@ -856,7 +864,7 @@ export function findUnmatchedExplicitTestTargets(args, cwd = process.cwd()) {

856864

continue;

857865

}

858866

if (isGlobTarget(relative)) {

859-

if (!includePatternMatchesAnyFile(relative, candidateFiles)) {

867+

if (!includePatternMatchesAnyFile(relative, getCandidateFiles())) {

860868

unmatched.push({

861869

target: targetArg,

862870

reason: "glob-matched-no-files",

@@ -879,7 +887,7 @@ export function findUnmatchedExplicitTestTargets(args, cwd = process.cwd()) {

879887

}

880888881889

const includePattern = toScopedIncludePattern(targetArg, cwd);

882-

if (!includePatternMatchesAnyFile(includePattern, candidateFiles)) {

890+

if (!includePatternMatchesAnyFile(includePattern, getCandidateFiles())) {

883891

unmatched.push({

884892

target: targetArg,

885893

reason: "target-matched-no-test-files",

@@ -991,12 +999,22 @@ function stripImportableGraphExtension(relative) {

991999

return relative;

9921000

}

9931001994-

function resolveImportGraphSearchTerm(relative) {

1002+

function resolveImportGraphSearchTerms(relative) {

1003+

const withoutExtension = stripImportableGraphExtension(relative);

9951004

const basename = path.posix.basename(stripImportableGraphExtension(relative));

9961005

if (basename === "index" || basename.length < 3) {

997-

return null;

1006+

return [];

1007+

}

1008+

const terms = [];

1009+

const segments = withoutExtension.split("/");

1010+

if (segments.length > 1) {

1011+

terms.push(segments.slice(-2).join("/"), withoutExtension);

1012+

}

1013+

if (relative.startsWith("test/helpers/")) {

1014+

return [...new Set(terms)];

9981015

}

999-

return basename;

1016+

terms.push(basename);

1017+

return [...new Set(terms)];

10001018

}

1001101910021020

function listImportGraphGrepMatches(cwd, term) {

@@ -1007,7 +1025,7 @@ function listImportGraphGrepMatches(cwd, term) {

1007102510081026

const result = spawnSync(

10091027

"git",

1010-

["grep", "-l", "--fixed-strings", term, "--", ...SOURCE_ROOTS_FOR_IMPORT_GRAPH],

1028+

["grep", "-l", "--fixed-strings", term, "--", ...IMPORT_GRAPH_GREP_PATHS],

10111029

{

10121030

cwd,

10131031

encoding: "utf8",

@@ -1036,39 +1054,52 @@ function findDirectImportersWithGitGrep(cwd, importedFile, fileSet) {

10361054

return cachedDirectImporters.get(cacheKey);

10371055

}

103810561039-

const term = resolveImportGraphSearchTerm(importedFile);

1040-

if (!term) {

1041-

cachedDirectImporters.set(cacheKey, null);

1042-

return null;

1043-

}

1044-1045-

const candidates = listImportGraphGrepMatches(cwd, term);

1046-

if (!candidates || candidates.length > 800) {

1057+

const terms = resolveImportGraphSearchTerms(importedFile);

1058+

if (terms.length === 0) {

10471059

cachedDirectImporters.set(cacheKey, null);

10481060

return null;

10491061

}

105010621063+

let skippedBroadTerm = false;

10511064

const importers = [];

1052-

for (const file of candidates) {

1053-

if (file === importedFile || !fileSet.has(file)) {

1054-

continue;

1065+

for (const term of terms) {

1066+

const candidates = listImportGraphGrepMatches(cwd, term);

1067+

if (!candidates) {

1068+

cachedDirectImporters.set(cacheKey, null);

1069+

return null;

10551070

}

1056-

let source = "";

1057-

try {

1058-

source = fs.readFileSync(path.join(cwd, file), "utf8");

1059-

} catch {

1071+

if (candidates.length > 800) {

1072+

skippedBroadTerm = true;

10601073

continue;

10611074

}

1062-

for (const match of source.matchAll(IMPORT_SPECIFIER_PATTERN)) {

1063-

const imported = resolveImportSpecifier(file, match[1] ?? match[2] ?? "", fileSet);

1064-

if (imported === importedFile) {

1065-

importers.push(file);

1066-

break;

1075+

for (const file of candidates) {

1076+

if (file === importedFile || !fileSet.has(file) || importers.includes(file)) {

1077+

continue;

1078+

}

1079+

let source = "";

1080+

try {

1081+

source = fs.readFileSync(path.join(cwd, file), "utf8");

1082+

} catch {

1083+

continue;

1084+

}

1085+

for (const match of source.matchAll(IMPORT_SPECIFIER_PATTERN)) {

1086+

const imported = resolveImportSpecifier(file, match[1] ?? match[2] ?? "", fileSet);

1087+

if (imported === importedFile) {

1088+

importers.push(file);

1089+

break;

1090+

}

10671091

}

10681092

}

1093+

if (importedFile.startsWith("test/helpers/") && importers.length > 0 && term.includes("/")) {

1094+

break;

1095+

}

10691096

}

1070-

cachedDirectImporters.set(cacheKey, importers);

1071-

return importers;

1097+

const result =

1098+

skippedBroadTerm && importers.length === 0 && !importedFile.startsWith("test/helpers/")

1099+

? null

1100+

: importers;

1101+

cachedDirectImporters.set(cacheKey, result);

1102+

return result;

10721103

}

1073110410741105

function resolveAffectedTestsFromTargetedImportScan(changedPath, cwd) {

@@ -1099,6 +1130,7 @@ function resolveAffectedTestsFromTargetedImportScan(changedPath, cwd) {

10991130

seen.add(importer);

11001131

if (testFiles.has(importer)) {

11011132

targets.push(importer);

1133+

continue;

11021134

}

11031135

queue.push(importer);

11041136

}

@@ -1323,6 +1355,13 @@ function resolveSiblingTestTarget(changedPath, cwd) {

13231355

return fs.existsSync(path.join(cwd, sibling)) ? sibling : null;

13241356

}

132513571358+

function shouldRouteChangedTargetWithoutImportGraph(changedPath) {

1359+

return (

1360+

changedPath.endsWith(".live.test.ts") ||

1361+

(changedPath.startsWith("ui/src/") && !changedPath.startsWith("ui/src/ui/"))

1362+

);

1363+

}

1364+13261365

function resolvePreciseChangedTestTargets(changedPath, options) {

13271366

const cwd = options.cwd ?? process.cwd();

13281367

const mappedTargets =

@@ -1337,6 +1376,12 @@ function resolvePreciseChangedTestTargets(changedPath, options) {

13371376

if (siblingTest) {

13381377

return [siblingTest];

13391378

}

1379+

if (BROAD_ONLY_TEST_HELPERS.has(changedPath)) {

1380+

return null;

1381+

}

1382+

if (shouldRouteChangedTargetWithoutImportGraph(changedPath)) {

1383+

return changedPath.startsWith("ui/src/") ? [changedPath] : null;

1384+

}

13401385

if (/^(?:src|test\/helpers|extensions|packages|ui\/src|ui\/config)\//u.test(changedPath)) {

13411386

const affectedTests = resolveAffectedTestsFromImportGraph(changedPath, cwd);

13421387

if (affectedTests.length > 0) {

@@ -1415,12 +1460,15 @@ function classifyTarget(arg, cwd) {

14151460

if (configTargetKind) {

14161461

return configTargetKind;

14171462

}

1418-

if (resolveUnitFastTestIncludePattern(relative)) {

1419-

return "unitFast";

1420-

}

14211463

if (isControlUiE2eTarget(relative)) {

14221464

return "uiE2e";

14231465

}

1466+

if (relative.startsWith("ui/src/")) {

1467+

if (isUnitUiTestTarget(relative)) {

1468+

return "unitUi";

1469+

}

1470+

return "ui";

1471+

}

14241472

if (relative.startsWith("src/tui/tui-pty-")) {

14251473

return "tuiPty";

14261474

}

@@ -1434,6 +1482,16 @@ function classifyTarget(arg, cwd) {

14341482

) {

14351483

return "e2e";

14361484

}

1485+

const channelContractKind = resolveChannelContractTargetKind(relative);

1486+

if (channelContractKind) {

1487+

return channelContractKind;

1488+

}

1489+

if (relative.startsWith("src/plugins/contracts/")) {

1490+

return "contractsPlugin";

1491+

}

1492+

if (resolveUnitFastTestIncludePattern(relative)) {

1493+

return "unitFast";

1494+

}

14371495

if (relative === "extensions") {

14381496

return "extensionFull";

14391497

}

@@ -1508,13 +1566,6 @@ function classifyTarget(arg, cwd) {

15081566

}

15091567

return isProviderExtensionRoot(extensionRoot) ? "extensionProvider" : "extension";

15101568

}

1511-

const channelContractKind = resolveChannelContractTargetKind(relative);

1512-

if (channelContractKind) {

1513-

return channelContractKind;

1514-

}

1515-

if (relative.startsWith("src/plugins/contracts/")) {

1516-

return "contractsPlugin";

1517-

}

15181569

if (isChannelSurfaceTestFile(relative)) {

15191570

return "channel";

15201571

}

@@ -1599,15 +1650,6 @@ function classifyTarget(arg, cwd) {

15991650

if (relative.startsWith("src/plugins/")) {

16001651

return "plugin";

16011652

}

1602-

if (relative.startsWith("ui/src/")) {

1603-

if (isControlUiE2eTarget(relative)) {

1604-

return "uiE2e";

1605-

}

1606-

if (isUnitUiTestTarget(relative)) {

1607-

return "unitUi";

1608-

}

1609-

return "ui";

1610-

}

16111653

if (relative.startsWith("src/utils/")) {

16121654

return "utils";

16131655

}