3x-ui/frontend/src/test/security.test.ts

27 lines
876 B
TypeScript
Raw Normal View History

/// <reference types="vite/client" />
import { describe, expect, it } from 'vitest';
import { SecuritySettingsSchema } from '@/schemas/protocols';
const securityFixtures = import.meta.glob<unknown>(
'./golden/fixtures/security/*.json',
{ eager: true, import: 'default' },
);
function fixtureName(path: string): string {
const file = path.split('/').pop() ?? path;
return file.replace(/\.json$/, '');
}
describe('SecuritySettingsSchema fixtures', () => {
const entries = Object.entries(securityFixtures).sort(([a], [b]) => a.localeCompare(b));
expect(entries.length, 'expected at least one fixture under golden/fixtures/security').toBeGreaterThan(0);
for (const [path, raw] of entries) {
it(`parses ${fixtureName(path)} byte-stably`, () => {
const parsed = SecuritySettingsSchema.parse(raw);
expect(parsed).toMatchSnapshot();
});
}
});