lava-oushudb-dt-sql-parser/test/parser/flinksql/syntax/dropStatement.test.ts
Hayden 7de192d486
chroe: devops (#180)
* ci: add dependencies about lint tool

* ci: replace eslint with prettier

* ci: add husky, cz and commitlint

* style: lint fix via prettier

* ci: add prettier and check-types to github workflow

'
2023-10-13 11:16:36 +08:00

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