lava-oushudb-dt-sql-parser/test/parser/spark/syntax/alert.test.ts
琉易 d13a92914d
feat: spark sql DDL test (#170)
Co-authored-by: liuyi <liuyi@dtstack.com>
2023-10-09 09:49:48 +08:00

21 lines
582 B
TypeScript

import SparkSQL from '../../../../src/parser/spark';
import { readSQL } from '../../../helper';
const parser = new SparkSQL();
const features = {
alertDatabase: readSQL(__dirname, 'alertDatabase.sql'),
alertTable: readSQL(__dirname, 'alertTable.sql'),
alertView: readSQL(__dirname, 'alertView.sql'),
};
describe('SparkSQL Insert Syntax Tests', () => {
Object.keys(features).forEach((key) => {
features[key].forEach((sql) => {
it(sql, () => {
expect(parser.validate(sql).length).toBe(0);
});
});
});
});