Files
openclaw/test/scripts/plugin-sdk-surface-report.test.ts
Josh Avant 73a9eed95b refactor(audit): add canonical admitted-run context (#120534)
* feat(audit): carry canonical admitted execution context

* fix(agents): preserve admitted context across retries

* fix(worker): fence legacy launch dialect

* test(gateway): track approval temp dirs

* fix(plugin-sdk): preserve harness attempt compatibility

* fix: close delegated run authority at owner boundaries

* fix: internalize delegated authority validators

* refactor: split delegated authority proof surfaces

* refactor: centralize command admission identity

* test: claim runtime tool authority

* fix(gateway): keep lifecycle cleanup within static budgets

* fix(agents): revalidate harness policy authority

* fix(agents): fence awaited approval capability results

* test(copilot): supply required harness capability fixtures

* fix(agent): preserve scoped embedded run admission

* fix(agent): preserve keyless and worker authority

* test(agent): bind incomplete-turn authority

* docs: preserve execution authority invariants

* chore(plugin-sdk): regenerate API baseline

* fix(gateway): notify pending claim closure

* fix(gateway): revalidate delegated tool authority

* fix(plugin-sdk): keep source guard internal

* fix: close delegated authority races

* fix: revalidate delegated side effects

* fix: close harness authority projection gaps

* fix: align authority integration types

* fix: isolate settled harness finalization

* fix: fence recovery identity finalization

* fix: preserve committed session worktrees

* fix: preserve worker placement agent identity

* fix: fence active harness tool work

* fix(plugins): restore embedded run admission owner

* chore(plugin-sdk): compose integrated surface budgets

* fix(copilot): keep finalization attempt type internal

* fix(plugins): complete admission owner type imports

* test(harness): use settled finalization attempt shape

* fix(security): retain exact side-run and approval authority

* fix(security): preserve protected authority through terminal sweep

* fix(agents): follow moved recovery store owner

* fix(ci): align integrated authority owners with gates

* fix(plugins): distinguish embedded agent adapter export

* chore(plugin-sdk): regenerate API baseline after rolling integration

* refactor(gateway): keep session authority within owner budgets

* fix(gateway): keep session helpers private

* docs(plugin-sdk): name the V2 parameter subpath

* chore(integration): reconcile worker and SDK surfaces

* docs(plugin-sdk): require the V2 host API floor

* chore(plugin-sdk): regenerate after proxy-auth integration
2026-08-10 23:15:20 -05:00

192 lines
6.2 KiB
TypeScript

// Plugin Sdk Surface Report tests cover plugin sdk surface report script behavior.
import { spawnSync } from "node:child_process";
import fs from "node:fs";
import { beforeAll, describe, expect, it } from "vitest";
import {
collectPluginSdkSurfaceReport,
evaluatePluginSdkSurfaceReport,
readPluginSdkSurfaceBudgets,
} from "../../scripts/plugin-sdk-surface-report.mts";
const pluginSdkSurfaceBudgetEnvPattern = /^OPENCLAW_PLUGIN_SDK_MAX_/u;
function baseSurfaceReportEnv(): NodeJS.ProcessEnv {
return Object.fromEntries(
Object.entries(process.env).filter(([key]) => !pluginSdkSurfaceBudgetEnvPattern.test(key)),
);
}
function runSurfaceReport(env: Record<string, string>) {
return spawnSync(
process.execPath,
["--import", "tsx", "scripts/plugin-sdk-surface-report.mts", "--check"],
{
cwd: process.cwd(),
encoding: "utf8",
env: {
...baseSurfaceReportEnv(),
...env,
},
},
);
}
type PublicSurfaceCounts = {
callableExports: number;
exports: number;
wildcardReexports: number;
};
function readDefaultPublicSurfaceBudgets(): PublicSurfaceCounts {
const { budgets } = readPluginSdkSurfaceBudgets({});
return {
exports: budgets.publicExports,
callableExports: budgets.publicFunctionExports,
wildcardReexports: budgets.publicWildcardReexports,
};
}
type SurfaceReport = ReturnType<typeof collectPluginSdkSurfaceReport>;
let surfaceReport: SurfaceReport;
function readCurrentPublicSurfaceCounts(): PublicSurfaceCounts {
return {
exports: surfaceReport.publicStats.totals.exports,
callableExports: surfaceReport.publicStats.totals.callableExports,
wildcardReexports: surfaceReport.publicWildcards.count,
};
}
describe("plugin SDK surface report", () => {
beforeAll(() => {
surfaceReport = collectPluginSdkSurfaceReport();
});
it("rejects unknown CLI options before collecting SDK stats", () => {
for (const args of [["--chekc"], ["chekc", "--help"]]) {
const result = spawnSync(
process.execPath,
["--import", "tsx", "scripts/plugin-sdk-surface-report.mts", ...args],
{
cwd: process.cwd(),
encoding: "utf8",
},
);
expect(result.status).toBe(1);
expect(result.stdout).toBe("");
expect(result.stderr.trim()).toBe(`Unknown plugin SDK surface report option: ${args[0]}`);
expect(result.stderr).not.toContain("at ");
}
});
it("prints help before collecting SDK stats", () => {
const result = spawnSync(
process.execPath,
["--import", "tsx", "scripts/plugin-sdk-surface-report.mts", "--help"],
{
cwd: process.cwd(),
encoding: "utf8",
},
);
expect(result.status).toBe(0);
expect(result.stdout).toContain(
"Usage: node --import tsx scripts/plugin-sdk-surface-report.mts",
);
expect(result.stderr).toBe("");
expect(result.stdout).not.toContain("all SDK entrypoints:");
});
it("rejects loose numeric budget env vars before collecting SDK stats", () => {
const result = runSurfaceReport({
OPENCLAW_PLUGIN_SDK_MAX_PUBLIC_EXPORTS: "1e9",
});
expect(result.status).toBe(1);
expect(result.stdout).toBe("");
expect(result.stderr).toContain(
"OPENCLAW_PLUGIN_SDK_MAX_PUBLIC_EXPORTS must be a non-negative integer",
);
expect(result.stderr).not.toContain("at ");
});
it("rejects unsafe budget env vars before collecting SDK stats", () => {
const result = runSurfaceReport({
OPENCLAW_PLUGIN_SDK_MAX_PUBLIC_EXPORTS: "9007199254740992",
});
expect(result.status).toBe(1);
expect(result.stdout).toBe("");
expect(result.stderr).toContain(
"OPENCLAW_PLUGIN_SDK_MAX_PUBLIC_EXPORTS must be a safe non-negative integer",
);
expect(result.stderr).not.toContain("at ");
});
it("accepts exact deprecated export budget overrides by public entrypoint", () => {
const budgetConfig = readPluginSdkSurfaceBudgets({
OPENCLAW_PLUGIN_SDK_MAX_PUBLIC_DEPRECATED_EXPORTS_BY_ENTRYPOINT: JSON.stringify({ core: 3 }),
});
expect(evaluatePluginSdkSurfaceReport(surfaceReport, budgetConfig)).not.toContain(
expect.stringContaining("public deprecated exports in core"),
);
});
it("keeps default public surface budgets pinned to current source counts", () => {
expect(readDefaultPublicSurfaceBudgets()).toEqual(readCurrentPublicSurfaceCounts());
});
it("keeps approval store internals out of the deprecated infra barrel", () => {
const source = fs.readFileSync("src/plugin-sdk/infra-runtime.ts", "utf8");
expect(source).not.toMatch(/export\s+(?:type\s+)?\*\s+from\s+["'][^"']*exec-approvals/u);
for (const internalName of [
"ensureExecApprovalsSnapshot",
"persistAllowAlwaysDecisionLocked",
"recordAllowlistMatchesUseLocked",
"resolveExecApprovalsLocked",
"restoreExecApprovalsSnapshotLocked",
"updateExecApprovals",
]) {
expect(source).not.toContain(internalName);
}
});
it("rejects callable surface growth from the canonical source graph", () => {
const budget = readDefaultPublicSurfaceBudgets().callableExports;
const budgetConfig = readPluginSdkSurfaceBudgets({
OPENCLAW_PLUGIN_SDK_MAX_PUBLIC_FUNCTION_EXPORTS: String(budget - 1),
});
expect(evaluatePluginSdkSurfaceReport(surfaceReport, budgetConfig)).toContain(
`public callable exports ${budget} > ${budget - 1}`,
);
});
it("strips ambient CI budget overrides from CLI checks", () => {
const original = process.env.OPENCLAW_PLUGIN_SDK_MAX_PUBLIC_EXPORTS;
process.env.OPENCLAW_PLUGIN_SDK_MAX_PUBLIC_EXPORTS = "1";
try {
expect(baseSurfaceReportEnv()).not.toHaveProperty("OPENCLAW_PLUGIN_SDK_MAX_PUBLIC_EXPORTS");
} finally {
if (original === undefined) {
delete process.env.OPENCLAW_PLUGIN_SDK_MAX_PUBLIC_EXPORTS;
} else {
process.env.OPENCLAW_PLUGIN_SDK_MAX_PUBLIC_EXPORTS = original;
}
}
});
it("rejects deprecated export growth by public entrypoint", () => {
const budgetConfig = readPluginSdkSurfaceBudgets({
OPENCLAW_PLUGIN_SDK_MAX_PUBLIC_DEPRECATED_EXPORTS_BY_ENTRYPOINT: JSON.stringify({ core: 1 }),
});
expect(evaluatePluginSdkSurfaceReport(surfaceReport, budgetConfig)).toContain(
"public deprecated exports in core 3 > 1",
);
});
});