2024-03-27 10:33:25 +08:00
|
|
|
import { PostgreSQL } from 'src/parser/postgresql';
|
2024-01-19 21:10:00 +08:00
|
|
|
import { readSQL } from 'test/helper';
|
2023-11-09 11:53:40 +08:00
|
|
|
|
2024-03-27 10:33:25 +08:00
|
|
|
const postgresql = new PostgreSQL();
|
2023-11-09 11:53:40 +08:00
|
|
|
|
|
|
|
const features = {
|
|
|
|
inserts: readSQL(__dirname, 'insert.sql'),
|
|
|
|
};
|
|
|
|
|
|
|
|
describe('PgSQL Insert Syntax Tests', () => {
|
|
|
|
features.inserts.forEach((insertItem) => {
|
|
|
|
it(insertItem, () => {
|
2024-03-27 10:33:25 +08:00
|
|
|
expect(postgresql.validate(insertItem).length).toBe(0);
|
2023-11-09 11:53:40 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|