Files
5chan/src/lib/__tests__/board-flags.test.ts
T
Tommaso Casaburi cbdd4edf7b fix(flags): map pony flags to sprite sheet coordinates
Pony flag selector order differs from the sprite layout, so derive
positions from explicit coordinates instead of entry index.
2026-06-08 17:12:59 +07:00

68 lines
2.4 KiB
TypeScript

import { describe, expect, it } from 'vitest';
import { getBoardFlagDefinition, normalizeBoardFlagKind } from '../board-flags';
describe('board-flags', () => {
it('normalizes board flag kind aliases', () => {
expect(normalizeBoardFlagKind('pol')).toBe('pol');
expect(normalizeBoardFlagKind('memeflags')).toBe('pol');
expect(normalizeBoardFlagKind('mlp')).toBe('pony');
expect(normalizeBoardFlagKind('unknown')).toBeUndefined();
});
it('maps political flags to the flags-2 sprite grid', () => {
expect(getBoardFlagDefinition('pol', 'AC')).toMatchObject({
code: 'AC',
label: 'Anarcho-Capitalist',
spritePath: 'assets/icons/flags-2.png',
width: 16,
height: 12,
x: 0,
y: 0,
});
expect(getBoardFlagDefinition('pol', 'MZ')).toMatchObject({
code: 'MZ',
label: 'Task Force Z',
x: 64,
y: 24,
});
expect(getBoardFlagDefinition('pol', 'NB')).toMatchObject({
code: 'NB',
label: 'National Bolshevik',
x: 0,
y: 36,
});
expect(getBoardFlagDefinition('pol', 'RE')).toMatchObject({
code: 'RE',
label: 'Republican',
x: 0,
y: 48,
});
expect(getBoardFlagDefinition('pol', 'TM')).toMatchObject({
code: 'TM',
label: 'Templar',
x: 16,
y: 48,
});
expect(getBoardFlagDefinition('pol', 'WP')).toMatchObject({ code: 'WP', x: 64, y: 48 });
});
it('maps pony flags to the flags-pony sprite grid', () => {
expect(getBoardFlagDefinition('pony', '4CC')).toMatchObject({
code: '4CC',
label: '4cc /mlp/',
spritePath: 'assets/icons/flags-pony.png',
width: 16,
height: 16,
x: 0,
y: 0,
});
// Selector order (PONY_FLAG_ENTRIES) differs from the sprite's alphabetical-by-code layout,
// so these codes only land on the right cell via PONY_FLAG_COORDINATES.
expect(getBoardFlagDefinition('pony', 'AB')).toMatchObject({ code: 'AB', label: 'Aria Blaze', x: 16, y: 0 });
expect(getBoardFlagDefinition('pony', 'ADA')).toMatchObject({ code: 'ADA', label: 'Adagio Dazzle', x: 32, y: 0 });
expect(getBoardFlagDefinition('pony', 'AJ')).toMatchObject({ code: 'AJ', label: 'Applejack', x: 48, y: 0 });
expect(getBoardFlagDefinition('pony', 'AN')).toMatchObject({ code: 'AN', label: 'Anon', x: 64, y: 0 });
expect(getBoardFlagDefinition('pony', 'ZS')).toMatchObject({ code: 'ZS', label: 'Zipp Storm', x: 16, y: 144 });
});
});