2023-12-19 19:22:27 +08:00
|
|
|
import { PostgresSQL } from '../../../filters';
|
2023-11-09 11:53:40 +08:00
|
|
|
import { readSQL } from '../../../helper';
|
|
|
|
|
2023-12-19 19:22:27 +08:00
|
|
|
const parser = new PostgresSQL();
|
2023-11-09 11:53:40 +08:00
|
|
|
|
|
|
|
const features = {
|
|
|
|
selects: readSQL(__dirname, 'select.sql'),
|
|
|
|
};
|
|
|
|
|
|
|
|
describe('PgSQL Select Syntax Tests', () => {
|
|
|
|
features.selects.forEach((select) => {
|
|
|
|
it(select, () => {
|
|
|
|
expect(parser.validate(select).length).toBe(0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|