mirror of https://github.com/openclaw/openclaw.git
134 lines
4.5 KiB
TypeScript
134 lines
4.5 KiB
TypeScript
import fs from "node:fs/promises";
|
|
import os from "node:os";
|
|
import path from "node:path";
|
|
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
|
|
import { createTempHomeEnv, type TempHomeEnv } from "../test-utils/temp-home.js";
|
|
|
|
const tarCreateMock = vi.hoisted(() => vi.fn());
|
|
const backupVerifyCommandMock = vi.hoisted(() => vi.fn());
|
|
|
|
vi.mock("tar", () => ({
|
|
c: tarCreateMock,
|
|
}));
|
|
|
|
vi.mock("./backup-verify.js", () => ({
|
|
backupVerifyCommand: backupVerifyCommandMock,
|
|
}));
|
|
|
|
const { backupCreateCommand } = await import("./backup.js");
|
|
|
|
describe("backupCreateCommand atomic archive write", () => {
|
|
let tempHome: TempHomeEnv;
|
|
|
|
beforeEach(async () => {
|
|
tempHome = await createTempHomeEnv("openclaw-backup-atomic-test-");
|
|
tarCreateMock.mockReset();
|
|
backupVerifyCommandMock.mockReset();
|
|
});
|
|
|
|
afterEach(async () => {
|
|
await tempHome.restore();
|
|
});
|
|
|
|
it("does not leave a partial final archive behind when tar creation fails", async () => {
|
|
const stateDir = path.join(tempHome.home, ".openclaw");
|
|
const archiveDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-backup-failure-"));
|
|
try {
|
|
await fs.writeFile(path.join(stateDir, "openclaw.json"), JSON.stringify({}), "utf8");
|
|
await fs.writeFile(path.join(stateDir, "state.txt"), "state\n", "utf8");
|
|
|
|
tarCreateMock.mockRejectedValueOnce(new Error("disk full"));
|
|
|
|
const runtime = {
|
|
log: vi.fn(),
|
|
error: vi.fn(),
|
|
exit: vi.fn(),
|
|
};
|
|
const outputPath = path.join(archiveDir, "backup.tar.gz");
|
|
|
|
await expect(
|
|
backupCreateCommand(runtime, {
|
|
output: outputPath,
|
|
}),
|
|
).rejects.toThrow(/disk full/i);
|
|
|
|
await expect(fs.access(outputPath)).rejects.toThrow();
|
|
const remaining = await fs.readdir(archiveDir);
|
|
expect(remaining).toEqual([]);
|
|
} finally {
|
|
await fs.rm(archiveDir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
it("does not overwrite an archive created after readiness checks complete", async () => {
|
|
const stateDir = path.join(tempHome.home, ".openclaw");
|
|
const archiveDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-backup-race-"));
|
|
const realLink = fs.link.bind(fs);
|
|
const linkSpy = vi.spyOn(fs, "link");
|
|
try {
|
|
await fs.writeFile(path.join(stateDir, "openclaw.json"), JSON.stringify({}), "utf8");
|
|
await fs.writeFile(path.join(stateDir, "state.txt"), "state\n", "utf8");
|
|
|
|
tarCreateMock.mockImplementationOnce(async ({ file }: { file: string }) => {
|
|
await fs.writeFile(file, "archive-bytes", "utf8");
|
|
});
|
|
linkSpy.mockImplementationOnce(async (existingPath, newPath) => {
|
|
await fs.writeFile(newPath, "concurrent-archive", "utf8");
|
|
return await realLink(existingPath, newPath);
|
|
});
|
|
|
|
const runtime = {
|
|
log: vi.fn(),
|
|
error: vi.fn(),
|
|
exit: vi.fn(),
|
|
};
|
|
const outputPath = path.join(archiveDir, "backup.tar.gz");
|
|
|
|
await expect(
|
|
backupCreateCommand(runtime, {
|
|
output: outputPath,
|
|
}),
|
|
).rejects.toThrow(/refusing to overwrite existing backup archive/i);
|
|
|
|
expect(await fs.readFile(outputPath, "utf8")).toBe("concurrent-archive");
|
|
} finally {
|
|
linkSpy.mockRestore();
|
|
await fs.rm(archiveDir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
it("falls back to exclusive copy when hard-link publication is unsupported", async () => {
|
|
const stateDir = path.join(tempHome.home, ".openclaw");
|
|
const archiveDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-backup-copy-fallback-"));
|
|
const linkSpy = vi.spyOn(fs, "link");
|
|
try {
|
|
await fs.writeFile(path.join(stateDir, "openclaw.json"), JSON.stringify({}), "utf8");
|
|
await fs.writeFile(path.join(stateDir, "state.txt"), "state\n", "utf8");
|
|
|
|
tarCreateMock.mockImplementationOnce(async ({ file }: { file: string }) => {
|
|
await fs.writeFile(file, "archive-bytes", "utf8");
|
|
});
|
|
linkSpy.mockRejectedValueOnce(
|
|
Object.assign(new Error("hard links not supported"), { code: "EOPNOTSUPP" }),
|
|
);
|
|
|
|
const runtime = {
|
|
log: vi.fn(),
|
|
error: vi.fn(),
|
|
exit: vi.fn(),
|
|
};
|
|
const outputPath = path.join(archiveDir, "backup.tar.gz");
|
|
|
|
const result = await backupCreateCommand(runtime, {
|
|
output: outputPath,
|
|
});
|
|
|
|
expect(result.archivePath).toBe(outputPath);
|
|
expect(await fs.readFile(outputPath, "utf8")).toBe("archive-bytes");
|
|
} finally {
|
|
linkSpy.mockRestore();
|
|
await fs.rm(archiveDir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
});
|