Reorganize: Move all skills to skills/ folder
- Created skills/ directory - Moved 272 skills to skills/ subfolder - Kept agents/ at root level - Kept installation scripts and docs at root level Repository structure: - skills/ - All 272 skills from skills.sh - agents/ - Agent definitions - *.sh, *.ps1 - Installation scripts - README.md, etc. - Documentation Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
206
skills/plugins/claude-hud/tests/git.test.js
Normal file
206
skills/plugins/claude-hud/tests/git.test.js
Normal file
@@ -0,0 +1,206 @@
|
||||
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 });
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user