mirror of
https://bitbucket.org/siakitem/my-pi.git
synced 2026-08-28 08:35:57 +00:00
168 lines
8.1 KiB
TypeScript
168 lines
8.1 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("enabled subagents wrapper loads with its bundle-owned mandatory permission entry", { 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.files.includes("pi-subagents"));
|
|
assert.equal(packageJson.dependencies["@tintinweb/pi-subagents"], "file:./pi-subagents");
|
|
assert.ok(
|
|
packageJson.pi.extensions.includes("./extensions/subagents.ts"),
|
|
"the bundle must default-load the locally maintained subagents wrapper",
|
|
);
|
|
|
|
const home = await mkdtemp(join(tmpdir(), "my-pi-subagents-wrapper-load-"));
|
|
const result = spawnSync(
|
|
"pi",
|
|
["--no-extensions", "-e", join(repositoryRoot, "extensions", "subagents.ts"), "--mode", "rpc"],
|
|
{
|
|
encoding: "utf8",
|
|
timeout: 60_000,
|
|
env: {
|
|
...process.env,
|
|
HOME: home,
|
|
XDG_CONFIG_HOME: join(home, ".config"),
|
|
PI_CODING_AGENT_DIR: join(home, ".pi-agent"),
|
|
PI_OFFLINE: "1",
|
|
},
|
|
},
|
|
);
|
|
|
|
assert.equal(result.status, 0, `${result.stdout}\n${result.stderr}`);
|
|
assert.doesNotMatch(`${result.stdout}\n${result.stderr}`, /Failed to load extension/u);
|
|
});
|
|
|
|
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("./extensions/plugin-init.ts"),
|
|
"the bundle must expose the project plugin initializer command",
|
|
);
|
|
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.ok(packageJson.pi.extensions.includes("./pi-ssh/index.ts"), "the bundle must load the locally maintained SSH extension");
|
|
assert.equal(packageJson.dependencies["pi-ssh"], "file:./pi-ssh");
|
|
assert.equal(packageJson.dependencies.ssh2, "1.17.0", "the packed bundle must install pi-ssh's runtime transport");
|
|
assert.equal(packageJson.dependencies.jiti, "2.7.0", "the packed helper must load local TypeScript outside Pi");
|
|
assert.ok(packageJson.files.includes("pi-ssh"), "the packed bundle must include the locally maintained SSH source");
|
|
assert.ok(packageJson.files.includes("ssh_config.sh"), "the packed bundle must include the SSH host import helper");
|
|
assert.ok(packageJson.pi.extensions.includes("./pi-ask-user/index.ts"), "the bundle must load pi-ask-user");
|
|
assert.equal(packageJson.dependencies["pi-ask-user"], "file:./pi-ask-user");
|
|
assert.ok(packageJson.files.includes("pi-ask-user"), "the packed bundle must include pi-ask-user source");
|
|
const chromeExtension = "./pi-chrome/extensions/chrome-profile-bridge/index.ts";
|
|
assert.equal(packageJson.dependencies["pi-chrome"], "file:./pi-chrome", "the browser bridge must use the locally maintained source");
|
|
assert.ok(packageJson.files.includes("pi-chrome"), "the packed bundle must include the locally maintained pi-chrome source");
|
|
assert.ok(packageJson.pi.extensions.includes(chromeExtension), "the bundle must load the local Chrome profile bridge directly");
|
|
assert.ok(
|
|
packageJson.pi.extensions.indexOf(chromeExtension) <
|
|
packageJson.pi.extensions.indexOf("./pi-tool-search/extensions/index.ts"),
|
|
"pi-chrome must register before Tool Search catalogs its authorized tools",
|
|
);
|
|
const permissionConfig = JSON.parse(
|
|
await readFile(join(repositoryRoot, "config", "pi-permission-system.json"), "utf8"),
|
|
) as { authorizerChain: string[]; permission: Record<string, unknown> };
|
|
assert.equal(permissionConfig.permission.ssh_connect, "ask", "SSH connection must enter the permission gate");
|
|
assert.equal(permissionConfig.permission.ssh_cd, "ask", "remote workspace changes must enter the permission gate");
|
|
assert.deepEqual(permissionConfig.authorizerChain, ["auto-review"], "SSH connection asks must reach AutoReview");
|
|
assert.ok(
|
|
packageJson.pi.extensions.indexOf("./extensions/permission-system.ts") <
|
|
packageJson.pi.extensions.indexOf("./pi-ssh/index.ts"),
|
|
"the permission service must load before pi-ssh registers its permission bridge",
|
|
);
|
|
assert.ok(
|
|
packageJson.pi.extensions.indexOf("./pi-ssh/index.ts") <
|
|
packageJson.pi.extensions.indexOf("./pi-tool-search/extensions/index.ts"),
|
|
"pi-ssh tools must register before Tool Search builds its catalog",
|
|
);
|
|
assert.ok(
|
|
packageJson.pi.extensions.indexOf("./pi-ask-user/index.ts") <
|
|
packageJson.pi.extensions.indexOf("./pi-tool-search/extensions/index.ts"),
|
|
"ask_user_question must register before Tool Search builds its catalog",
|
|
);
|
|
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.dependencies["@tintinweb/pi-subagents"], "file:./pi-subagents");
|
|
assert.ok(packageJson.pi.extensions.includes("./extensions/subagents.ts"));
|
|
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("--mode", "rpc");
|
|
|
|
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);
|
|
const deployedPermissionConfig = JSON.parse(
|
|
await readFile(join(home, ".pi-agent", "extensions", "pi-permission-system", "config.json"), "utf8"),
|
|
);
|
|
assert.deepEqual(deployedPermissionConfig, permissionConfig, "the deployed permission config must match the bundle source");
|
|
});
|