mirror of
https://bitbucket.org/siakitem/my-pi.git
synced 2026-08-28 08:35:57 +00:00
85 lines
3.4 KiB
TypeScript
85 lines
3.4 KiB
TypeScript
import assert from "node:assert/strict";
|
|
import { chmod, mkdir, mkdtemp, readFile, writeFile } from "node:fs/promises";
|
|
import { tmpdir } from "node:os";
|
|
import { dirname, join, resolve } from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
import { spawnSync } from "node:child_process";
|
|
import test from "node:test";
|
|
|
|
const repositoryRoot = resolve(dirname(fileURLToPath(import.meta.url)), "..");
|
|
const hasPi = spawnSync("pi", ["--version"], { encoding: "utf8" }).status === 0;
|
|
|
|
test("all package extensions load together without global registration conflicts", { skip: !hasPi }, async () => {
|
|
const packageJson = JSON.parse(await readFile(join(repositoryRoot, "package.json"), "utf8")) as {
|
|
dependencies: Record<string, string>;
|
|
files: string[];
|
|
pi: { extensions: string[] };
|
|
};
|
|
assert.ok(
|
|
packageJson.pi.extensions.includes("./hippo-memory-pi/index.ts"),
|
|
"the bundle must load the vendored official Hippo Memory extension",
|
|
);
|
|
assert.ok(
|
|
packageJson.pi.extensions.includes("./pi-minimal-footer/index.ts"),
|
|
"the bundle must load the locally maintained minimal footer",
|
|
);
|
|
assert.ok(
|
|
packageJson.pi.extensions.includes("./pi-extension-codex-fast-mode/index.ts"),
|
|
"the bundle must load the locally maintained Codex Fast mode extension",
|
|
);
|
|
assert.equal(
|
|
packageJson.dependencies["@firstpick/pi-extension-codex-fast-mode"],
|
|
"file:./pi-extension-codex-fast-mode",
|
|
);
|
|
assert.ok(
|
|
packageJson.files.includes("pi-extension-codex-fast-mode"),
|
|
"the packed bundle must include the locally maintained Codex Fast mode source",
|
|
);
|
|
assert.ok(
|
|
packageJson.pi.extensions.includes("./pi-notify/src/index.ts"),
|
|
"the bundle must load the locally maintained Kitty notification extension",
|
|
);
|
|
assert.equal(packageJson.dependencies["@smoose/pi-notify"], "file:./pi-notify");
|
|
assert.ok(
|
|
packageJson.files.includes("pi-notify"),
|
|
"the packed bundle must include the locally maintained notification source",
|
|
);
|
|
assert.equal(packageJson.dependencies["@ogulcancelik/pi-minimal-footer"], "file:./pi-minimal-footer");
|
|
assert.equal(
|
|
packageJson.pi.extensions.some((entry) => entry.includes("pi-hermes-memory") || entry.includes("the-forge-flow")),
|
|
false,
|
|
"retired Hermes and third-party Hippo extensions must not be loaded",
|
|
);
|
|
assert.equal(packageJson.dependencies["@the-forge-flow/hippo-memory-pi"], undefined);
|
|
assert.equal(packageJson.dependencies["@sinclair/typebox"], undefined);
|
|
const home = await mkdtemp(join(tmpdir(), "my-pi-extension-load-"));
|
|
const mockBin = join(home, "bin");
|
|
await mkdir(mockBin, { recursive: true });
|
|
const hippo = join(mockBin, "hippo");
|
|
await writeFile(hippo, "#!/bin/sh\nprintf '%s\\n' 'Hippo Memory status'\n", "utf8");
|
|
await chmod(hippo, 0o755);
|
|
const args = ["--no-extensions"];
|
|
for (const entry of packageJson.pi.extensions) args.push("-e", resolve(repositoryRoot, entry));
|
|
args.push("--help");
|
|
|
|
const result = spawnSync("pi", args, {
|
|
encoding: "utf8",
|
|
timeout: 60_000,
|
|
env: {
|
|
...process.env,
|
|
HOME: home,
|
|
XDG_CONFIG_HOME: join(home, ".config"),
|
|
PI_CODING_AGENT_DIR: join(home, ".pi-agent"),
|
|
MY_PI_SEARCH_CONFIG: join(home, "missing-search.env"),
|
|
PATH: `${mockBin}:${process.env.PATH ?? ""}`,
|
|
PI_OFFLINE: "1",
|
|
TAVILY_API_KEY: "",
|
|
EXA_API_KEY: "",
|
|
KEENABLE_API_KEY: "",
|
|
},
|
|
});
|
|
|
|
assert.equal(result.status, 0, `${result.stdout}\n${result.stderr}`);
|
|
assert.doesNotMatch(`${result.stdout}\n${result.stderr}`, /Failed to load extension|conflicts with/u);
|
|
});
|