lava-oushudb-dt-sql-parser/test/parser/trino/syntax/dropStatement.test.ts
Hayden bb0fad1dbe
refactor: standard naming (#278)
* 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
2024-03-27 10:33:25 +08:00

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);
});
});
});