Archived
Drive-qualify resolved paths in fixtures and assert against normalized cwds so route tests match the values normalizeRequestCwd produces. Skip the POSIX-shell TerminalService suite on native Windows, where the terminal feature is unsupported.
59 lines
2.5 KiB
TypeScript
59 lines
2.5 KiB
TypeScript
import { join, resolve, sep } from "node:path";
|
|
import { describe, expect, it } from "vitest";
|
|
import { canonicalizeStoredCwd, cwdPathsEqual, normalizeRequestCwd } from "./workingDirectory.js";
|
|
|
|
// resolve() so the base already carries a drive letter on Windows, matching
|
|
// what normalizeRequestCwd/canonicalizeStoredCwd produce.
|
|
const absoluteBase = resolve(sep, "srv", "projects", "demo");
|
|
|
|
describe("normalizeRequestCwd", () => {
|
|
it("returns absolute paths in canonical form", () => {
|
|
expect(normalizeRequestCwd(absoluteBase)).toBe(absoluteBase);
|
|
expect(normalizeRequestCwd(`${absoluteBase}${sep}`)).toBe(absoluteBase);
|
|
expect(normalizeRequestCwd(join(absoluteBase, ".", "nested", ".."))).toBe(absoluteBase);
|
|
});
|
|
|
|
it("treats Windows backslash and forward-slash paths as equal", () => {
|
|
if (process.platform !== "win32") return;
|
|
expect(normalizeRequestCwd("C:/Users/dev/project")).toBe("C:\\Users\\dev\\project");
|
|
});
|
|
|
|
it("rejects missing, empty, and non-string values", () => {
|
|
expect(() => normalizeRequestCwd(undefined)).toThrow("cwd is required");
|
|
expect(() => normalizeRequestCwd("")).toThrow("cwd is required");
|
|
expect(() => normalizeRequestCwd(42)).toThrow("cwd is required");
|
|
});
|
|
|
|
it("rejects relative paths instead of resolving them against the process cwd", () => {
|
|
expect(() => normalizeRequestCwd("relative/path")).toThrow("cwd must be an absolute path");
|
|
expect(() => normalizeRequestCwd(".")).toThrow("cwd must be an absolute path");
|
|
});
|
|
});
|
|
|
|
describe("canonicalizeStoredCwd", () => {
|
|
it("canonicalizes absolute paths", () => {
|
|
expect(canonicalizeStoredCwd(`${absoluteBase}${sep}`)).toBe(absoluteBase);
|
|
});
|
|
|
|
it("preserves legacy empty and relative values instead of resolving against the process cwd", () => {
|
|
expect(canonicalizeStoredCwd("")).toBe("");
|
|
expect(canonicalizeStoredCwd("relative/path")).toBe("relative/path");
|
|
});
|
|
});
|
|
|
|
describe("cwdPathsEqual", () => {
|
|
it("matches paths that differ only by normalization", () => {
|
|
expect(cwdPathsEqual(absoluteBase, `${absoluteBase}${sep}`)).toBe(true);
|
|
expect(cwdPathsEqual(absoluteBase, join(absoluteBase, "."))).toBe(true);
|
|
});
|
|
|
|
it("treats Windows backslash and forward-slash paths as equal", () => {
|
|
if (process.platform !== "win32") return;
|
|
expect(cwdPathsEqual("C:\\Users\\dev\\project", "C:/Users/dev/project")).toBe(true);
|
|
});
|
|
|
|
it("distinguishes different paths", () => {
|
|
expect(cwdPathsEqual(join(absoluteBase, "a"), join(absoluteBase, "b"))).toBe(false);
|
|
});
|
|
});
|