File size: 3,947 Bytes
fc93158 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 | import { Command } from "commander";
import { beforeAll, beforeEach, describe, expect, it, vi } from "vitest";
const doctorCommand = vi.fn();
const dashboardCommand = vi.fn();
const resetCommand = vi.fn();
const uninstallCommand = vi.fn();
const runtime = {
log: vi.fn(),
error: vi.fn(),
exit: vi.fn(),
};
vi.mock("../../commands/doctor.js", () => ({
doctorCommand,
}));
vi.mock("../../commands/dashboard.js", () => ({
dashboardCommand,
}));
vi.mock("../../commands/reset.js", () => ({
resetCommand,
}));
vi.mock("../../commands/uninstall.js", () => ({
uninstallCommand,
}));
vi.mock("../../runtime.js", () => ({
defaultRuntime: runtime,
}));
let registerMaintenanceCommands: typeof import("./register.maintenance.js").registerMaintenanceCommands;
beforeAll(async () => {
({ registerMaintenanceCommands } = await import("./register.maintenance.js"));
});
describe("registerMaintenanceCommands doctor action", () => {
async function runMaintenanceCli(args: string[]) {
const program = new Command();
registerMaintenanceCommands(program);
await program.parseAsync(args, { from: "user" });
}
beforeEach(() => {
vi.clearAllMocks();
});
it("exits with code 0 after successful doctor run", async () => {
doctorCommand.mockResolvedValue(undefined);
await runMaintenanceCli(["doctor", "--non-interactive", "--yes"]);
expect(doctorCommand).toHaveBeenCalledWith(
runtime,
expect.objectContaining({
nonInteractive: true,
yes: true,
}),
);
expect(runtime.exit).toHaveBeenCalledWith(0);
});
it("exits with code 1 when doctor fails", async () => {
doctorCommand.mockRejectedValue(new Error("doctor failed"));
await runMaintenanceCli(["doctor"]);
expect(runtime.error).toHaveBeenCalledWith("Error: doctor failed");
expect(runtime.exit).toHaveBeenCalledWith(1);
expect(runtime.exit).not.toHaveBeenCalledWith(0);
});
it("maps --fix to repair=true", async () => {
doctorCommand.mockResolvedValue(undefined);
await runMaintenanceCli(["doctor", "--fix"]);
expect(doctorCommand).toHaveBeenCalledWith(
runtime,
expect.objectContaining({
repair: true,
}),
);
});
it("passes noOpen to dashboard command", async () => {
dashboardCommand.mockResolvedValue(undefined);
await runMaintenanceCli(["dashboard", "--no-open"]);
expect(dashboardCommand).toHaveBeenCalledWith(
runtime,
expect.objectContaining({
noOpen: true,
}),
);
});
it("passes reset options to reset command", async () => {
resetCommand.mockResolvedValue(undefined);
await runMaintenanceCli([
"reset",
"--scope",
"full",
"--yes",
"--non-interactive",
"--dry-run",
]);
expect(resetCommand).toHaveBeenCalledWith(
runtime,
expect.objectContaining({
scope: "full",
yes: true,
nonInteractive: true,
dryRun: true,
}),
);
});
it("passes uninstall options to uninstall command", async () => {
uninstallCommand.mockResolvedValue(undefined);
await runMaintenanceCli([
"uninstall",
"--service",
"--state",
"--workspace",
"--app",
"--all",
"--yes",
"--non-interactive",
"--dry-run",
]);
expect(uninstallCommand).toHaveBeenCalledWith(
runtime,
expect.objectContaining({
service: true,
state: true,
workspace: true,
app: true,
all: true,
yes: true,
nonInteractive: true,
dryRun: true,
}),
);
});
it("exits with code 1 when dashboard fails", async () => {
dashboardCommand.mockRejectedValue(new Error("dashboard failed"));
await runMaintenanceCli(["dashboard"]);
expect(runtime.error).toHaveBeenCalledWith("Error: dashboard failed");
expect(runtime.exit).toHaveBeenCalledWith(1);
});
});
|