mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-28 20:46:57 +02:00
587 lines
21 KiB
TypeScript
587 lines
21 KiB
TypeScript
import { execFileSync } from "node:child_process";
|
|
import path from "node:path";
|
|
import { describe, expect, it, vi } from "vitest";
|
|
import {
|
|
detectChangedExtensionIds,
|
|
listAvailableExtensionIds,
|
|
listChangedExtensionIds,
|
|
} from "../../scripts/lib/changed-extensions.mjs";
|
|
import {
|
|
DEFAULT_EXTENSION_TEST_SHARD_COUNT,
|
|
createExtensionTestShards,
|
|
resolveExtensionBatchPlan,
|
|
resolveExtensionTestPlan,
|
|
} from "../../scripts/lib/extension-test-plan.mjs";
|
|
import {
|
|
resolveExtensionBatchParallelism,
|
|
runExtensionBatchPlan,
|
|
} from "../../scripts/test-extension-batch.mjs";
|
|
import { bundledPluginFile, bundledPluginRoot } from "../helpers/bundled-plugin-paths.js";
|
|
|
|
const scriptPath = path.join(process.cwd(), "scripts", "test-extension.mjs");
|
|
|
|
function runScript(args: string[], cwd = process.cwd()) {
|
|
return execFileSync(process.execPath, [scriptPath, ...args], {
|
|
cwd,
|
|
encoding: "utf8",
|
|
});
|
|
}
|
|
|
|
function findExtensionWithoutTests() {
|
|
const extensionId = listAvailableExtensionIds().find(
|
|
(candidate) => !resolveExtensionTestPlan({ targetArg: candidate, cwd: process.cwd() }).hasTests,
|
|
);
|
|
|
|
expect(extensionId).toBeDefined();
|
|
return extensionId ?? "missing-no-test-extension";
|
|
}
|
|
|
|
describe("scripts/test-extension.mjs", () => {
|
|
it("resolves split channel extensions onto their own vitest configs", () => {
|
|
const plan = resolveExtensionTestPlan({ targetArg: "slack", cwd: process.cwd() });
|
|
|
|
expect(plan.extensionId).toBe("slack");
|
|
expect(plan.extensionDir).toBe(bundledPluginRoot("slack"));
|
|
expect(plan.config).toBe("test/vitest/vitest.extension-slack.config.ts");
|
|
expect(plan.roots).toContain(bundledPluginRoot("slack"));
|
|
expect(plan.hasTests).toBe(true);
|
|
});
|
|
|
|
it("resolves bluebubbles onto the bluebubbles vitest config", () => {
|
|
const plan = resolveExtensionTestPlan({ targetArg: "bluebubbles", cwd: process.cwd() });
|
|
|
|
expect(plan.extensionId).toBe("bluebubbles");
|
|
expect(plan.config).toBe("test/vitest/vitest.extension-bluebubbles.config.ts");
|
|
expect(plan.roots).toContain(bundledPluginRoot("bluebubbles"));
|
|
expect(plan.hasTests).toBe(true);
|
|
});
|
|
|
|
it("resolves acpx onto the acpx vitest config", () => {
|
|
const plan = resolveExtensionTestPlan({ targetArg: "acpx", cwd: process.cwd() });
|
|
|
|
expect(plan.extensionId).toBe("acpx");
|
|
expect(plan.config).toBe("test/vitest/vitest.extension-acpx.config.ts");
|
|
expect(plan.roots).toContain(bundledPluginRoot("acpx"));
|
|
expect(plan.hasTests).toBe(true);
|
|
});
|
|
|
|
it("resolves diffs onto the diffs vitest config", () => {
|
|
const plan = resolveExtensionTestPlan({ targetArg: "diffs", cwd: process.cwd() });
|
|
|
|
expect(plan.extensionId).toBe("diffs");
|
|
expect(plan.config).toBe("test/vitest/vitest.extension-diffs.config.ts");
|
|
expect(plan.roots).toContain(bundledPluginRoot("diffs"));
|
|
expect(plan.hasTests).toBe(true);
|
|
});
|
|
|
|
it("resolves feishu onto the feishu vitest config", () => {
|
|
const plan = resolveExtensionTestPlan({ targetArg: "feishu", cwd: process.cwd() });
|
|
|
|
expect(plan.extensionId).toBe("feishu");
|
|
expect(plan.config).toBe("test/vitest/vitest.extension-feishu.config.ts");
|
|
expect(plan.roots).toContain(bundledPluginRoot("feishu"));
|
|
expect(plan.hasTests).toBe(true);
|
|
});
|
|
|
|
it("resolves OpenAI onto its own provider vitest config", () => {
|
|
const plan = resolveExtensionTestPlan({ targetArg: "openai", cwd: process.cwd() });
|
|
|
|
expect(plan.extensionId).toBe("openai");
|
|
expect(plan.config).toBe("test/vitest/vitest.extension-provider-openai.config.ts");
|
|
expect(plan.roots).toContain(bundledPluginRoot("openai"));
|
|
expect(plan.hasTests).toBe(true);
|
|
});
|
|
|
|
it("resolves matrix onto the matrix vitest config", () => {
|
|
const plan = resolveExtensionTestPlan({ targetArg: "matrix", cwd: process.cwd() });
|
|
|
|
expect(plan.extensionId).toBe("matrix");
|
|
expect(plan.config).toBe("test/vitest/vitest.extension-matrix.config.ts");
|
|
expect(plan.roots).toContain(bundledPluginRoot("matrix"));
|
|
expect(plan.hasTests).toBe(true);
|
|
});
|
|
|
|
it("resolves telegram onto the telegram vitest config", () => {
|
|
const plan = resolveExtensionTestPlan({ targetArg: "telegram", cwd: process.cwd() });
|
|
|
|
expect(plan.extensionId).toBe("telegram");
|
|
expect(plan.config).toBe("test/vitest/vitest.extension-telegram.config.ts");
|
|
expect(plan.roots).toContain(bundledPluginRoot("telegram"));
|
|
expect(plan.hasTests).toBe(true);
|
|
});
|
|
|
|
it("resolves whatsapp onto the whatsapp vitest config", () => {
|
|
const plan = resolveExtensionTestPlan({ targetArg: "whatsapp", cwd: process.cwd() });
|
|
|
|
expect(plan.extensionId).toBe("whatsapp");
|
|
expect(plan.config).toBe("test/vitest/vitest.extension-whatsapp.config.ts");
|
|
expect(plan.roots).toContain(bundledPluginRoot("whatsapp"));
|
|
expect(plan.hasTests).toBe(true);
|
|
});
|
|
|
|
it("resolves voice-call onto the voice-call vitest config", () => {
|
|
const plan = resolveExtensionTestPlan({ targetArg: "voice-call", cwd: process.cwd() });
|
|
|
|
expect(plan.extensionId).toBe("voice-call");
|
|
expect(plan.config).toBe("test/vitest/vitest.extension-voice-call.config.ts");
|
|
expect(plan.roots).toContain(bundledPluginRoot("voice-call"));
|
|
expect(plan.hasTests).toBe(true);
|
|
});
|
|
|
|
it("resolves mattermost onto the mattermost vitest config", () => {
|
|
const plan = resolveExtensionTestPlan({ targetArg: "mattermost", cwd: process.cwd() });
|
|
|
|
expect(plan.extensionId).toBe("mattermost");
|
|
expect(plan.config).toBe("test/vitest/vitest.extension-mattermost.config.ts");
|
|
expect(plan.roots).toContain(bundledPluginRoot("mattermost"));
|
|
expect(plan.hasTests).toBe(true);
|
|
});
|
|
|
|
it("resolves irc onto the irc vitest config", () => {
|
|
const plan = resolveExtensionTestPlan({ targetArg: "irc", cwd: process.cwd() });
|
|
|
|
expect(plan.extensionId).toBe("irc");
|
|
expect(plan.config).toBe("test/vitest/vitest.extension-irc.config.ts");
|
|
expect(plan.roots).toContain(bundledPluginRoot("irc"));
|
|
expect(plan.hasTests).toBe(true);
|
|
});
|
|
|
|
it("resolves zalo onto the zalo vitest config", () => {
|
|
const plan = resolveExtensionTestPlan({ targetArg: "zalo", cwd: process.cwd() });
|
|
|
|
expect(plan.extensionId).toBe("zalo");
|
|
expect(plan.config).toBe("test/vitest/vitest.extension-zalo.config.ts");
|
|
expect(plan.roots).toContain(bundledPluginRoot("zalo"));
|
|
expect(plan.hasTests).toBe(true);
|
|
});
|
|
|
|
it("resolves memory extensions onto the memory vitest config", () => {
|
|
const plan = resolveExtensionTestPlan({ targetArg: "memory-core", cwd: process.cwd() });
|
|
|
|
expect(plan.extensionId).toBe("memory-core");
|
|
expect(plan.config).toBe("test/vitest/vitest.extension-memory.config.ts");
|
|
expect(plan.roots).toContain(bundledPluginRoot("memory-core"));
|
|
expect(plan.hasTests).toBe(true);
|
|
});
|
|
|
|
it("resolves msteams onto the msteams vitest config", () => {
|
|
const plan = resolveExtensionTestPlan({ targetArg: "msteams", cwd: process.cwd() });
|
|
|
|
expect(plan.extensionId).toBe("msteams");
|
|
expect(plan.config).toBe("test/vitest/vitest.extension-msteams.config.ts");
|
|
expect(plan.roots).toContain(bundledPluginRoot("msteams"));
|
|
expect(plan.hasTests).toBe(true);
|
|
});
|
|
|
|
it("resolves broad dedicated extension groups onto their narrow vitest configs", () => {
|
|
expect(resolveExtensionTestPlan({ targetArg: "browser", cwd: process.cwd() }).config).toBe(
|
|
"test/vitest/vitest.extension-browser.config.ts",
|
|
);
|
|
expect(resolveExtensionTestPlan({ targetArg: "qa-lab", cwd: process.cwd() }).config).toBe(
|
|
"test/vitest/vitest.extension-qa.config.ts",
|
|
);
|
|
expect(resolveExtensionTestPlan({ targetArg: "vydra", cwd: process.cwd() }).config).toBe(
|
|
"test/vitest/vitest.extension-media.config.ts",
|
|
);
|
|
expect(resolveExtensionTestPlan({ targetArg: "firecrawl", cwd: process.cwd() }).config).toBe(
|
|
"test/vitest/vitest.extension-misc.config.ts",
|
|
);
|
|
});
|
|
|
|
it("keeps unmatched non-provider extensions on the shared extensions vitest config", () => {
|
|
const plan = resolveExtensionTestPlan({ targetArg: "codex", cwd: process.cwd() });
|
|
|
|
expect(plan.extensionId).toBe("codex");
|
|
expect(plan.config).toBe("test/vitest/vitest.extensions.config.ts");
|
|
expect(plan.roots).toContain(bundledPluginRoot("codex"));
|
|
expect(plan.hasTests).toBe(true);
|
|
});
|
|
|
|
it("omits src/<extension> when no paired core root exists", () => {
|
|
const plan = resolveExtensionTestPlan({ targetArg: "line", cwd: process.cwd() });
|
|
|
|
expect(plan.roots).toContain(bundledPluginRoot("line"));
|
|
expect(plan.roots).not.toContain("src/line");
|
|
expect(plan.config).toBe("test/vitest/vitest.extension-line.config.ts");
|
|
expect(plan.hasTests).toBe(true);
|
|
});
|
|
|
|
it("infers the extension from the current working directory", () => {
|
|
const cwd = path.join(process.cwd(), "extensions", "slack");
|
|
const plan = resolveExtensionTestPlan({ cwd });
|
|
|
|
expect(plan.extensionId).toBe("slack");
|
|
expect(plan.extensionDir).toBe(bundledPluginRoot("slack"));
|
|
});
|
|
|
|
it("maps changed paths back to extension ids", () => {
|
|
const extensionIds = detectChangedExtensionIds([
|
|
bundledPluginFile("slack", "src/channel.ts"),
|
|
"src/line/message.test.ts",
|
|
bundledPluginFile("firecrawl", "package.json"),
|
|
"src/not-a-plugin/file.ts",
|
|
]);
|
|
|
|
expect(extensionIds).toEqual(["firecrawl", "line", "slack"]);
|
|
});
|
|
|
|
it("lists available extension ids", () => {
|
|
const extensionIds = listAvailableExtensionIds();
|
|
|
|
expect(extensionIds).toContain("slack");
|
|
expect(extensionIds).toContain("firecrawl");
|
|
expect(extensionIds).toEqual(
|
|
[...extensionIds].toSorted((left, right) => left.localeCompare(right)),
|
|
);
|
|
});
|
|
|
|
it("can fail safe to all extensions when the base revision is unavailable", () => {
|
|
const extensionIds = listChangedExtensionIds({
|
|
base: "deadbeefdeadbeefdeadbeefdeadbeefdeadbeef",
|
|
unavailableBaseBehavior: "all",
|
|
});
|
|
|
|
expect(extensionIds).toEqual(listAvailableExtensionIds());
|
|
});
|
|
|
|
it("resolves a plan for extensions without tests", () => {
|
|
const extensionId = findExtensionWithoutTests();
|
|
const plan = resolveExtensionTestPlan({ cwd: process.cwd(), targetArg: extensionId });
|
|
|
|
expect(plan.extensionId).toBe(extensionId);
|
|
expect(plan.hasTests).toBe(false);
|
|
expect(plan.testFileCount).toBe(0);
|
|
});
|
|
|
|
it("batches extensions into config-specific vitest invocations", () => {
|
|
const batch = resolveExtensionBatchPlan({
|
|
cwd: process.cwd(),
|
|
extensionIds: [
|
|
"slack",
|
|
"firecrawl",
|
|
"line",
|
|
"openai",
|
|
"matrix",
|
|
"telegram",
|
|
"mattermost",
|
|
"voice-call",
|
|
"whatsapp",
|
|
"zalo",
|
|
"zalouser",
|
|
"memory-core",
|
|
"msteams",
|
|
"feishu",
|
|
"irc",
|
|
"bluebubbles",
|
|
"acpx",
|
|
"diffs",
|
|
"browser",
|
|
"qa-lab",
|
|
"vydra",
|
|
],
|
|
});
|
|
|
|
expect(batch.extensionIds).toEqual([
|
|
"acpx",
|
|
"bluebubbles",
|
|
"browser",
|
|
"diffs",
|
|
"feishu",
|
|
"firecrawl",
|
|
"irc",
|
|
"line",
|
|
"matrix",
|
|
"mattermost",
|
|
"memory-core",
|
|
"msteams",
|
|
"openai",
|
|
"qa-lab",
|
|
"slack",
|
|
"telegram",
|
|
"voice-call",
|
|
"vydra",
|
|
"whatsapp",
|
|
"zalo",
|
|
"zalouser",
|
|
]);
|
|
expect(batch.planGroups).toEqual([
|
|
{
|
|
config: "test/vitest/vitest.extension-acpx.config.ts",
|
|
estimatedCost: expect.any(Number),
|
|
extensionIds: ["acpx"],
|
|
roots: [bundledPluginRoot("acpx")],
|
|
testFileCount: expect.any(Number),
|
|
},
|
|
{
|
|
config: "test/vitest/vitest.extension-bluebubbles.config.ts",
|
|
estimatedCost: expect.any(Number),
|
|
extensionIds: ["bluebubbles"],
|
|
roots: [bundledPluginRoot("bluebubbles")],
|
|
testFileCount: expect.any(Number),
|
|
},
|
|
{
|
|
config: "test/vitest/vitest.extension-browser.config.ts",
|
|
estimatedCost: expect.any(Number),
|
|
extensionIds: ["browser"],
|
|
roots: [bundledPluginRoot("browser")],
|
|
testFileCount: expect.any(Number),
|
|
},
|
|
{
|
|
config: "test/vitest/vitest.extension-diffs.config.ts",
|
|
estimatedCost: expect.any(Number),
|
|
extensionIds: ["diffs"],
|
|
roots: [bundledPluginRoot("diffs")],
|
|
testFileCount: expect.any(Number),
|
|
},
|
|
{
|
|
config: "test/vitest/vitest.extension-feishu.config.ts",
|
|
estimatedCost: expect.any(Number),
|
|
extensionIds: ["feishu"],
|
|
roots: [bundledPluginRoot("feishu")],
|
|
testFileCount: expect.any(Number),
|
|
},
|
|
{
|
|
config: "test/vitest/vitest.extension-irc.config.ts",
|
|
estimatedCost: expect.any(Number),
|
|
extensionIds: ["irc"],
|
|
roots: [bundledPluginRoot("irc")],
|
|
testFileCount: expect.any(Number),
|
|
},
|
|
{
|
|
config: "test/vitest/vitest.extension-line.config.ts",
|
|
estimatedCost: expect.any(Number),
|
|
extensionIds: ["line"],
|
|
roots: [bundledPluginRoot("line")],
|
|
testFileCount: expect.any(Number),
|
|
},
|
|
{
|
|
config: "test/vitest/vitest.extension-matrix.config.ts",
|
|
estimatedCost: expect.any(Number),
|
|
extensionIds: ["matrix"],
|
|
roots: [bundledPluginRoot("matrix")],
|
|
testFileCount: expect.any(Number),
|
|
},
|
|
{
|
|
config: "test/vitest/vitest.extension-mattermost.config.ts",
|
|
estimatedCost: expect.any(Number),
|
|
extensionIds: ["mattermost"],
|
|
roots: [bundledPluginRoot("mattermost")],
|
|
testFileCount: expect.any(Number),
|
|
},
|
|
{
|
|
config: "test/vitest/vitest.extension-media.config.ts",
|
|
estimatedCost: expect.any(Number),
|
|
extensionIds: ["vydra"],
|
|
roots: [bundledPluginRoot("vydra")],
|
|
testFileCount: expect.any(Number),
|
|
},
|
|
{
|
|
config: "test/vitest/vitest.extension-memory.config.ts",
|
|
estimatedCost: expect.any(Number),
|
|
extensionIds: ["memory-core"],
|
|
roots: [bundledPluginRoot("memory-core")],
|
|
testFileCount: expect.any(Number),
|
|
},
|
|
{
|
|
config: "test/vitest/vitest.extension-misc.config.ts",
|
|
estimatedCost: expect.any(Number),
|
|
extensionIds: ["firecrawl"],
|
|
roots: [bundledPluginRoot("firecrawl")],
|
|
testFileCount: expect.any(Number),
|
|
},
|
|
{
|
|
config: "test/vitest/vitest.extension-msteams.config.ts",
|
|
estimatedCost: expect.any(Number),
|
|
extensionIds: ["msteams"],
|
|
roots: [bundledPluginRoot("msteams")],
|
|
testFileCount: expect.any(Number),
|
|
},
|
|
{
|
|
config: "test/vitest/vitest.extension-provider-openai.config.ts",
|
|
estimatedCost: expect.any(Number),
|
|
extensionIds: ["openai"],
|
|
roots: [bundledPluginRoot("openai")],
|
|
testFileCount: expect.any(Number),
|
|
},
|
|
{
|
|
config: "test/vitest/vitest.extension-qa.config.ts",
|
|
estimatedCost: expect.any(Number),
|
|
extensionIds: ["qa-lab"],
|
|
roots: [bundledPluginRoot("qa-lab")],
|
|
testFileCount: expect.any(Number),
|
|
},
|
|
{
|
|
config: "test/vitest/vitest.extension-slack.config.ts",
|
|
estimatedCost: expect.any(Number),
|
|
extensionIds: ["slack"],
|
|
roots: [bundledPluginRoot("slack")],
|
|
testFileCount: expect.any(Number),
|
|
},
|
|
{
|
|
config: "test/vitest/vitest.extension-telegram.config.ts",
|
|
estimatedCost: expect.any(Number),
|
|
extensionIds: ["telegram"],
|
|
roots: [bundledPluginRoot("telegram")],
|
|
testFileCount: expect.any(Number),
|
|
},
|
|
{
|
|
config: "test/vitest/vitest.extension-voice-call.config.ts",
|
|
estimatedCost: expect.any(Number),
|
|
extensionIds: ["voice-call"],
|
|
roots: [bundledPluginRoot("voice-call")],
|
|
testFileCount: expect.any(Number),
|
|
},
|
|
{
|
|
config: "test/vitest/vitest.extension-whatsapp.config.ts",
|
|
estimatedCost: expect.any(Number),
|
|
extensionIds: ["whatsapp"],
|
|
roots: [bundledPluginRoot("whatsapp")],
|
|
testFileCount: expect.any(Number),
|
|
},
|
|
{
|
|
config: "test/vitest/vitest.extension-zalo.config.ts",
|
|
estimatedCost: expect.any(Number),
|
|
extensionIds: ["zalo", "zalouser"],
|
|
roots: [bundledPluginRoot("zalo"), bundledPluginRoot("zalouser")],
|
|
testFileCount: expect.any(Number),
|
|
},
|
|
]);
|
|
});
|
|
|
|
it("balances extension test shards by estimated CI cost", () => {
|
|
const shards = createExtensionTestShards({
|
|
cwd: process.cwd(),
|
|
shardCount: DEFAULT_EXTENSION_TEST_SHARD_COUNT,
|
|
});
|
|
|
|
expect(shards).toHaveLength(DEFAULT_EXTENSION_TEST_SHARD_COUNT);
|
|
expect(shards.map((shard) => shard.checkName)).toEqual(
|
|
shards.map((shard, index) => `checks-node-extensions-shard-${index + 1}`),
|
|
);
|
|
|
|
const assigned = shards.flatMap((shard) => shard.extensionIds);
|
|
const uniqueAssigned = [...new Set(assigned)];
|
|
const expected = listAvailableExtensionIds().filter(
|
|
(extensionId) =>
|
|
resolveExtensionTestPlan({ cwd: process.cwd(), targetArg: extensionId }).hasTests,
|
|
);
|
|
|
|
expect(uniqueAssigned.toSorted((left, right) => left.localeCompare(right))).toEqual(
|
|
expected.toSorted((left, right) => left.localeCompare(right)),
|
|
);
|
|
expect(assigned).toHaveLength(expected.length);
|
|
|
|
const totals = shards.map((shard) => shard.estimatedCost);
|
|
expect(Math.max(...totals) - Math.min(...totals)).toBeLessThanOrEqual(1);
|
|
|
|
const browserShardIndex = shards.findIndex((shard) => shard.extensionIds.includes("browser"));
|
|
const imessageShardIndex = shards.findIndex((shard) => shard.extensionIds.includes("imessage"));
|
|
const mattermostShardIndex = shards.findIndex((shard) =>
|
|
shard.extensionIds.includes("mattermost"),
|
|
);
|
|
const openAiShardIndex = shards.findIndex((shard) => shard.extensionIds.includes("openai"));
|
|
const qaLabShardIndex = shards.findIndex((shard) => shard.extensionIds.includes("qa-lab"));
|
|
const whatsappShardIndex = shards.findIndex((shard) => shard.extensionIds.includes("whatsapp"));
|
|
|
|
expect(browserShardIndex).toBeGreaterThanOrEqual(0);
|
|
expect(imessageShardIndex).toBeGreaterThanOrEqual(0);
|
|
expect(mattermostShardIndex).toBeGreaterThanOrEqual(0);
|
|
expect(openAiShardIndex).toBeGreaterThanOrEqual(0);
|
|
expect(qaLabShardIndex).toBeGreaterThanOrEqual(0);
|
|
expect(whatsappShardIndex).toBeGreaterThanOrEqual(0);
|
|
expect(browserShardIndex).not.toBe(qaLabShardIndex);
|
|
expect(imessageShardIndex).not.toBe(openAiShardIndex);
|
|
expect(mattermostShardIndex).not.toBe(whatsappShardIndex);
|
|
});
|
|
|
|
it("runs extension batch config groups concurrently when requested", async () => {
|
|
const started: string[] = [];
|
|
const resolvers: Array<() => void> = [];
|
|
const runGroup = vi.fn(
|
|
(params: {
|
|
args: string[];
|
|
config: string;
|
|
env: Record<string, string | undefined>;
|
|
targets: string[];
|
|
}) => {
|
|
started.push(params.config);
|
|
return new Promise<number>((resolve) => {
|
|
resolvers.push(() => resolve(0));
|
|
});
|
|
},
|
|
);
|
|
const runPromise = runExtensionBatchPlan(
|
|
{
|
|
extensionCount: 3,
|
|
extensionIds: ["one", "two", "three"],
|
|
estimatedCost: 60,
|
|
hasTests: true,
|
|
planGroups: [
|
|
{
|
|
config: "light",
|
|
estimatedCost: 10,
|
|
extensionIds: ["one"],
|
|
roots: ["extensions/one"],
|
|
testFileCount: 1,
|
|
},
|
|
{
|
|
config: "heavy",
|
|
estimatedCost: 30,
|
|
extensionIds: ["two"],
|
|
roots: ["extensions/two"],
|
|
testFileCount: 3,
|
|
},
|
|
{
|
|
config: "middle",
|
|
estimatedCost: 20,
|
|
extensionIds: ["three"],
|
|
roots: ["extensions/three"],
|
|
testFileCount: 2,
|
|
},
|
|
],
|
|
testFileCount: 6,
|
|
},
|
|
{
|
|
env: { OPENCLAW_EXTENSION_BATCH_PARALLEL: "2" },
|
|
runGroup,
|
|
vitestArgs: ["--reporter=dot"],
|
|
},
|
|
);
|
|
|
|
await Promise.resolve();
|
|
expect(started).toEqual(["heavy", "middle"]);
|
|
resolvers.shift()?.();
|
|
await new Promise<void>((resolve) => setImmediate(resolve));
|
|
expect(started).toEqual(["heavy", "middle", "light"]);
|
|
while (resolvers.length > 0) {
|
|
resolvers.shift()?.();
|
|
}
|
|
await expect(runPromise).resolves.toBe(0);
|
|
expect(runGroup).toHaveBeenCalledTimes(3);
|
|
expect(runGroup.mock.calls[0]?.[0]).toMatchObject({
|
|
args: ["--reporter=dot"],
|
|
config: "heavy",
|
|
targets: ["extensions/two"],
|
|
});
|
|
expect(runGroup.mock.calls[0]?.[0].env.OPENCLAW_VITEST_FS_MODULE_CACHE_PATH).toContain(
|
|
path.join("node_modules", ".experimental-vitest-cache", "extension-batch", "0-heavy"),
|
|
);
|
|
});
|
|
|
|
it("keeps extension batch parallelism bounded by group count", () => {
|
|
expect(resolveExtensionBatchParallelism(3, { OPENCLAW_EXTENSION_BATCH_PARALLEL: "2" })).toBe(2);
|
|
expect(resolveExtensionBatchParallelism(1, { OPENCLAW_EXTENSION_BATCH_PARALLEL: "4" })).toBe(1);
|
|
expect(resolveExtensionBatchParallelism(3, { OPENCLAW_EXTENSION_BATCH_PARALLEL: "nope" })).toBe(
|
|
1,
|
|
);
|
|
});
|
|
|
|
it("treats extensions without tests as a no-op by default", () => {
|
|
const extensionId = findExtensionWithoutTests();
|
|
const stdout = runScript([extensionId]);
|
|
|
|
expect(stdout).toContain(`No tests found for ${bundledPluginRoot(extensionId)}.`);
|
|
expect(stdout).toContain("Skipping.");
|
|
});
|
|
});
|