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

推荐订阅源

J
Java Code Geeks
腾讯CDC
Jina AI
Jina AI
博客园 - 司徒正美
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
GbyAI
GbyAI
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
小众软件
小众软件
M
MIT News - Artificial intelligence
MyScale Blog
MyScale Blog
D
Docker
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Google DeepMind News
Google DeepMind News
月光博客
月光博客
L
LangChain Blog
F
Fortinet All Blogs
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky
C
Check Point Blog
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
ci(dup): guard duplicate scan coverage · openclaw/opencla...
steipete · 2026-04-30 · via Recent Commits to openclaw:main

@@ -23,6 +23,12 @@ const targets = [

2323

"vitest.config.ts",

2424

];

252526+

const sourceExtensions = new Set([".ts", ".tsx", ".js", ".mjs", ".cjs"]);

27+

const sourcePattern = "**/*.{ts,tsx,js,mjs,cjs}";

28+

const testPattern = "**/*.{test,e2e.test,live.test}.{ts,tsx,js,mjs,cjs}";

29+

// Keep local agent support trees and vendored snapshots classified but outside jscpd.

30+

const intentionallyUnscannedPrefixes = [".agents/", ".pi/", "vendor/"];

31+2632

const generatedIgnores = [

2733

"extensions/qa-matrix/src/shared/**",

2834

"extensions/qa-matrix/src/report.ts",

@@ -42,8 +48,18 @@ const testIgnores = [

4248

"**/*.test.ts",

4349

"**/*.test.tsx",

4450

"**/*.test.js",

51+

"**/*.test.mjs",

52+

"**/*.test.cjs",

4553

"**/*.e2e.test.ts",

54+

"**/*.e2e.test.tsx",

55+

"**/*.e2e.test.js",

56+

"**/*.e2e.test.mjs",

57+

"**/*.e2e.test.cjs",

4658

"**/*.live.test.ts",

59+

"**/*.live.test.tsx",

60+

"**/*.live.test.js",

61+

"**/*.live.test.mjs",

62+

"**/*.live.test.cjs",

4763

];

48644965

const commonArgs = [

@@ -58,6 +74,58 @@ const commonArgs = [

5874

];

59756076

const json = process.argv.includes("--json");

77+

const coverageOnly = process.argv.includes("--coverage");

78+79+

function normalizeRepoPath(value) {

80+

return value.split(path.sep).join("/");

81+

}

82+83+

function isUnderPrefix(value, prefix) {

84+

return value === prefix.slice(0, -1) || value.startsWith(prefix);

85+

}

86+87+

function isCoveredByTargets(file) {

88+

return targets.some((target) => {

89+

const normalizedTarget = normalizeRepoPath(target);

90+

if (file === normalizedTarget) {

91+

return true;

92+

}

93+

return file.startsWith(`${normalizedTarget}/`);

94+

});

95+

}

96+97+

function listTrackedSourceFiles() {

98+

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

99+

cwd: repoRoot,

100+

encoding: "utf8",

101+

maxBuffer: 64 * 1024 * 1024,

102+

});

103+

if (result.status !== 0) {

104+

throw new Error(result.stderr || "git ls-files failed");

105+

}

106+

return result.stdout

107+

.split("\0")

108+

.filter(Boolean)

109+

.map(normalizeRepoPath)

110+

.filter((file) => sourceExtensions.has(path.extname(file)))

111+

.filter((file) => !intentionallyUnscannedPrefixes.some((prefix) => isUnderPrefix(file, prefix)))

112+

.toSorted((left, right) => left.localeCompare(right));

113+

}

114+115+

function assertTargetCoverage() {

116+

const uncovered = listTrackedSourceFiles().filter((file) => !isCoveredByTargets(file));

117+

if (uncovered.length === 0) {

118+

console.log(`[dup:check] target coverage ok`);

119+

return true;

120+

}

121+

console.error(

122+

"[dup:check] tracked duplicate-scan source files are outside scan targets or intentional excludes:",

123+

);

124+

for (const file of uncovered) {

125+

console.error(` - ${file}`);

126+

}

127+

return false;

128+

}

6112962130

function reportArgs(name) {

63131

if (!json) {

@@ -70,36 +138,39 @@ const scans = [

70138

{

71139

name: "production",

72140

targets,

73-

pattern: "**/*.{ts,tsx,js,mjs,cjs}",

141+

pattern: sourcePattern,

74142

ignore: [...testIgnores, ...generatedIgnores],

75143

},

76144

{

77145

name: "tests",

78146

targets,

79-

pattern: "**/*.{test,e2e.test,live.test}.{ts,tsx,js}",

147+

pattern: testPattern,

80148

ignore: generatedIgnores,

81149

},

82150

{

83151

name: "src-mixed",

84152

targets: ["src"],

85-

pattern: "**/*.{ts,tsx,js,mjs,cjs}",

153+

pattern: sourcePattern,

86154

ignore: generatedIgnores,

87155

},

88156

{

89157

name: "extensions-mixed",

90158

targets: ["extensions"],

91-

pattern: "**/*.{ts,tsx,js,mjs,cjs}",

159+

pattern: sourcePattern,

92160

ignore: generatedIgnores,

93161

},

94162

{

95163

name: "test-mixed",

96164

targets: ["test"],

97-

pattern: "**/*.{ts,tsx,js,mjs,cjs}",

165+

pattern: sourcePattern,

98166

ignore: generatedIgnores,

99167

},

100168

];

101169102-

let failed = false;

170+

let failed = !assertTargetCoverage();

171+

if (coverageOnly) {

172+

process.exit(failed ? 1 : 0);

173+

}

103174

for (const scan of scans) {

104175

console.log(`\n[dup:check] ${scan.name}`);

105176

const result = spawnSync(