2023-05-25 09:24:24 +08:00
|
|
|
import fs from 'fs';
|
|
|
|
import path from 'path';
|
2023-10-13 11:16:36 +08:00
|
|
|
import FlinkSQL from '../../../../src/parser/flinksql';
|
2023-05-25 09:24:24 +08:00
|
|
|
|
|
|
|
// 综合测试的 sql 不做切割
|
|
|
|
const features = {
|
2023-10-13 11:16:36 +08:00
|
|
|
templates: fs.readFileSync(path.join(__dirname, 'fixtures', 'templates.sql'), 'utf-8'),
|
2023-05-25 09:24:24 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
describe('FlinkSQL Comprehensive Tests', () => {
|
|
|
|
const parser = new FlinkSQL();
|
|
|
|
test('Stream SQL templates', () => {
|
|
|
|
expect(parser.validate(features.templates).length).toBe(0);
|
|
|
|
});
|
|
|
|
});
|