Files
adolf/test/scripts/kova-report-gate.test.ts
alvis bedb527145
Some checks failed
ClawSweeper Dispatch / dispatch (push) Has been cancelled
CodeQL / Security High (actions) (push) Has been cancelled
CodeQL / Security High (channel-runtime-boundary) (push) Has been cancelled
CodeQL / Security High (core-auth-secrets) (push) Has been cancelled
CodeQL / Security High (mcp-process-tool-boundary) (push) Has been cancelled
CodeQL / Security High (network-ssrf-boundary) (push) Has been cancelled
CodeQL / Security High (plugin-trust-boundary) (push) Has been cancelled
CodeQL / Security High (process-exec-boundary) (push) Has been cancelled
Docs Sync Publish Repo / sync-publish-repo (push) Has been cancelled
Docs / docs (push) Has been cancelled
OpenClaw Stable Main Closeout / Resolve stable release closeout inputs (push) Has been cancelled
OpenClaw Stable Main Closeout / Verify stable main closeout (push) Has been cancelled
Workflow Sanity / no-tabs (push) Has been cancelled
Workflow Sanity / actionlint (push) Has been cancelled
Workflow Sanity / generated-doc-baselines (push) Has been cancelled
CI / runner-admission (push) Has been cancelled
CI / preflight (push) Has been cancelled
CI / security-fast (push) Has been cancelled
CI / pnpm-store-warmup (push) Has been cancelled
CI / build-artifacts (push) Has been cancelled
CI / native-i18n (push) Has been cancelled
CI / ${{ matrix.check_name }} (push) Has been cancelled
CI / ${{ matrix.checkName }} (push) Has been cancelled
CI / checks-node-compat-node22 (push) Has been cancelled
CI / check-bundled-channel-config-metadata (push) Has been cancelled
CI / check-dependencies (push) Has been cancelled
CI / check-guards (push) Has been cancelled
CI / check-lint (push) Has been cancelled
CI / check-prod-types (push) Has been cancelled
CI / check-shrinkwrap (push) Has been cancelled
CI / check-test-types (push) Has been cancelled
CI / check-additional-boundaries-a (push) Has been cancelled
CI / check-additional-boundaries-bcd (push) Has been cancelled
CI / check-additional-extension-bundled (push) Has been cancelled
CI / check-additional-extension-channels (push) Has been cancelled
CI / check-additional-extension-package-boundary (push) Has been cancelled
CI / check-additional-runtime-topology-architecture (push) Has been cancelled
CI / check-session-accessor-boundary (push) Has been cancelled
CI / check-session-transcript-reader-boundary (push) Has been cancelled
CI / check-docs (push) Has been cancelled
CI / skills-python (push) Has been cancelled
CI / macos-swift (push) Has been cancelled
CI / ios-build (push) Has been cancelled
CI / ci-timings-summary (push) Has been cancelled
Native App Locale Refresh / Refresh native fa (push) Has been cancelled
Native App Locale Refresh / Refresh native fr (push) Has been cancelled
Native App Locale Refresh / Refresh native hi (push) Has been cancelled
Native App Locale Refresh / Refresh native id (push) Has been cancelled
Native App Locale Refresh / Refresh native it (push) Has been cancelled
Native App Locale Refresh / Refresh native ja-JP (push) Has been cancelled
Control UI Locale Refresh / plan (push) Has been cancelled
Control UI Locale Refresh / Refresh ${{ matrix.locale }} (push) Has been cancelled
Control UI Locale Refresh / Commit control UI locale refresh (push) Has been cancelled
Live Media Runner Image / Build live media runner image (push) Has been cancelled
Native App Locale Refresh / Refresh native ar (push) Has been cancelled
Native App Locale Refresh / Refresh native de (push) Has been cancelled
Native App Locale Refresh / Refresh native es (push) Has been cancelled
Native App Locale Refresh / Refresh native ko (push) Has been cancelled
Native App Locale Refresh / Refresh native nl (push) Has been cancelled
Native App Locale Refresh / Refresh native pl (push) Has been cancelled
Native App Locale Refresh / Refresh native pt-BR (push) Has been cancelled
Native App Locale Refresh / Refresh native ru (push) Has been cancelled
Native App Locale Refresh / Refresh native sv (push) Has been cancelled
Native App Locale Refresh / Refresh native th (push) Has been cancelled
Native App Locale Refresh / Refresh native tr (push) Has been cancelled
Native App Locale Refresh / Refresh native uk (push) Has been cancelled
Native App Locale Refresh / Refresh native vi (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-CN (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-TW (push) Has been cancelled
Native App Locale Refresh / Commit native locale refresh (push) Has been cancelled
Plugin Init Scaffold Validation / Validate provider scaffold (push) Has been cancelled
Plugin NPM Release / preview_plugins_npm (push) Has been cancelled
Plugin NPM Release / Validate release publish approval (push) Has been cancelled
Plugin NPM Release / preview_plugin_pack (push) Has been cancelled
Plugin NPM Release / publish_plugins_npm (push) Has been cancelled
Sandbox Common Smoke / sandbox-common-smoke (push) Has been cancelled
Website Installer Sync / static (push) Has been cancelled
Website Installer Sync / linux-docker (push) Has been cancelled
Website Installer Sync / macos-installer (push) Has been cancelled
Website Installer Sync / windows-installer (push) Has been cancelled
Website Installer Sync / sync-website (push) Has been cancelled
Vendor OpenClaw source as Adolf fork baseline
Adolf is a fork/vendored clone of github.com/openclaw/openclaw (v2026.6.11),
free to diverge. Tree copied sans upstream .git; upstream remote added for
future syncs. Node pinned to 24 (.nvmrc); engines already require >=22.19.
Preserves docs/ARCHITECTURE.md.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01LeqyaxJF2nbRXJtae2kNB2
2026-07-05 09:36:54 +00:00

224 lines
6.5 KiB
TypeScript

// Kova report gate tests cover tolerated PARTIAL performance verdict handling.
import { spawnSync } from "node:child_process";
import { copyFileSync, mkdirSync, mkdtempSync, rmSync, writeFileSync } from "node:fs";
import { tmpdir } from "node:os";
import { join } from "node:path";
import { afterEach, describe, expect, it } from "vitest";
import { evaluateToleratedPartialKovaReport } from "../../scripts/lib/kova-report-gate.mjs";
const tempRoots: string[] = [];
const SCRIPT_PATH = "scripts/lib/kova-report-gate.mjs";
function partialReport(overrides: Record<string, unknown> = {}) {
return {
baseline: { comparison: { regressionCount: 0 } },
gate: { verdict: "PARTIAL", blockingCount: 0 },
performance: {
groups: [
{
metrics: {
cpuPercentMax: { count: 1 },
resourcePeakGatewayRssMb: { count: 1 },
},
scenario: "gateway",
state: "clean",
},
],
},
records: [{ scenario: "gateway", state: "clean", status: "PASS" }],
summary: { statuses: { PASS: 3 } },
...overrides,
};
}
function writeReport(report: unknown): string {
const root = mkdtempSync(join(tmpdir(), "openclaw-kova-report-"));
tempRoots.push(root);
const reportPath = join(root, "report.json");
writeFileSync(reportPath, `${JSON.stringify(report)}\n`);
return reportPath;
}
afterEach(() => {
for (const root of tempRoots.splice(0)) {
rmSync(root, { recursive: true, force: true });
}
});
describe("scripts/lib/kova-report-gate.mjs", () => {
it("accepts partial reports only when selected scenarios passed", () => {
expect(evaluateToleratedPartialKovaReport(partialReport())).toEqual({ ok: true });
});
it("rejects partial reports with missing status summaries", () => {
expect(
evaluateToleratedPartialKovaReport(
partialReport({
summary: {},
}),
),
).toEqual({ ok: false, reason: "missing status summary" });
});
it("rejects partial reports without explicit blocking counts", () => {
expect(
evaluateToleratedPartialKovaReport(
partialReport({
gate: { verdict: "PARTIAL" },
}),
),
).toEqual({ ok: false, reason: "missing blocking count" });
});
it("rejects partial reports with malformed zero-like blocking counts", () => {
expect(
evaluateToleratedPartialKovaReport(
partialReport({
gate: { blockingCount: "", verdict: "PARTIAL" },
}),
),
).toEqual({ ok: false, reason: "missing blocking count" });
});
it("rejects partial reports without explicit baseline regression counts", () => {
expect(
evaluateToleratedPartialKovaReport(
partialReport({
baseline: {},
}),
),
).toEqual({ ok: false, reason: "missing baseline regression count" });
});
it("accepts partial reports without a baseline comparison", () => {
expect(
evaluateToleratedPartialKovaReport(
partialReport({
baseline: null,
}),
),
).toEqual({ ok: true });
});
it("rejects partial reports with malformed zero-like baseline regression counts", () => {
expect(
evaluateToleratedPartialKovaReport(
partialReport({
baseline: { comparison: { regressionCount: null } },
}),
),
).toEqual({ ok: false, reason: "missing baseline regression count" });
});
it("rejects partial reports without PASS records", () => {
expect(
evaluateToleratedPartialKovaReport(
partialReport({
summary: { statuses: { PASS: 0 } },
}),
),
).toEqual({ ok: false, reason: "status summary had no PASS records" });
});
it("rejects partial reports with non-pass records", () => {
expect(
evaluateToleratedPartialKovaReport(
partialReport({
summary: { statuses: { PASS: 2, FAIL: 1 } },
}),
),
).toEqual({ ok: false, reason: "non-pass statuses present: FAIL=1" });
});
it("rejects partial reports without selected scenario records", () => {
expect(
evaluateToleratedPartialKovaReport(
partialReport({
records: [],
}),
),
).toEqual({ ok: false, reason: "missing selected scenario records" });
});
it("rejects partial reports without performance groups", () => {
expect(
evaluateToleratedPartialKovaReport(
partialReport({
performance: {},
}),
),
).toEqual({ ok: false, reason: "missing performance groups" });
});
it("rejects partial reports without sampled RSS metrics", () => {
expect(
evaluateToleratedPartialKovaReport(
partialReport({
performance: {
groups: [
{
metrics: { cpuPercentMax: { count: 1 } },
scenario: "gateway",
state: "clean",
},
],
},
}),
),
).toEqual({ ok: false, reason: "missing sampled RSS metric in performance groups" });
});
it("rejects partial reports without sampled CPU metrics", () => {
expect(
evaluateToleratedPartialKovaReport(
partialReport({
performance: {
groups: [
{
metrics: { resourcePeakGatewayRssMb: { count: 1 } },
scenario: "gateway",
state: "clean",
},
],
},
}),
),
).toEqual({ ok: false, reason: "missing sampled CPU metric in performance groups" });
});
it("exits non-zero for malformed tolerated-partial candidates", () => {
const result = spawnSync(
process.execPath,
[SCRIPT_PATH, writeReport(partialReport({ summary: {} }))],
{
cwd: process.cwd(),
encoding: "utf8",
},
);
expect(result.status).toBe(1);
expect(result.stderr).toContain("missing status summary");
});
it("runs the CLI guard from paths that need file URL escaping", () => {
const root = mkdtempSync(join(tmpdir(), "openclaw-kova report-"));
tempRoots.push(root);
const scriptDir = join(root, "script dir");
mkdirSync(scriptDir);
const scriptPath = join(scriptDir, "kova-report-gate.mjs");
copyFileSync(SCRIPT_PATH, scriptPath);
const result = spawnSync(
process.execPath,
[scriptPath, writeReport(partialReport({ summary: {} }))],
{
cwd: process.cwd(),
encoding: "utf8",
},
);
expect(result.status).toBe(1);
expect(result.stderr).toContain("missing status summary");
});
});