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
40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
import { FlinkSQL } from 'src/parser/flink';
|
|
import { readSQL } from 'test/helper';
|
|
|
|
const features = {
|
|
table: readSQL(__dirname, 'dropTable.sql'),
|
|
view: readSQL(__dirname, 'dropView.sql'),
|
|
function: readSQL(__dirname, 'dropFunction.sql'),
|
|
catalog: readSQL(__dirname, 'dropCatalog.sql'),
|
|
database: readSQL(__dirname, 'dropDatabase.sql'),
|
|
};
|
|
|
|
describe('FlinkSQL Drop Statements Tests', () => {
|
|
const flink = new FlinkSQL();
|
|
features.table.forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(flink.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
features.view.forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(flink.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
features.function.forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(flink.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
features.catalog.forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(flink.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
features.database.forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(flink.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
});
|