mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-10 02:02:45 +00:00
143 lines
3.7 KiB
TypeScript
143 lines
3.7 KiB
TypeScript
import { describe, expect, it, vi } from "vitest";
|
|
import {
|
|
findLegacyGatewayServices,
|
|
note,
|
|
readConfigFileSnapshot,
|
|
resolveOpenClawPackageRoot,
|
|
runCommandWithTimeout,
|
|
runGatewayUpdate,
|
|
serviceInstall,
|
|
serviceIsLoaded,
|
|
uninstallLegacyGatewayServices,
|
|
migrateLegacyConfig,
|
|
writeConfigFile,
|
|
} from "./doctor.e2e-harness.js";
|
|
|
|
describe("doctor command", () => {
|
|
it("migrates routing.allowFrom to channels.whatsapp.allowFrom", { timeout: 60_000 }, async () => {
|
|
readConfigFileSnapshot.mockResolvedValue({
|
|
path: "/tmp/openclaw.json",
|
|
exists: true,
|
|
raw: "{}",
|
|
parsed: { routing: { allowFrom: ["+15555550123"] } },
|
|
valid: false,
|
|
config: {},
|
|
issues: [
|
|
{
|
|
path: "routing.allowFrom",
|
|
message: "legacy",
|
|
},
|
|
],
|
|
legacyIssues: [
|
|
{
|
|
path: "routing.allowFrom",
|
|
message: "legacy",
|
|
},
|
|
],
|
|
});
|
|
|
|
const { doctorCommand } = await import("./doctor.js");
|
|
const runtime = {
|
|
log: vi.fn(),
|
|
error: vi.fn(),
|
|
exit: vi.fn(),
|
|
};
|
|
|
|
migrateLegacyConfig.mockReturnValue({
|
|
config: { channels: { whatsapp: { allowFrom: ["+15555550123"] } } },
|
|
changes: ["Moved routing.allowFrom → channels.whatsapp.allowFrom."],
|
|
});
|
|
|
|
await doctorCommand(runtime, { nonInteractive: true, repair: true });
|
|
|
|
expect(writeConfigFile).toHaveBeenCalledTimes(1);
|
|
const written = writeConfigFile.mock.calls[0]?.[0] as Record<string, unknown>;
|
|
expect((written.channels as Record<string, unknown>)?.whatsapp).toEqual({
|
|
allowFrom: ["+15555550123"],
|
|
});
|
|
expect(written.routing).toBeUndefined();
|
|
});
|
|
|
|
it("skips legacy gateway services migration", { timeout: 60_000 }, async () => {
|
|
readConfigFileSnapshot.mockResolvedValue({
|
|
path: "/tmp/openclaw.json",
|
|
exists: true,
|
|
raw: "{}",
|
|
parsed: {},
|
|
valid: true,
|
|
config: {},
|
|
issues: [],
|
|
legacyIssues: [],
|
|
});
|
|
|
|
findLegacyGatewayServices.mockResolvedValueOnce([
|
|
{
|
|
platform: "darwin",
|
|
label: "com.steipete.openclaw.gateway",
|
|
detail: "loaded",
|
|
},
|
|
]);
|
|
serviceIsLoaded.mockResolvedValueOnce(false);
|
|
serviceInstall.mockClear();
|
|
|
|
const { doctorCommand } = await import("./doctor.js");
|
|
const runtime = {
|
|
log: vi.fn(),
|
|
error: vi.fn(),
|
|
exit: vi.fn(),
|
|
};
|
|
|
|
await doctorCommand(runtime);
|
|
|
|
expect(uninstallLegacyGatewayServices).not.toHaveBeenCalled();
|
|
expect(serviceInstall).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it("offers to update first for git checkouts", async () => {
|
|
delete process.env.OPENCLAW_UPDATE_IN_PROGRESS;
|
|
|
|
const root = "/tmp/openclaw";
|
|
resolveOpenClawPackageRoot.mockResolvedValueOnce(root);
|
|
runCommandWithTimeout.mockResolvedValueOnce({
|
|
stdout: `${root}\n`,
|
|
stderr: "",
|
|
code: 0,
|
|
signal: null,
|
|
killed: false,
|
|
});
|
|
runGatewayUpdate.mockResolvedValueOnce({
|
|
status: "ok",
|
|
mode: "git",
|
|
root,
|
|
steps: [],
|
|
durationMs: 1,
|
|
});
|
|
|
|
readConfigFileSnapshot.mockResolvedValue({
|
|
path: "/tmp/openclaw.json",
|
|
exists: true,
|
|
raw: "{}",
|
|
parsed: {},
|
|
valid: true,
|
|
config: {},
|
|
issues: [],
|
|
legacyIssues: [],
|
|
});
|
|
|
|
const { doctorCommand } = await import("./doctor.js");
|
|
const runtime = {
|
|
log: vi.fn(),
|
|
error: vi.fn(),
|
|
exit: vi.fn(),
|
|
};
|
|
|
|
await doctorCommand(runtime);
|
|
|
|
expect(runGatewayUpdate).toHaveBeenCalledWith(expect.objectContaining({ cwd: root }));
|
|
expect(readConfigFileSnapshot).not.toHaveBeenCalled();
|
|
expect(
|
|
note.mock.calls.some(([, title]) => typeof title === "string" && title === "Update result"),
|
|
).toBe(true);
|
|
});
|
|
});
|