bb0fad1dbe
* refactor: rename flinksql to flink * refactor: rename pgsql to postgresql * refactor: rename trinosql to trino * refactor: replace all default exports with named export * refactor: rename basicParser to basicSQL * refactor: rename basic-parser-types to types * refactor: replace arrow func with plain func
47 lines
1.3 KiB
TypeScript
47 lines
1.3 KiB
TypeScript
import { TrinoSQL } from 'src/parser/trino';
|
|
import { readSQL } from 'test/helper';
|
|
|
|
const features = {
|
|
table: readSQL(__dirname, 'drop_table.sql'),
|
|
view: readSQL(__dirname, 'drop_view.sql'),
|
|
schema: readSQL(__dirname, 'drop_schema.sql'),
|
|
role: readSQL(__dirname, 'drop_role.sql'),
|
|
column: readSQL(__dirname, 'drop_column.sql'),
|
|
materializedView: readSQL(__dirname, 'drop_materialized_view.sql'),
|
|
};
|
|
|
|
describe('TrinoSQL Drop Statements Syntax Tests', () => {
|
|
const trino = new TrinoSQL();
|
|
features.table.forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(trino.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
features.view.forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(trino.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
features.schema.forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(trino.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
|
|
features.column.forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(trino.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
features.role.forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(trino.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
features.materializedView.forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(trino.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
});
|