mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-12 17:51:22 +00:00
67 lines
2.0 KiB
TypeScript
67 lines
2.0 KiB
TypeScript
import fs from "node:fs";
|
|
import os from "node:os";
|
|
import path from "node:path";
|
|
import { afterEach, describe, expect, it, vi } from "vitest";
|
|
import { stageBundledPluginRuntime } from "../../scripts/stage-bundled-plugin-runtime.mjs";
|
|
|
|
async function withTempDir(run: (dir: string) => Promise<void>) {
|
|
const dir = await fs.promises.mkdtemp(path.join(os.tmpdir(), "openclaw-stage-runtime-"));
|
|
try {
|
|
await run(dir);
|
|
} finally {
|
|
await fs.promises.rm(dir, { recursive: true, force: true });
|
|
}
|
|
}
|
|
|
|
describe("stageBundledPluginRuntime", () => {
|
|
afterEach(() => {
|
|
vi.restoreAllMocks();
|
|
});
|
|
|
|
it("copies files when Windows rejects runtime overlay symlinks", async () => {
|
|
await withTempDir(async (repoRoot) => {
|
|
const sourceFile = path.join(
|
|
repoRoot,
|
|
"dist",
|
|
"extensions",
|
|
"acpx",
|
|
"skills",
|
|
"acp-router",
|
|
"SKILL.md",
|
|
);
|
|
await fs.promises.mkdir(path.dirname(sourceFile), { recursive: true });
|
|
await fs.promises.writeFile(sourceFile, "skill-body\n", "utf8");
|
|
|
|
vi.spyOn(process, "platform", "get").mockReturnValue("win32");
|
|
const symlinkSpy = vi
|
|
.spyOn(fs, "symlinkSync")
|
|
.mockImplementation((target, targetPath, type) => {
|
|
if (
|
|
String(targetPath).includes(`${path.sep}dist-runtime${path.sep}`) &&
|
|
type !== "junction"
|
|
) {
|
|
const error = new Error("no symlink privilege");
|
|
Object.assign(error, { code: "EPERM" });
|
|
throw error;
|
|
}
|
|
return undefined;
|
|
});
|
|
|
|
stageBundledPluginRuntime({ repoRoot });
|
|
|
|
const runtimeFile = path.join(
|
|
repoRoot,
|
|
"dist-runtime",
|
|
"extensions",
|
|
"acpx",
|
|
"skills",
|
|
"acp-router",
|
|
"SKILL.md",
|
|
);
|
|
expect(await fs.promises.readFile(runtimeFile, "utf8")).toBe("skill-body\n");
|
|
expect(fs.lstatSync(runtimeFile).isSymbolicLink()).toBe(false);
|
|
expect(symlinkSpy).toHaveBeenCalled();
|
|
});
|
|
});
|
|
});
|