mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-08-28 05:25:25 +00:00
* feat: configure prettier with pre-commit hook integration Add prettier, lint-staged, and prettier-plugin-tailwindcss at the repo root with husky pre-commit hook integration. Moves husky from gitnexus/ to root package.json for reliable hook installation. - Root package.json with prepare/format/format:check scripts - .prettierrc with endOfLine:lf and tailwindStylesheet for TW v4 - .prettierignore excluding fixtures, vendor, generated, *.d.ts, *.md - .gitattributes enforcing LF line endings for Windows consistency - Pre-commit hook uses direct node_modules/.bin/ paths (no npx) * style: apply prettier formatting to entire codebase One-time bulk format. No logic changes. Use .git-blame-ignore-revs to skip this commit in git blame. * chore: add .git-blame-ignore-revs for prettier format commit * perf: pre-commit hook runs only tests related to staged files Use vitest --related to scope test execution to tests that import the changed files, instead of running the full suite on every commit. * perf: remove vitest from pre-commit hook, keep in CI only Pre-commit now runs lint-staged + tsc only. Tests run in CI (ci-tests.yml) where they belong — keeps commits fast. * ci: add prettier format check to quality workflow PRs will now fail if code isn't formatted with prettier.
116 lines
3.7 KiB
TypeScript
116 lines
3.7 KiB
TypeScript
import { describe, expect, it } from 'vitest';
|
|
import {
|
|
NODE_COLORS,
|
|
NODE_SIZES,
|
|
COMMUNITY_COLORS,
|
|
getCommunityColor,
|
|
DEFAULT_VISIBLE_LABELS,
|
|
FILTERABLE_LABELS,
|
|
ALL_EDGE_TYPES,
|
|
DEFAULT_VISIBLE_EDGES,
|
|
EDGE_INFO,
|
|
} from '../../src/lib/constants';
|
|
|
|
describe('NODE_COLORS', () => {
|
|
it('has a color for every node label used in NODE_SIZES', () => {
|
|
for (const label of Object.keys(NODE_SIZES)) {
|
|
expect(NODE_COLORS).toHaveProperty(label);
|
|
expect(NODE_COLORS[label as keyof typeof NODE_COLORS]).toMatch(/^#[0-9a-f]{6}$/i);
|
|
}
|
|
});
|
|
});
|
|
|
|
describe('NODE_SIZES', () => {
|
|
it('gives Project the largest size', () => {
|
|
const maxLabel = Object.entries(NODE_SIZES).reduce((a, b) => (a[1] > b[1] ? a : b));
|
|
expect(maxLabel[0]).toBe('Project');
|
|
});
|
|
|
|
it('gives structural nodes larger sizes than code nodes', () => {
|
|
expect(NODE_SIZES.Folder).toBeGreaterThan(NODE_SIZES.Function);
|
|
expect(NODE_SIZES.File).toBeGreaterThan(NODE_SIZES.Variable);
|
|
});
|
|
});
|
|
|
|
describe('getCommunityColor', () => {
|
|
it('returns valid hex colors', () => {
|
|
for (let i = 0; i < 20; i++) {
|
|
expect(getCommunityColor(i)).toMatch(/^#[0-9a-f]{6}$/i);
|
|
}
|
|
});
|
|
|
|
it('wraps around the palette', () => {
|
|
const paletteSize = COMMUNITY_COLORS.length;
|
|
expect(getCommunityColor(0)).toBe(getCommunityColor(paletteSize));
|
|
expect(getCommunityColor(1)).toBe(getCommunityColor(paletteSize + 1));
|
|
});
|
|
});
|
|
|
|
describe('DEFAULT_VISIBLE_LABELS', () => {
|
|
it('includes common structural and code labels', () => {
|
|
expect(DEFAULT_VISIBLE_LABELS).toContain('File');
|
|
expect(DEFAULT_VISIBLE_LABELS).toContain('Function');
|
|
expect(DEFAULT_VISIBLE_LABELS).toContain('Class');
|
|
});
|
|
|
|
it('excludes noisy labels by default', () => {
|
|
expect(DEFAULT_VISIBLE_LABELS).not.toContain('Variable');
|
|
expect(DEFAULT_VISIBLE_LABELS).not.toContain('Import');
|
|
});
|
|
});
|
|
|
|
describe('FILTERABLE_LABELS', () => {
|
|
it('includes all newly added node types', () => {
|
|
expect(FILTERABLE_LABELS).toContain('Enum');
|
|
expect(FILTERABLE_LABELS).toContain('Type');
|
|
expect(FILTERABLE_LABELS).toContain('Decorator');
|
|
expect(FILTERABLE_LABELS).toContain('Variable');
|
|
});
|
|
|
|
it('every filterable label has a defined color in NODE_COLORS', () => {
|
|
for (const label of FILTERABLE_LABELS) {
|
|
expect(NODE_COLORS).toHaveProperty(label);
|
|
expect(NODE_COLORS[label as keyof typeof NODE_COLORS]).toMatch(/^#[0-9a-f]{6}$/i);
|
|
}
|
|
});
|
|
|
|
it('every filterable label has a defined size in NODE_SIZES', () => {
|
|
for (const label of FILTERABLE_LABELS) {
|
|
expect(NODE_SIZES).toHaveProperty(label);
|
|
expect(NODE_SIZES[label as keyof typeof NODE_SIZES]).toBeGreaterThan(0);
|
|
}
|
|
});
|
|
|
|
it('has no duplicate entries', () => {
|
|
const unique = new Set(FILTERABLE_LABELS);
|
|
expect(unique.size).toBe(FILTERABLE_LABELS.length);
|
|
});
|
|
|
|
it('is a subset of DEFAULT_VISIBLE_LABELS plus togglable labels', () => {
|
|
const allKnown = new Set(Object.keys(NODE_COLORS));
|
|
for (const label of FILTERABLE_LABELS) {
|
|
expect(allKnown.has(label)).toBe(true);
|
|
}
|
|
});
|
|
});
|
|
|
|
describe('edge types', () => {
|
|
it('ALL_EDGE_TYPES contains all EDGE_INFO keys', () => {
|
|
const edgeInfoKeys = Object.keys(EDGE_INFO).sort();
|
|
const allEdgeTypes = [...ALL_EDGE_TYPES].sort();
|
|
expect(edgeInfoKeys).toEqual(allEdgeTypes);
|
|
});
|
|
|
|
it('DEFAULT_VISIBLE_EDGES is a subset of ALL_EDGE_TYPES', () => {
|
|
for (const type of DEFAULT_VISIBLE_EDGES) {
|
|
expect(ALL_EDGE_TYPES).toContain(type);
|
|
}
|
|
});
|
|
|
|
it('EDGE_INFO entries have color and label', () => {
|
|
for (const info of Object.values(EDGE_INFO)) {
|
|
expect(info.color).toMatch(/^#[0-9a-f]{6}$/i);
|
|
expect(info.label.length).toBeGreaterThan(0);
|
|
}
|
|
});
|
|
});
|