Files
openclaw/test/scripts/ts-guard-utils.test.ts
T
Peter Steinberger ea2c6a63c9 refactor(scripts): adopt shared scaffolding (#118514)
* refactor(scripts): adopt shared scaffolding

* fix(scripts): satisfy strict tooling checks

* fix(scripts): preserve scaffolding contracts
2026-08-03 04:40:30 -07:00

69 lines
2.8 KiB
TypeScript

// Ts Guard Utils tests cover ts guard utils script behavior.
import { existsSync, mkdirSync, mkdtempSync, rmSync, writeFileSync } from "node:fs";
import { tmpdir } from "node:os";
import path from "node:path";
import { pathToFileURL } from "node:url";
import { describe, expect, it } from "vitest";
import { resolveRepoRoot } from "../../scripts/lib/repo-root.mjs";
/**
* Regression tests for resolveRepoRoot().
*
* The original implementation went up exactly two levels from the caller's
* import.meta.url, which broke for scripts at scripts/*.mjs (one level below
* root) — it overshot to the repo's parent directory.
*/
describe("resolveRepoRoot", () => {
it("resolves correctly from a scripts/lib/*.mjs path (two levels below root)", () => {
const fakeUrl = pathToFileURL(path.resolve("scripts", "lib", "some-guard-utils.mjs")).href;
const root = resolveRepoRoot(fakeUrl);
expect(existsSync(path.join(root, ".git"))).toBe(true);
expect(existsSync(path.join(root, "package.json"))).toBe(true);
});
it("resolves correctly from a scripts/*.mjs path (one level below root)", () => {
const fakeUrl = pathToFileURL(path.resolve("scripts", "check-no-raw-channel-fetch.mjs")).href;
const root = resolveRepoRoot(fakeUrl);
expect(existsSync(path.join(root, ".git"))).toBe(true);
expect(existsSync(path.join(root, "package.json"))).toBe(true);
});
it("resolves correctly from a deeply nested extension path", () => {
const fakeUrl = pathToFileURL(
path.resolve("extensions", "qqbot", "src", "utils", "hypothetical.mjs"),
).href;
const root = resolveRepoRoot(fakeUrl);
expect(existsSync(path.join(root, ".git"))).toBe(true);
expect(existsSync(path.join(root, "package.json"))).toBe(true);
});
it("all caller depths resolve to the same root", () => {
const fromLib = resolveRepoRoot(pathToFileURL(path.resolve("scripts", "lib", "a.mjs")).href);
const fromScripts = resolveRepoRoot(pathToFileURL(path.resolve("scripts", "b.mjs")).href);
const fromExtension = resolveRepoRoot(
pathToFileURL(path.resolve("extensions", "qqbot", "c.mjs")).href,
);
expect(fromLib).toBe(fromScripts);
expect(fromScripts).toBe(fromExtension);
});
it("resolves an unpacked workspace without git metadata", () => {
const root = mkdtempSync(path.join(tmpdir(), "openclaw-repo-root-"));
try {
mkdirSync(path.join(root, "scripts", "nested"), { recursive: true });
writeFileSync(path.join(root, "package.json"), '{"name":"openclaw"}\n');
writeFileSync(path.join(root, "pnpm-workspace.yaml"), "packages: []\n");
expect(
resolveRepoRoot(pathToFileURL(path.join(root, "scripts", "nested", "tool.mjs")).href),
).toBe(root);
} finally {
rmSync(root, { recursive: true, force: true });
}
});
});