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

推荐订阅源

Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
L
LangChain Blog
I
InfoQ
D
Docker
F
Fortinet All Blogs
Y
Y Combinator Blog
Martin Fowler
Martin Fowler
月光博客
月光博客
B
Blog
Engineering at Meta
Engineering at Meta
T
Tailwind CSS Blog
罗磊的独立博客
博客园_首页
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
D
DataBreaches.Net
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog RSS Feed
IT之家
IT之家
V
V2EX

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(policy): add config coverage report (#87081) · openc...
giodl73-repo · 2026-06-27 · via Recent Commits to openclaw:main
1+

#!/usr/bin/env node

2+

import fs from "node:fs/promises";

3+

import path from "node:path";

4+

import { fileURLToPath } from "node:url";

5+

import JSON5 from "json5";

6+

import {

7+

renderConfigDocBaselineArtifacts,

8+

type ConfigDocBaselineEntry,

9+

} from "../src/config/doc-baseline.js";

10+11+

type ClassificationStatus = "observed" | "ignored" | "out-of-scope" | "deferred";

12+13+

type CoverageClassification = {

14+

readonly pattern: string;

15+

readonly status: ClassificationStatus;

16+

readonly area: string;

17+

readonly policy?: string;

18+

readonly reason: string;

19+

readonly allowNoSchemaPath?: boolean;

20+

};

21+22+

type CoverageConfig = {

23+

readonly monitored: readonly string[];

24+

readonly classifications: readonly CoverageClassification[];

25+

};

26+27+

type ConfigDocBaseline = {

28+

readonly coreEntries: readonly ConfigDocBaselineEntry[];

29+

readonly channelEntries: readonly ConfigDocBaselineEntry[];

30+

readonly pluginEntries: readonly ConfigDocBaselineEntry[];

31+

};

32+33+

function flattenConfigDocBaselineEntries(

34+

baseline: ConfigDocBaseline,

35+

): readonly ConfigDocBaselineEntry[] {

36+

return [...baseline.coreEntries, ...baseline.channelEntries, ...baseline.pluginEntries];

37+

}

38+39+

type ClassifiedEntry = {

40+

readonly path: string;

41+

readonly kind: ConfigDocBaselineEntry["kind"];

42+

readonly classification?: CoverageClassification;

43+

};

44+45+

type UnmatchedMonitoredPattern = {

46+

readonly pattern: string;

47+

};

48+49+

const args = new Set(process.argv.slice(2));

50+

const json = args.has("--json");

51+

const check = args.has("--check");

52+

const showCovered = args.has("--show-covered");

53+54+

if (args.has("--help")) {

55+

console.log(`Usage: pnpm policy:config-coverage [--check] [--json] [--show-covered]

56+57+

Internal maintainer report for Policy config coverage.

58+59+

Default mode is report-only and exits 0 even when paths are unclassified.

60+

Use --check when a policy maintainer intentionally wants unclassified or stale

61+

coverage entries to fail locally.`);

62+

process.exit(0);

63+

}

64+65+

const repoRoot = path.resolve(path.dirname(fileURLToPath(import.meta.url)), "..");

66+

const configPath = path.join(repoRoot, "scripts/lib/policy-config-coverage.jsonc");

67+68+

const config = JSON5.parse(await fs.readFile(configPath, "utf8")) as CoverageConfig;

69+

const { baseline } = await renderConfigDocBaselineArtifacts();

70+

const monitoredEntries = flattenConfigDocBaselineEntries(baseline)

71+

.filter((entry) => !entry.hasChildren)

72+

.filter((entry) => matchesAny(config.monitored, entry.path))

73+

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

74+

const leafEntries = flattenConfigDocBaselineEntries(baseline).filter((entry) => !entry.hasChildren);

75+

const unmatchedMonitored = config.monitored

76+

.filter(

77+

(pattern) =>

78+

!leafEntries.some((entry) => pathMatchesPattern(pattern, entry.path)) &&

79+

!config.classifications.some(

80+

(item) => item.allowNoSchemaPath === true && pathMatchesPattern(item.pattern, pattern),

81+

),

82+

)

83+

.map((pattern) => ({ pattern }))

84+

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

85+86+

const classified: ClassifiedEntry[] = monitoredEntries.map((entry) => ({

87+

path: entry.path,

88+

kind: entry.kind,

89+

classification: config.classifications.find((item) =>

90+

pathMatchesPattern(item.pattern, entry.path),

91+

),

92+

}));

93+

const unclassified = classified.filter((entry) => entry.classification === undefined);

94+

const stale = config.classifications.filter(

95+

(item) =>

96+

item.allowNoSchemaPath !== true &&

97+

!monitoredEntries.some((entry) => pathMatchesPattern(item.pattern, entry.path)),

98+

);

99+

const summaryCounts = summarize(classified);

100+101+

if (json) {

102+

console.log(

103+

JSON.stringify(

104+

{

105+

ok: unclassified.length === 0 && stale.length === 0 && unmatchedMonitored.length === 0,

106+

monitoredPaths: monitoredEntries.length,

107+

counts: summaryCounts,

108+

unclassified,

109+

unmatchedMonitored,

110+

stale,

111+

},

112+

null,

113+

2,

114+

),

115+

);

116+

} else {

117+

printTextReport({

118+

monitoredPaths: monitoredEntries.length,

119+

counts: summaryCounts,

120+

unclassified,

121+

unmatchedMonitored,

122+

stale,

123+

classified,

124+

});

125+

}

126+127+

if (check && (unclassified.length > 0 || stale.length > 0 || unmatchedMonitored.length > 0)) {

128+

process.exit(1);

129+

}

130+131+

function printTextReport(input: {

132+

readonly monitoredPaths: number;

133+

readonly counts: Record<string, number>;

134+

readonly unclassified: readonly ClassifiedEntry[];

135+

readonly unmatchedMonitored: readonly UnmatchedMonitoredPattern[];

136+

readonly stale: readonly CoverageClassification[];

137+

readonly classified: readonly ClassifiedEntry[];

138+

}): void {

139+

console.log(`Policy config coverage: ${input.monitoredPaths} monitored config leaf paths`);

140+

for (const [key, count] of Object.entries(input.counts).toSorted(([a], [b]) =>

141+

a.localeCompare(b),

142+

)) {

143+

console.log(` ${key}: ${count}`);

144+

}

145+146+

if (input.unclassified.length > 0) {

147+

console.log("\nUnclassified config paths:");

148+

for (const entry of input.unclassified) {

149+

console.log(` - ${entry.path} (${entry.kind})`);

150+

}

151+

console.log(

152+

"\nClassify each as observed, ignored, out-of-scope, or deferred in scripts/lib/policy-config-coverage.jsonc.",

153+

);

154+

} else {

155+

console.log("\nNo unclassified monitored config paths.");

156+

}

157+158+

if (input.unmatchedMonitored.length > 0) {

159+

console.log("\nMonitored patterns with no matching config paths:");

160+

for (const entry of input.unmatchedMonitored) {

161+

console.log(` - ${entry.pattern}`);

162+

}

163+

} else {

164+

console.log("\nNo monitored patterns without matching config paths.");

165+

}

166+167+

if (input.stale.length > 0) {

168+

console.log("\nStale coverage classifications:");

169+

for (const entry of input.stale) {

170+

console.log(` - ${entry.pattern} (${entry.area}, ${entry.status})`);

171+

}

172+

}

173+174+

if (showCovered) {

175+

console.log("\nCovered paths:");

176+

for (const entry of input.classified) {

177+

const classification = entry.classification;

178+

console.log(

179+

` - ${entry.path}: ${classification?.area ?? "unclassified"} / ${

180+

classification?.status ?? "unclassified"

181+

}`,

182+

);

183+

}

184+

}

185+

}

186+187+

function summarize(entries: readonly ClassifiedEntry[]): Record<string, number> {

188+

const counts: Record<string, number> = {};

189+

for (const entry of entries) {

190+

const key =

191+

entry.classification === undefined

192+

? "unclassified"

193+

: `${entry.classification.area}.${entry.classification.status}`;

194+

counts[key] = (counts[key] ?? 0) + 1;

195+

}

196+

return counts;

197+

}

198+199+

function matchesAny(patterns: readonly string[], value: string): boolean {

200+

return patterns.some((pattern) => pathMatchesPattern(pattern, value));

201+

}

202+203+

function pathMatchesPattern(pattern: string, value: string): boolean {

204+

const patternParts = pattern.split(".");

205+

const valueParts = value.split(".");

206+

return matchesParts(patternParts, valueParts);

207+

}

208+209+

function matchesParts(patternParts: readonly string[], valueParts: readonly string[]): boolean {

210+

if (patternParts.length === 0) {

211+

return valueParts.length === 0;

212+

}

213+

const [head, ...tail] = patternParts;

214+

if (head === "**") {

215+

if (tail.length === 0) {

216+

return true;

217+

}

218+

for (let index = 0; index <= valueParts.length; index += 1) {

219+

if (matchesParts(tail, valueParts.slice(index))) {

220+

return true;

221+

}

222+

}

223+

return false;

224+

}

225+

if (valueParts.length === 0) {

226+

return false;

227+

}

228+

if (head !== "*" && head !== valueParts[0]) {

229+

return false;

230+

}

231+

return matchesParts(tail, valueParts.slice(1));

232+

}