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

推荐订阅源

D
Docker
B
Blog RSS Feed
Microsoft Security Blog
Microsoft Security Blog
Y
Y Combinator Blog
N
Netflix TechBlog - Medium
M
MIT News - Artificial intelligence
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
C
Check Point Blog
The GitHub Blog
The GitHub Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
P
Proofpoint News Feed
Martin Fowler
Martin Fowler
大猫的无限游戏
大猫的无限游戏
GbyAI
GbyAI
博客园_首页
A
About on SuperTechFans
Blog — PlanetScale
Blog — PlanetScale
人人都是产品经理
人人都是产品经理
T
Tailwind CSS Blog
aimingoo的专栏
aimingoo的专栏
T
The Blog of Author Tim Ferriss
The Cloudflare Blog

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(qa): expand smoke-ci and release categories and cove...
RomneyDa · 2026-06-16 · via Recent Commits to openclaw:main

@@ -18,6 +18,7 @@ const TEST_WEBCHAT_COVERAGE_ID = "ui.webchat";

1818

function testMaturityTaxonomy(params?: {

1919

categoryId?: string;

2020

coverageIds?: readonly string[];

21+

includeAllCategories?: boolean;

2122

profileCategoryIds?: readonly string[];

2223

}) {

2324

const categoryId = params?.categoryId ?? TEST_EXECUTABLE_CATEGORY_ID;

@@ -31,12 +32,16 @@ function testMaturityTaxonomy(params?: {

3132

{

3233

id: "smoke-ci",

3334

description: "Test smoke profile.",

35+

includeAllCategories: false,

3436

categoryIds: [],

3537

},

3638

{

3739

id: "release",

3840

description: "Test release profile.",

39-

categoryIds: [...(params?.profileCategoryIds ?? [categoryId])],

41+

includeAllCategories: params?.includeAllCategories ?? false,

42+

categoryIds: [

43+

...(params?.includeAllCategories ? [] : (params?.profileCategoryIds ?? [categoryId])),

44+

],

4045

},

4146

],

4247

surfaces: [

@@ -115,7 +120,10 @@ describe("qa coverage report", () => {

115120

]);

116121

expect(inventory.scorecardTaxonomy.profileCount).toBe(2);

117122

expect(inventory.scorecardTaxonomy.categoryCount).toBeGreaterThan(200);

118-

expect(inventory.scorecardTaxonomy.requiredCategoryCount).toBe(15);

123+

expect(inventory.scorecardTaxonomy.requiredCategoryCount).toBeGreaterThan(0);

124+

expect(inventory.scorecardTaxonomy.requiredCategoryCount).toBeLessThanOrEqual(

125+

inventory.scorecardTaxonomy.categoryCount,

126+

);

119127

expect(inventory.scorecardTaxonomy.requiredFeatureCount).toBeGreaterThan(0);

120128

expect(inventory.scorecardTaxonomy.fulfilledFeatureCount).toBeGreaterThan(0);

121129

expect(inventory.scorecardTaxonomy.taxonomyFulfillmentPercent).toBeGreaterThan(0);

@@ -124,30 +132,15 @@ describe("qa coverage report", () => {

124132

expect(inventory.scorecardTaxonomy.unknownCoverageIdCount).toBe(0);

125133

expect(inventory.scorecardTaxonomy.validationIssues.length).toBeGreaterThan(0);

126134

expect(

127-

inventory.scorecardTaxonomy.validationIssues.every(

135+

inventory.scorecardTaxonomy.validationIssues.some((issue) =>

136+

issue.code.endsWith("not-found"),

137+

),

138+

).toBe(false);

139+

expect(

140+

inventory.scorecardTaxonomy.validationIssues.some(

128141

(issue) => issue.code === "coverage-id-missing-primary-evidence",

129142

),

130143

).toBe(true);

131-

expect(

132-

inventory.scorecardTaxonomy.profiles

133-

.find((profile) => profile.id === "release")

134-

?.categoryIds.toSorted(),

135-

).toEqual([

136-

"agent-runtime-and-provider-execution.agent-turn-execution",

137-

"automation-cron-hooks-tasks-polling.cron-jobs",

138-

"browser-automation-and-exec-sandbox-tools.tool-invocation-and-execution",

139-

"browser-control-ui-and-webchat.browser-ui",

140-

"media-understanding-and-media-generation.media-generation",

141-

"media-understanding-and-media-generation.media-understanding",

142-

"openai-codex-provider-path.responses-and-tool-compatibility",

143-

"plugin-sdk-and-bundled-plugin-architecture.installing-and-running-plugins",

144-

"security-auth-pairing-and-secrets.approval-policy-and-tool-safeguards",

145-

"security-auth-pairing-and-secrets.credential-and-secret-hygiene",

146-

"session-memory-and-context-engine.diagnostics-maintenance-and-recovery",

147-

"session-memory-and-context-engine.memory",

148-

"session-memory-and-context-engine.token-management",

149-

"telemetry-diagnostics-and-observability.telemetry-export",

150-

]);

151144

expect(

152145

inventory.scorecardTaxonomy.categories.find(

153146

(category) => category.id === TEST_BROWSER_CATEGORY_ID,

@@ -349,6 +342,21 @@ describe("qa coverage report", () => {

349342

);

350343

});

351344345+

it("resolves all-category profiles from taxonomy categories", () => {

346+

const report = buildQaScorecardTaxonomyReport({

347+

taxonomy: testMaturityTaxonomy({

348+

includeAllCategories: true,

349+

}),

350+

repoRoot: process.cwd(),

351+

scenarios: [],

352+

});

353+354+

expect(report.profiles.find((profile) => profile.id === "release")?.categoryIds).toStrictEqual([

355+

TEST_EXECUTABLE_CATEGORY_ID,

356+

]);

357+

expect(report.requiredCategoryCount).toBe(1);

358+

});

359+352360

it("reports profile categories missing primary coverage evidence", () => {

353361

const report = buildQaScorecardTaxonomyReport({

354362

taxonomy: testMaturityTaxonomy(),