mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
65 lines
2.3 KiB
TypeScript
65 lines
2.3 KiB
TypeScript
#!/usr/bin/env npx zx
|
|
|
|
import assert from "node:assert/strict";
|
|
import { mkdir, mkdtemp } from "node:fs/promises";
|
|
import { join } from "node:path";
|
|
import { tmpdir } from "node:os";
|
|
import {
|
|
isExistingDirectoryArg,
|
|
isPathLikeArg,
|
|
openDesktopWithProject,
|
|
shouldOpenProjectArg,
|
|
} from "../src/commands/open.ts";
|
|
|
|
console.log("📋 Phase 32: Open Project CLI Tests\n");
|
|
|
|
console.log(" Testing path-like detection exports...");
|
|
assert.equal(isPathLikeArg("."), true);
|
|
assert.equal(isPathLikeArg("./app"), true);
|
|
assert.equal(isPathLikeArg("/tmp/app"), true);
|
|
assert.equal(isPathLikeArg("~/app"), true);
|
|
assert.equal(isPathLikeArg("run"), false);
|
|
assert.equal(isPathLikeArg("foo"), false);
|
|
console.log(" ✅ path-like detection matches the expected prefixes");
|
|
|
|
console.log(" Testing existing directory detection and command precedence...");
|
|
const existingProject = join(await mkdtemp(join(tmpdir(), "paseo-open-project-")), "project");
|
|
await mkdir(existingProject);
|
|
const originalCwd = process.cwd();
|
|
process.chdir(join(existingProject, ".."));
|
|
|
|
assert.equal(isExistingDirectoryArg("project"), true);
|
|
assert.equal(
|
|
shouldOpenProjectArg({ arg: "project", knownCommands: new Set(["run", "status"]) }),
|
|
true,
|
|
);
|
|
assert.equal(
|
|
shouldOpenProjectArg({ arg: "run", knownCommands: new Set(["run", "status"]) }),
|
|
false,
|
|
);
|
|
|
|
process.chdir(originalCwd);
|
|
console.log(" ✅ existing directories open as projects, but known commands still win");
|
|
|
|
console.log(" Testing nonexistent project path errors...");
|
|
const missingProject = join(tmpdir(), "paseo-open-project-missing");
|
|
const originalWrite = process.stderr.write.bind(process.stderr);
|
|
const stderrChunks: string[] = [];
|
|
process.stderr.write = ((chunk: string | Uint8Array) => {
|
|
stderrChunks.push(typeof chunk === "string" ? chunk : Buffer.from(chunk).toString("utf8"));
|
|
return true;
|
|
}) as typeof process.stderr.write;
|
|
|
|
const previousExitCode = process.exitCode;
|
|
process.exitCode = undefined;
|
|
|
|
await openDesktopWithProject(missingProject);
|
|
|
|
process.stderr.write = originalWrite;
|
|
assert.equal(process.exitCode, 1);
|
|
assert.match(stderrChunks.join(""), /Path does not exist:/);
|
|
process.exitCode = previousExitCode;
|
|
console.log(" ✅ nonexistent paths fail with a helpful error");
|
|
|
|
console.log("\n✅ Phase 32: Open Project CLI Tests PASSED");
|