lava-oushudb-dt-sql-parser/test/parser/spark/syntax/alert.test.ts

21 lines
581 B
TypeScript
Raw Normal View History

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 Alert Syntax Tests', () => {
Object.keys(features).forEach((key) => {
features[key].forEach((sql) => {
it(sql, () => {
expect(parser.validate(sql).length).toBe(0);
});
});
});
});