f9447f8e5f
CI / typecheck · build · test · bundle-size (push) Failing after 1s
CI / clean-room dependency closure smoke (push) Failing after 1s
CI / server-runtime e2e (docker · pg + valkey) (push) Failing after 2s
Deploy Install Scripts / deploy (push) Failing after 2s
Windows / build (push) Has been cancelled
178 lines
6.0 KiB
TypeScript
178 lines
6.0 KiB
TypeScript
|
|
import { describe, it, expect, beforeAll, afterAll } from 'bun:test';
|
|
import { homedir } from 'os';
|
|
import { getProjectName, getProjectContext } from '../../src/utils/project-name.js';
|
|
|
|
describe('getProjectName', () => {
|
|
describe('tilde expansion', () => {
|
|
it('resolves bare ~ to home directory basename', () => {
|
|
const home = homedir();
|
|
const expected = home.split('/').pop() || home.split('\\').pop() || '';
|
|
expect(getProjectName('~')).toBe(expected);
|
|
});
|
|
|
|
it('resolves ~/subpath to subpath', () => {
|
|
expect(getProjectName('~/projects/my-app')).toBe('my-app');
|
|
});
|
|
|
|
it('resolves ~/ to home directory basename', () => {
|
|
const home = homedir();
|
|
const expected = home.split('/').pop() || home.split('\\').pop() || '';
|
|
expect(getProjectName('~/')).toBe(expected);
|
|
});
|
|
});
|
|
|
|
describe('normal paths', () => {
|
|
it('extracts basename from absolute path', () => {
|
|
expect(getProjectName('/home/user/my-project')).toBe('my-project');
|
|
});
|
|
|
|
it('extracts basename from nested path', () => {
|
|
expect(getProjectName('/Users/test/work/deep/nested/project')).toBe('project');
|
|
});
|
|
|
|
it('handles trailing slash', () => {
|
|
expect(getProjectName('/home/user/my-project/')).toBe('my-project');
|
|
});
|
|
});
|
|
|
|
describe('edge cases', () => {
|
|
it('returns unknown-project for null', () => {
|
|
expect(getProjectName(null)).toBe('unknown-project');
|
|
});
|
|
|
|
it('returns unknown-project for undefined', () => {
|
|
expect(getProjectName(undefined)).toBe('unknown-project');
|
|
});
|
|
|
|
it('returns unknown-project for empty string', () => {
|
|
expect(getProjectName('')).toBe('unknown-project');
|
|
});
|
|
|
|
it('returns unknown-project for whitespace', () => {
|
|
expect(getProjectName(' ')).toBe('unknown-project');
|
|
});
|
|
});
|
|
|
|
describe('#2663 — name derived from git repo root', () => {
|
|
let tmp: string;
|
|
let repoRoot: string;
|
|
let nestedDir: string;
|
|
|
|
beforeAll(async () => {
|
|
const { mkdtempSync, mkdirSync, realpathSync } = await import('fs');
|
|
const { execFileSync } = await import('child_process');
|
|
const { join } = await import('path');
|
|
const { tmpdir } = await import('os');
|
|
|
|
// macOS /tmp symlinks to /private/tmp; realpath so `git --show-toplevel`
|
|
// (which returns the canonical path) matches our expectations.
|
|
tmp = realpathSync(mkdtempSync(join(tmpdir(), 'cm-reporoot-')));
|
|
repoRoot = join(tmp, 'my-real-repo');
|
|
nestedDir = join(repoRoot, 'packages', 'deeply', 'nested');
|
|
mkdirSync(nestedDir, { recursive: true });
|
|
execFileSync('git', ['init', '-q'], { cwd: repoRoot });
|
|
});
|
|
|
|
afterAll(async () => {
|
|
const { rmSync } = await import('fs');
|
|
rmSync(tmp, { recursive: true, force: true });
|
|
});
|
|
|
|
it('deep subdirectory inside a repo yields the repo-root name', () => {
|
|
expect(getProjectName(nestedDir)).toBe('my-real-repo');
|
|
});
|
|
|
|
it('repo root itself yields the repo-root name', () => {
|
|
expect(getProjectName(repoRoot)).toBe('my-real-repo');
|
|
});
|
|
|
|
it('non-repo path falls back to basename(cwd)', () => {
|
|
// A path that does not exist (and therefore cannot be in a repo) must
|
|
// fall back to basename(cwd) rather than throwing or returning a root.
|
|
expect(getProjectName('/no/such/dir/standalone-folder')).toBe('standalone-folder');
|
|
});
|
|
});
|
|
|
|
describe('realistic scenarios from #1478', () => {
|
|
it('handles ~ the same as full home path', () => {
|
|
const home = homedir();
|
|
expect(getProjectName('~')).toBe(getProjectName(home));
|
|
});
|
|
|
|
it('handles ~/projects/app the same as /full/path/projects/app', () => {
|
|
const home = homedir();
|
|
expect(getProjectName('~/projects/app')).toBe(
|
|
getProjectName(`${home}/projects/app`)
|
|
);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('getProjectContext', () => {
|
|
it('returns primary project name for normal path', () => {
|
|
const ctx = getProjectContext('/home/user/my-project');
|
|
expect(ctx.primary).toBe('my-project');
|
|
expect(ctx.parent).toBeNull();
|
|
expect(ctx.isWorktree).toBe(false);
|
|
expect(ctx.allProjects).toEqual(['my-project']);
|
|
});
|
|
|
|
it('resolves ~ path correctly', () => {
|
|
const home = homedir();
|
|
const ctx = getProjectContext('~');
|
|
const ctxHome = getProjectContext(home);
|
|
expect(ctx.primary).toBe(ctxHome.primary);
|
|
});
|
|
|
|
it('returns unknown-project context for null', () => {
|
|
const ctx = getProjectContext(null);
|
|
expect(ctx.primary).toBe('unknown-project');
|
|
expect(ctx.parent).toBeNull();
|
|
});
|
|
|
|
describe('worktree isolation', () => {
|
|
let tmp: string;
|
|
let mainRepo: string;
|
|
let worktreeCheckout: string;
|
|
|
|
beforeAll(async () => {
|
|
const { mkdtempSync, mkdirSync, writeFileSync } = await import('fs');
|
|
const { join } = await import('path');
|
|
const { tmpdir } = await import('os');
|
|
|
|
tmp = mkdtempSync(join(tmpdir(), 'cm-wt-'));
|
|
mainRepo = join(tmp, 'main-repo');
|
|
const worktreeGitDir = join(mainRepo, '.git', 'worktrees', 'my-worktree');
|
|
worktreeCheckout = join(tmp, 'my-worktree');
|
|
|
|
mkdirSync(worktreeGitDir, { recursive: true });
|
|
mkdirSync(worktreeCheckout, { recursive: true });
|
|
writeFileSync(
|
|
join(worktreeCheckout, '.git'),
|
|
`gitdir: ${worktreeGitDir}\n`
|
|
);
|
|
});
|
|
|
|
afterAll(async () => {
|
|
const { rmSync } = await import('fs');
|
|
rmSync(tmp, { recursive: true, force: true });
|
|
});
|
|
|
|
it('uses parent/worktree composite as primary when in a worktree', () => {
|
|
const ctx = getProjectContext(worktreeCheckout);
|
|
expect(ctx.isWorktree).toBe(true);
|
|
expect(ctx.primary).toBe('main-repo/my-worktree');
|
|
expect(ctx.parent).toBe('main-repo');
|
|
expect(ctx.allProjects).toEqual(['main-repo', 'main-repo/my-worktree']);
|
|
});
|
|
|
|
it('write-path call sites resolve to composite name in worktrees', () => {
|
|
const project = getProjectContext(worktreeCheckout).primary;
|
|
expect(project).toBe('main-repo/my-worktree');
|
|
expect(project).not.toBe('main-repo');
|
|
expect(project).not.toBe('my-worktree');
|
|
});
|
|
});
|
|
});
|