File size: 4,023 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 | import { beforeAll, beforeEach, describe, expect, it, vi } from "vitest";
import {
defaultRuntime,
resetLifecycleRuntimeLogs,
resetLifecycleServiceMocks,
service,
stubEmptyGatewayEnv,
} from "./test-helpers/lifecycle-core-harness.js";
const readConfigFileSnapshotMock = vi.fn();
const loadConfig = vi.fn(() => ({}));
vi.mock("../../config/config.js", () => ({
loadConfig: () => loadConfig(),
readConfigFileSnapshot: () => readConfigFileSnapshotMock(),
}));
vi.mock("../../config/issue-format.js", () => ({
formatConfigIssueLines: (
issues: Array<{ path: string; message: string }>,
_prefix: string,
_opts?: unknown,
) => issues.map((i) => `${i.path}: ${i.message}`),
}));
vi.mock("../../runtime.js", () => ({
defaultRuntime,
}));
function setConfigSnapshot(params: {
exists: boolean;
valid: boolean;
issues?: Array<{ path: string; message: string }>;
}) {
readConfigFileSnapshotMock.mockResolvedValue({
exists: params.exists,
valid: params.valid,
config: {},
issues: params.issues ?? [],
});
}
function createServiceRunArgs() {
return {
serviceNoun: "Gateway",
service,
renderStartHints: () => [],
opts: { json: true },
};
}
describe("runServiceRestart config pre-flight (#35862)", () => {
let runServiceRestart: typeof import("./lifecycle-core.js").runServiceRestart;
beforeAll(async () => {
({ runServiceRestart } = await import("./lifecycle-core.js"));
});
beforeEach(() => {
resetLifecycleRuntimeLogs();
readConfigFileSnapshotMock.mockReset();
setConfigSnapshot({ exists: true, valid: true });
loadConfig.mockReset();
loadConfig.mockReturnValue({});
resetLifecycleServiceMocks();
stubEmptyGatewayEnv();
});
it("aborts restart when config is invalid", async () => {
setConfigSnapshot({
exists: true,
valid: false,
issues: [{ path: "agents.defaults.pdfModel", message: "Unrecognized key" }],
});
await expect(runServiceRestart(createServiceRunArgs())).rejects.toThrow("__exit__:1");
expect(service.restart).not.toHaveBeenCalled();
});
it("proceeds with restart when config is valid", async () => {
setConfigSnapshot({ exists: true, valid: true });
const result = await runServiceRestart(createServiceRunArgs());
expect(result).toBe(true);
expect(service.restart).toHaveBeenCalledTimes(1);
});
it("proceeds with restart when config file does not exist", async () => {
setConfigSnapshot({ exists: false, valid: true });
const result = await runServiceRestart(createServiceRunArgs());
expect(result).toBe(true);
expect(service.restart).toHaveBeenCalledTimes(1);
});
it("proceeds with restart when snapshot read throws", async () => {
readConfigFileSnapshotMock.mockRejectedValue(new Error("read failed"));
const result = await runServiceRestart(createServiceRunArgs());
expect(result).toBe(true);
expect(service.restart).toHaveBeenCalledTimes(1);
});
});
describe("runServiceStart config pre-flight (#35862)", () => {
let runServiceStart: typeof import("./lifecycle-core.js").runServiceStart;
beforeAll(async () => {
({ runServiceStart } = await import("./lifecycle-core.js"));
});
beforeEach(() => {
resetLifecycleRuntimeLogs();
readConfigFileSnapshotMock.mockReset();
setConfigSnapshot({ exists: true, valid: true });
resetLifecycleServiceMocks();
});
it("aborts start when config is invalid", async () => {
setConfigSnapshot({
exists: true,
valid: false,
issues: [{ path: "agents.defaults.pdfModel", message: "Unrecognized key" }],
});
await expect(runServiceStart(createServiceRunArgs())).rejects.toThrow("__exit__:1");
expect(service.restart).not.toHaveBeenCalled();
});
it("proceeds with start when config is valid", async () => {
setConfigSnapshot({ exists: true, valid: true });
await runServiceStart(createServiceRunArgs());
expect(service.restart).toHaveBeenCalledTimes(1);
});
});
|