mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-26 05:39:32 +00:00
108 lines
3.7 KiB
TypeScript
108 lines
3.7 KiB
TypeScript
// Completion runtime tests cover shell completion generation and runtime file writes.
|
|
import fs from "node:fs/promises";
|
|
import os from "node:os";
|
|
import path from "node:path";
|
|
import { describe, expect, it } from "vitest";
|
|
import { withEnvAsync } from "../test-utils/env.js";
|
|
import {
|
|
formatCompletionReloadCommand,
|
|
installCompletion,
|
|
resolveCompletionCachePath,
|
|
resolveCompletionProfilePath,
|
|
resolveShellFromEnv,
|
|
} from "./completion-runtime.js";
|
|
|
|
describe("completion-runtime", () => {
|
|
it("formats PowerShell reload commands with single-quoted paths", () => {
|
|
expect(formatCompletionReloadCommand("powershell", "C:\\Users\\Ada\\profile.ps1")).toBe(
|
|
". 'C:\\Users\\Ada\\profile.ps1'",
|
|
);
|
|
});
|
|
|
|
it("detects PowerShell shell names from Windows paths", () => {
|
|
expect(resolveShellFromEnv({ SHELL: "C:\\Program Files\\PowerShell\\7\\pwsh.exe" })).toBe(
|
|
"powershell",
|
|
);
|
|
expect(
|
|
resolveShellFromEnv({
|
|
SHELL: "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
|
|
}),
|
|
).toBe("powershell");
|
|
});
|
|
|
|
it("resolves Windows PowerShell and pwsh profile directories", () => {
|
|
expect(
|
|
resolveCompletionProfilePath("powershell", {
|
|
env: {
|
|
SHELL: "C:\\Program Files\\PowerShell\\7\\pwsh.exe",
|
|
USERPROFILE: "C:\\Users\\Ada",
|
|
},
|
|
homeDir: () => "C:\\Users\\Ada",
|
|
platform: "win32",
|
|
}),
|
|
).toBe(
|
|
path.win32.join(
|
|
"C:\\Users\\Ada",
|
|
"Documents",
|
|
"PowerShell",
|
|
"Microsoft.PowerShell_profile.ps1",
|
|
),
|
|
);
|
|
expect(
|
|
resolveCompletionProfilePath("powershell", {
|
|
env: {
|
|
SHELL: "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
|
|
USERPROFILE: "C:\\Users\\Ada",
|
|
},
|
|
homeDir: () => "C:\\Users\\Ada",
|
|
platform: "win32",
|
|
}),
|
|
).toBe(
|
|
path.win32.join(
|
|
"C:\\Users\\Ada",
|
|
"Documents",
|
|
"WindowsPowerShell",
|
|
"Microsoft.PowerShell_profile.ps1",
|
|
),
|
|
);
|
|
});
|
|
|
|
it("installs PowerShell completion into the concrete profile path", async () => {
|
|
const homeDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-completion-home-"));
|
|
const stateDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-completion-state-bob's-"));
|
|
|
|
try {
|
|
await withEnvAsync({ HOME: homeDir, OPENCLAW_STATE_DIR: stateDir }, async () => {
|
|
const cachePath = resolveCompletionCachePath("powershell", "openclaw");
|
|
await fs.mkdir(path.dirname(cachePath), { recursive: true });
|
|
await fs.writeFile(cachePath, "# powershell completion\n", "utf-8");
|
|
|
|
await installCompletion("powershell", true, "openclaw");
|
|
|
|
const profilePath = resolveCompletionProfilePath("powershell");
|
|
const profile = await fs.readFile(profilePath, "utf-8");
|
|
expect(profile).toBe(`# OpenClaw Completion\n. '${cachePath.replace(/'/g, "''")}'\n`);
|
|
});
|
|
} finally {
|
|
await fs.rm(homeDir, { recursive: true, force: true });
|
|
await fs.rm(stateDir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
it("rejects install when the completion cache is missing", async () => {
|
|
const homeDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-completion-home-"));
|
|
const stateDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-completion-state-"));
|
|
|
|
try {
|
|
await withEnvAsync({ HOME: homeDir, OPENCLAW_STATE_DIR: stateDir }, async () => {
|
|
await expect(installCompletion("zsh", true, "openclaw")).rejects.toThrow(
|
|
"Completion cache not found",
|
|
);
|
|
});
|
|
} finally {
|
|
await fs.rm(homeDir, { recursive: true, force: true });
|
|
await fs.rm(stateDir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
});
|