lava-oushudb-dt-sql-parser/test/parser/spark/syntax/drop.test.ts
Hayden ecbbee32c7
test: remove barrier files to improve unit testing performance (#249)
* test: remove barrier files to improve unit testing performance

* chore: change check-types command
2024-01-19 21:10:00 +08:00

22 lines
616 B
TypeScript

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