7de192d486
* 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 '
36 lines
1013 B
TypeScript
36 lines
1013 B
TypeScript
import FlinkSQL from '../../../../src/parser/flinksql';
|
|
import { readSQL } from '../../../helper';
|
|
|
|
const features = {
|
|
table: readSQL(__dirname, 'alterTable.sql'),
|
|
view: readSQL(__dirname, 'alterView.sql'),
|
|
function: readSQL(__dirname, 'alterFunction.sql'),
|
|
database: readSQL(__dirname, 'alterDatabase.sql'),
|
|
};
|
|
|
|
describe('FlinkSQL Alter Statements Syntax Tests', () => {
|
|
const parser = new FlinkSQL();
|
|
// Alter statements
|
|
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.database.forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(parser.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
|
|
features.function.forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(parser.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
});
|