40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
import FlinkSQL from "../../../../src/parser/flinksql";
|
|
import { readSQL } from "../../../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 parser = new FlinkSQL();
|
|
features.table.forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(parser.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
features.view.forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(parser.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
features.function.forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(parser.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
features.catalog.forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(parser.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
features.database.forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(parser.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
});
|