GitNexus/gitnexus/test/unit/community-processor.test.ts
abhigyanpatwari 8a100a76d3 test: add test suite with vitest (unit + integration + fixtures)
- 59 test files covering unit and integration tests
- vitest config with coverage thresholds and fork pooling
- Test fixtures (mini-repo + multi-language sample code)
- Add vitest + coverage-v8 to devDependencies
- Add test scripts (test, test:integration, test:all, test:watch, test:coverage)
- Move typescript to devDependencies where it belongs

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-01 20:07:02 +05:30

38 lines
1.2 KiB
TypeScript

import { describe, it, expect } from 'vitest';
import { getCommunityColor, COMMUNITY_COLORS } from '../../src/core/ingestion/community-processor.js';
describe('community-processor', () => {
describe('COMMUNITY_COLORS', () => {
it('has 12 colors', () => {
expect(COMMUNITY_COLORS).toHaveLength(12);
});
it('contains valid hex color strings', () => {
for (const color of COMMUNITY_COLORS) {
expect(color).toMatch(/^#[0-9a-fA-F]{6}$/);
}
});
it('has no duplicate colors', () => {
const unique = new Set(COMMUNITY_COLORS);
expect(unique.size).toBe(COMMUNITY_COLORS.length);
});
});
describe('getCommunityColor', () => {
it('returns first color for index 0', () => {
expect(getCommunityColor(0)).toBe(COMMUNITY_COLORS[0]);
});
it('wraps around when index exceeds color count', () => {
expect(getCommunityColor(12)).toBe(COMMUNITY_COLORS[0]);
expect(getCommunityColor(13)).toBe(COMMUNITY_COLORS[1]);
});
it('returns different colors for different indices', () => {
const c0 = getCommunityColor(0);
const c1 = getCommunityColor(1);
expect(c0).not.toBe(c1);
});
});
});