2023-10-13 11:16:36 +08:00
|
|
|
import FlinkSQL from '../../../../src/parser/flinksql';
|
|
|
|
import { readSQL } from '../../../helper';
|
2023-06-07 09:34:24 +08:00
|
|
|
|
|
|
|
// 综合测试的 sql 不做切割
|
|
|
|
const features = {
|
2023-10-13 11:16:36 +08:00
|
|
|
chores: readSQL(__dirname, 'chore.sql'),
|
2023-06-07 09:34:24 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
describe('FlinkSQL Chore Syntax Tests', () => {
|
|
|
|
const parser = new FlinkSQL();
|
|
|
|
|
|
|
|
features.chores.forEach((sql) => {
|
|
|
|
it(sql, () => {
|
|
|
|
expect(parser.validate(sql).length).toBe(0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|