mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-12 21:53:00 -06:00
c23d66e3b5
* refactor: consolidate coercion ownership * test: align shard check with weighted planning * chore: refresh plugin SDK API baseline
110 lines
4.1 KiB
TypeScript
110 lines
4.1 KiB
TypeScript
// Plugin Boundary Report tests cover plugin boundary report script behavior.
|
|
import { beforeAll, describe, expect, it } from "vitest";
|
|
import {
|
|
createPluginBoundaryReport,
|
|
isPluginCompatEligibleForRemoval,
|
|
type PluginBoundaryReportResult,
|
|
} from "../../scripts/plugin-boundary-report.js";
|
|
|
|
describe("plugin-boundary-report", () => {
|
|
let summaryResult: PluginBoundaryReportResult;
|
|
|
|
beforeAll(() => {
|
|
summaryResult = createPluginBoundaryReport(["--summary", "--json"]);
|
|
});
|
|
|
|
it("emits compact CI-safe summary JSON", () => {
|
|
const summary = JSON.parse(summaryResult.stdout) as {
|
|
compat?: {
|
|
removalPendingCount?: unknown;
|
|
removalPendingDueCount?: unknown;
|
|
removalPending?: Array<{
|
|
code?: unknown;
|
|
removeAfter?: unknown;
|
|
blocker?: unknown;
|
|
readerCount?: unknown;
|
|
readerSample?: unknown;
|
|
dueForReview?: unknown;
|
|
}>;
|
|
};
|
|
memoryHostSdk?: {
|
|
implementation?: unknown;
|
|
};
|
|
};
|
|
|
|
expect(summaryResult.exitCode).toBe(0);
|
|
expect(summaryResult.stderr).toBe("");
|
|
expect(summary.compat?.removalPendingCount).toBe(3);
|
|
expect(summary.compat?.removalPendingDueCount).toEqual(expect.any(Number));
|
|
expect(summary.compat?.removalPending?.map((record) => record.code)).toEqual([
|
|
"plugin-sdk-media-understanding-public-demotion",
|
|
"plugin-sdk-memory-host-core-public-demotion",
|
|
"plugin-sdk-plugin-config-runtime-public-demotion",
|
|
]);
|
|
for (const record of summary.compat?.removalPending ?? []) {
|
|
expect(record.removeAfter).toMatch(/^\d{4}-\d{2}-\d{2}$/u);
|
|
expect(record.blocker).toEqual(expect.stringMatching(/retain|replacement/iu));
|
|
expect(record.readerCount).toEqual(expect.any(Number));
|
|
expect(record.readerSample).toEqual(expect.arrayContaining([expect.any(String)]));
|
|
expect((record.readerSample as unknown[]).length).toBeLessThanOrEqual(5);
|
|
expect(record.dueForReview).toEqual(expect.any(Boolean));
|
|
}
|
|
expect(["private-core-bridge", "private-package-core-integrated"]).toContain(
|
|
summary.memoryHostSdk?.implementation,
|
|
);
|
|
});
|
|
|
|
it("treats removeAfter as the final compatibility day", () => {
|
|
expect(
|
|
isPluginCompatEligibleForRemoval("2026-08-12", new Date("2026-08-12T23:59:59.999Z")),
|
|
).toBe(false);
|
|
expect(
|
|
isPluginCompatEligibleForRemoval("2026-08-12", new Date("2026-08-13T00:00:00.000Z")),
|
|
).toBe(true);
|
|
expect(isPluginCompatEligibleForRemoval(undefined, new Date("2026-08-13T00:00:00.000Z"))).toBe(
|
|
false,
|
|
);
|
|
});
|
|
|
|
it("renders removal-pending blockers and reader references without changing fail gates", () => {
|
|
const result = createPluginBoundaryReport(["--summary"]);
|
|
|
|
expect(result.exitCode).toBe(0);
|
|
expect(result.stderr).toBe("");
|
|
expect(result.stdout).toContain("removalPending=3");
|
|
expect(result.stdout).not.toContain("agent-harness-sdk-alias");
|
|
expect(result.stdout).toMatch(/blocker=.*retain the public/iu);
|
|
expect(result.stdout).toMatch(/readerRefs=\d+ readers=/u);
|
|
});
|
|
|
|
it("reports the inbound reply dispatch major-version gate as date-ineligible", () => {
|
|
const jsonResult = createPluginBoundaryReport(["--json", "--owner", "channel"]);
|
|
const report = JSON.parse(jsonResult.stdout) as {
|
|
compat?: {
|
|
records?: Array<{
|
|
code?: unknown;
|
|
removeAfter?: unknown;
|
|
removalGate?: unknown;
|
|
eligibleForRemoval?: unknown;
|
|
}>;
|
|
};
|
|
};
|
|
const record = report.compat?.records?.find(
|
|
(candidate) => candidate.code === "plugin-sdk-inbound-reply-dispatch-subpath",
|
|
);
|
|
|
|
expect(jsonResult.exitCode).toBe(0);
|
|
expect(record).toMatchObject({
|
|
removalGate: "next-plugin-sdk-major",
|
|
eligibleForRemoval: false,
|
|
});
|
|
expect(record?.removeAfter).toBeUndefined();
|
|
|
|
const textResult = createPluginBoundaryReport(["--owner", "channel"]);
|
|
expect(textResult.stdout).toContain(
|
|
"next-plugin-sdk-major plugin-sdk-inbound-reply-dispatch-subpath",
|
|
);
|
|
expect(textResult.stdout).not.toContain("no-date plugin-sdk-inbound-reply-dispatch-subpath");
|
|
});
|
|
});
|