mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
57 lines
1.7 KiB
TypeScript
57 lines
1.7 KiB
TypeScript
import { readdirSync } from 'node:fs';
|
|
import { join } from 'node:path';
|
|
import { schemaFromCode } from 'src/sql-tools/schema-from-code';
|
|
import { SchemaFromCodeOptions } from 'src/sql-tools/types';
|
|
import { describe, expect, it } from 'vitest';
|
|
|
|
const importModule = async (filePath: string) => {
|
|
const module = await import(filePath);
|
|
const options: SchemaFromCodeOptions = module.options;
|
|
|
|
return { module, options };
|
|
};
|
|
|
|
describe(schemaFromCode.name, () => {
|
|
it('should work', () => {
|
|
expect(schemaFromCode({ reset: true })).toEqual({
|
|
databaseName: 'postgres',
|
|
schemaName: 'public',
|
|
functions: [],
|
|
enums: [],
|
|
extensions: [],
|
|
parameters: [],
|
|
overrides: [],
|
|
tables: [],
|
|
warnings: [],
|
|
});
|
|
});
|
|
|
|
describe('test files', () => {
|
|
const errorStubs = readdirSync('test/sql-tools/errors', { withFileTypes: true });
|
|
for (const file of errorStubs) {
|
|
const filePath = join(file.parentPath, file.name);
|
|
it(filePath, async () => {
|
|
const { module, options } = await importModule(filePath);
|
|
|
|
expect(module.message).toBeDefined();
|
|
expect(() => schemaFromCode({ ...options, reset: true })).toThrowError(module.message);
|
|
});
|
|
}
|
|
|
|
const stubs = readdirSync('test/sql-tools', { withFileTypes: true });
|
|
for (const file of stubs) {
|
|
if (file.isDirectory()) {
|
|
continue;
|
|
}
|
|
|
|
const filePath = join(file.parentPath, file.name);
|
|
it(filePath, async () => {
|
|
const { module, options } = await importModule(filePath);
|
|
|
|
expect(module.description).toBeDefined();
|
|
expect(module.schema).toBeDefined();
|
|
expect(schemaFromCode({ ...options, reset: true }), module.description).toEqual(module.schema);
|
|
});
|
|
}
|
|
});
|
|
});
|