mirror of
https://github.com/jarrodwatts/claude-hud.git
synced 2026-04-17 07:12:40 +00:00
Add showFileStats option to display file change counts in Starship-compatible format: - ! = Modified files - + = Added/staged files - ✘ = Deleted files - ? = Untracked files Example: git:(main* !2 +1 ?3) Changes: - src/git.ts: Add FileStats interface and parseFileStats() function - src/config.ts: Add showFileStats config option (default: false) - src/render/session-line.ts: Add file stats rendering logic - commands/configure.md: Add "File stats" option to Git Style selection - tests: Add unit tests for fileStats parsing and rendering Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
207 lines
8.5 KiB
JavaScript
207 lines
8.5 KiB
JavaScript
import { test } from 'node:test';
|
|
import assert from 'node:assert/strict';
|
|
import { mkdtemp, rm, writeFile } from 'node:fs/promises';
|
|
import { tmpdir } from 'node:os';
|
|
import path from 'node:path';
|
|
import { execFileSync } from 'node:child_process';
|
|
import { getGitBranch, getGitStatus } from '../dist/git.js';
|
|
|
|
test('getGitBranch returns null when cwd is undefined', async () => {
|
|
const result = await getGitBranch(undefined);
|
|
assert.equal(result, null);
|
|
});
|
|
|
|
test('getGitBranch returns null for non-git directory', async () => {
|
|
const dir = await mkdtemp(path.join(tmpdir(), 'claude-hud-nogit-'));
|
|
try {
|
|
const result = await getGitBranch(dir);
|
|
assert.equal(result, null);
|
|
} finally {
|
|
await rm(dir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
test('getGitBranch returns branch name for git directory', async () => {
|
|
const dir = await mkdtemp(path.join(tmpdir(), 'claude-hud-git-'));
|
|
try {
|
|
execFileSync('git', ['init'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['config', 'user.email', 'test@test.com'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['config', 'user.name', 'Test'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['commit', '--allow-empty', '-m', 'init'], { cwd: dir, stdio: 'ignore' });
|
|
|
|
const result = await getGitBranch(dir);
|
|
assert.ok(result === 'main' || result === 'master', `Expected main or master, got ${result}`);
|
|
} finally {
|
|
await rm(dir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
test('getGitBranch returns custom branch name', async () => {
|
|
const dir = await mkdtemp(path.join(tmpdir(), 'claude-hud-git-'));
|
|
try {
|
|
execFileSync('git', ['init'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['config', 'user.email', 'test@test.com'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['config', 'user.name', 'Test'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['commit', '--allow-empty', '-m', 'init'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['checkout', '-b', 'feature/test-branch'], { cwd: dir, stdio: 'ignore' });
|
|
|
|
const result = await getGitBranch(dir);
|
|
assert.equal(result, 'feature/test-branch');
|
|
} finally {
|
|
await rm(dir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
// getGitStatus tests
|
|
test('getGitStatus returns null when cwd is undefined', async () => {
|
|
const result = await getGitStatus(undefined);
|
|
assert.equal(result, null);
|
|
});
|
|
|
|
test('getGitStatus returns null for non-git directory', async () => {
|
|
const dir = await mkdtemp(path.join(tmpdir(), 'claude-hud-nogit-'));
|
|
try {
|
|
const result = await getGitStatus(dir);
|
|
assert.equal(result, null);
|
|
} finally {
|
|
await rm(dir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
test('getGitStatus returns clean state for clean repo', async () => {
|
|
const dir = await mkdtemp(path.join(tmpdir(), 'claude-hud-git-'));
|
|
try {
|
|
execFileSync('git', ['init'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['config', 'user.email', 'test@test.com'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['config', 'user.name', 'Test'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['commit', '--allow-empty', '-m', 'init'], { cwd: dir, stdio: 'ignore' });
|
|
|
|
const result = await getGitStatus(dir);
|
|
assert.ok(result?.branch === 'main' || result?.branch === 'master');
|
|
assert.equal(result?.isDirty, false);
|
|
assert.equal(result?.ahead, 0);
|
|
assert.equal(result?.behind, 0);
|
|
} finally {
|
|
await rm(dir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
test('getGitStatus detects dirty state', async () => {
|
|
const dir = await mkdtemp(path.join(tmpdir(), 'claude-hud-git-'));
|
|
try {
|
|
execFileSync('git', ['init'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['config', 'user.email', 'test@test.com'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['config', 'user.name', 'Test'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['commit', '--allow-empty', '-m', 'init'], { cwd: dir, stdio: 'ignore' });
|
|
|
|
// Create uncommitted file
|
|
await writeFile(path.join(dir, 'dirty.txt'), 'uncommitted change');
|
|
|
|
const result = await getGitStatus(dir);
|
|
assert.equal(result?.isDirty, true);
|
|
} finally {
|
|
await rm(dir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
// fileStats tests
|
|
test('getGitStatus returns undefined fileStats for clean repo', async () => {
|
|
const dir = await mkdtemp(path.join(tmpdir(), 'claude-hud-git-'));
|
|
try {
|
|
execFileSync('git', ['init'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['config', 'user.email', 'test@test.com'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['config', 'user.name', 'Test'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['commit', '--allow-empty', '-m', 'init'], { cwd: dir, stdio: 'ignore' });
|
|
|
|
const result = await getGitStatus(dir);
|
|
assert.equal(result?.fileStats, undefined);
|
|
} finally {
|
|
await rm(dir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
test('getGitStatus counts untracked files', async () => {
|
|
const dir = await mkdtemp(path.join(tmpdir(), 'claude-hud-git-'));
|
|
try {
|
|
execFileSync('git', ['init'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['config', 'user.email', 'test@test.com'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['config', 'user.name', 'Test'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['commit', '--allow-empty', '-m', 'init'], { cwd: dir, stdio: 'ignore' });
|
|
|
|
// Create untracked files
|
|
await writeFile(path.join(dir, 'untracked1.txt'), 'content');
|
|
await writeFile(path.join(dir, 'untracked2.txt'), 'content');
|
|
|
|
const result = await getGitStatus(dir);
|
|
assert.equal(result?.fileStats?.untracked, 2);
|
|
assert.equal(result?.fileStats?.modified, 0);
|
|
assert.equal(result?.fileStats?.added, 0);
|
|
assert.equal(result?.fileStats?.deleted, 0);
|
|
} finally {
|
|
await rm(dir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
test('getGitStatus counts modified files', async () => {
|
|
const dir = await mkdtemp(path.join(tmpdir(), 'claude-hud-git-'));
|
|
try {
|
|
execFileSync('git', ['init'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['config', 'user.email', 'test@test.com'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['config', 'user.name', 'Test'], { cwd: dir, stdio: 'ignore' });
|
|
|
|
// Create and commit a file
|
|
await writeFile(path.join(dir, 'file.txt'), 'original');
|
|
execFileSync('git', ['add', 'file.txt'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['commit', '-m', 'add file'], { cwd: dir, stdio: 'ignore' });
|
|
|
|
// Modify the file
|
|
await writeFile(path.join(dir, 'file.txt'), 'modified');
|
|
|
|
const result = await getGitStatus(dir);
|
|
assert.equal(result?.fileStats?.modified, 1);
|
|
assert.equal(result?.fileStats?.untracked, 0);
|
|
} finally {
|
|
await rm(dir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
test('getGitStatus counts staged added files', async () => {
|
|
const dir = await mkdtemp(path.join(tmpdir(), 'claude-hud-git-'));
|
|
try {
|
|
execFileSync('git', ['init'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['config', 'user.email', 'test@test.com'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['config', 'user.name', 'Test'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['commit', '--allow-empty', '-m', 'init'], { cwd: dir, stdio: 'ignore' });
|
|
|
|
// Create and stage a new file
|
|
await writeFile(path.join(dir, 'newfile.txt'), 'content');
|
|
execFileSync('git', ['add', 'newfile.txt'], { cwd: dir, stdio: 'ignore' });
|
|
|
|
const result = await getGitStatus(dir);
|
|
assert.equal(result?.fileStats?.added, 1);
|
|
assert.equal(result?.fileStats?.untracked, 0);
|
|
} finally {
|
|
await rm(dir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
test('getGitStatus counts deleted files', async () => {
|
|
const dir = await mkdtemp(path.join(tmpdir(), 'claude-hud-git-'));
|
|
try {
|
|
execFileSync('git', ['init'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['config', 'user.email', 'test@test.com'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['config', 'user.name', 'Test'], { cwd: dir, stdio: 'ignore' });
|
|
|
|
// Create, commit, then delete a file
|
|
await writeFile(path.join(dir, 'todelete.txt'), 'content');
|
|
execFileSync('git', ['add', 'todelete.txt'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['commit', '-m', 'add file'], { cwd: dir, stdio: 'ignore' });
|
|
execFileSync('git', ['rm', 'todelete.txt'], { cwd: dir, stdio: 'ignore' });
|
|
|
|
const result = await getGitStatus(dir);
|
|
assert.equal(result?.fileStats?.deleted, 1);
|
|
} finally {
|
|
await rm(dir, { recursive: true, force: true });
|
|
}
|
|
});
|