Files
moltbot/src/agents/skills-install-fallback.test.ts
2026-02-23 05:45:54 +00:00

196 lines
6.1 KiB
TypeScript

import fs from "node:fs/promises";
import os from "node:os";
import path from "node:path";
import { afterAll, beforeAll, beforeEach, describe, expect, it, vi } from "vitest";
import { installSkill } from "./skills-install.js";
import {
hasBinaryMock,
runCommandWithTimeoutMock,
scanDirectoryWithSummaryMock,
} from "./skills-install.test-mocks.js";
import { buildWorkspaceSkillStatus } from "./skills-status.js";
vi.mock("../process/exec.js", () => ({
runCommandWithTimeout: (...args: unknown[]) => runCommandWithTimeoutMock(...args),
}));
vi.mock("../infra/net/fetch-guard.js", () => ({
fetchWithSsrFGuard: vi.fn(),
}));
vi.mock("../security/skill-scanner.js", async (importOriginal) => ({
...(await importOriginal<typeof import("../security/skill-scanner.js")>()),
scanDirectoryWithSummary: (...args: unknown[]) => scanDirectoryWithSummaryMock(...args),
}));
vi.mock("../shared/config-eval.js", async (importOriginal) => {
const actual = await importOriginal<typeof import("../shared/config-eval.js")>();
return {
...actual,
hasBinary: (bin: string) => hasBinaryMock(bin),
};
});
vi.mock("../infra/brew.js", () => ({
resolveBrewExecutable: () => undefined,
}));
async function writeSkillWithInstallers(
workspaceDir: string,
name: string,
installSpecs: Array<Record<string, string>>,
): Promise<string> {
const skillDir = path.join(workspaceDir, "skills", name);
await fs.mkdir(skillDir, { recursive: true });
await fs.writeFile(
path.join(skillDir, "SKILL.md"),
`---
name: ${name}
description: test skill
metadata: ${JSON.stringify({ openclaw: { install: installSpecs } })}
---
# ${name}
`,
"utf-8",
);
await fs.writeFile(path.join(skillDir, "runner.js"), "export {};\n", "utf-8");
return skillDir;
}
async function writeSkillWithInstaller(
workspaceDir: string,
name: string,
kind: string,
extra: Record<string, string>,
): Promise<string> {
return writeSkillWithInstallers(workspaceDir, name, [{ id: "deps", kind, ...extra }]);
}
function mockAvailableBinaries(binaries: string[]) {
const available = new Set(binaries);
hasBinaryMock.mockImplementation((bin: string) => available.has(bin));
}
function assertNoAptGetFallbackCalls() {
const aptCalls = runCommandWithTimeoutMock.mock.calls.filter(
(call) => Array.isArray(call[0]) && (call[0] as string[]).includes("apt-get"),
);
expect(aptCalls).toHaveLength(0);
}
describe("skills-install fallback edge cases", () => {
let workspaceDir: string;
beforeAll(async () => {
workspaceDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-fallback-test-"));
await writeSkillWithInstaller(workspaceDir, "go-tool-single", "go", {
module: "example.com/tool@latest",
});
await writeSkillWithInstallers(workspaceDir, "go-tool-multi", [
{ id: "brew", kind: "brew", formula: "go" },
{ id: "go", kind: "go", module: "example.com/tool@latest" },
]);
await writeSkillWithInstaller(workspaceDir, "py-tool", "uv", {
package: "example-package",
});
});
beforeEach(async () => {
runCommandWithTimeoutMock.mockClear();
scanDirectoryWithSummaryMock.mockClear();
hasBinaryMock.mockClear();
scanDirectoryWithSummaryMock.mockResolvedValue({ critical: 0, warn: 0, findings: [] });
});
afterAll(async () => {
await fs.rm(workspaceDir, { recursive: true, force: true }).catch(() => undefined);
});
it("handles sudo probe failures for go install without apt fallback", async () => {
for (const testCase of [
{
label: "sudo returns password required",
setup: () =>
runCommandWithTimeoutMock.mockResolvedValueOnce({
code: 1,
stdout: "",
stderr: "sudo: a password is required",
}),
assert: (result: { message: string; stderr: string }) => {
expect(result.message).toContain("sudo");
expect(result.message).toContain("https://go.dev/doc/install");
},
},
{
label: "sudo probe throws executable-not-found",
setup: () =>
runCommandWithTimeoutMock.mockRejectedValueOnce(
new Error('Executable not found in $PATH: "sudo"'),
),
assert: (result: { message: string; stderr: string }) => {
expect(result.message).toContain("sudo is not usable");
expect(result.stderr).toContain("Executable not found");
},
},
]) {
runCommandWithTimeoutMock.mockClear();
mockAvailableBinaries(["apt-get", "sudo"]);
testCase.setup();
const result = await installSkill({
workspaceDir,
skillName: "go-tool-single",
installId: "deps",
});
expect(result.ok, testCase.label).toBe(false);
testCase.assert(result);
expect(runCommandWithTimeoutMock, testCase.label).toHaveBeenCalledWith(
["sudo", "-n", "true"],
expect.objectContaining({ timeoutMs: 5_000 }),
);
assertNoAptGetFallbackCalls();
}
});
it("status-selected go installer fails gracefully when apt fallback needs sudo", async () => {
mockAvailableBinaries(["apt-get", "sudo"]);
runCommandWithTimeoutMock.mockResolvedValueOnce({
code: 1,
stdout: "",
stderr: "sudo: a password is required",
});
const status = buildWorkspaceSkillStatus(workspaceDir);
const skill = status.skills.find((entry) => entry.name === "go-tool-multi");
expect(skill?.install[0]?.id).toBe("go");
const result = await installSkill({
workspaceDir,
skillName: "go-tool-multi",
installId: skill?.install[0]?.id ?? "",
});
expect(result.ok).toBe(false);
expect(result.message).toContain("sudo is not usable");
});
it("uv not installed and no brew returns helpful error without curl auto-install", async () => {
mockAvailableBinaries(["curl"]);
const result = await installSkill({
workspaceDir,
skillName: "py-tool",
installId: "deps",
});
expect(result.ok).toBe(false);
expect(result.message).toContain("https://docs.astral.sh/uv/getting-started/installation/");
// Verify NO curl command was attempted (no auto-install)
expect(runCommandWithTimeoutMock).not.toHaveBeenCalled();
});
});