lava-oushudb-dt-sql-parser/test/parser/impala/syntax/dropStatement.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

59 lines
1.6 KiB
TypeScript

import ImpalaSQL from 'src/parser/impala';
import { readSQL } from 'test/helper';
const parser = new ImpalaSQL();
const features = {
dbs: readSQL(__dirname, 'drop_db.sql'),
functions: readSQL(__dirname, 'drop_function.sql'),
roles: readSQL(__dirname, 'drop_role.sql'),
stats: readSQL(__dirname, 'drop_stats.sql'),
tables: readSQL(__dirname, 'drop_table.sql'),
views: readSQL(__dirname, 'drop_view.sql'),
};
describe('ImpalaSQL Drop Syntax Tests', () => {
describe('DROP DATABASE', () => {
features.dbs.forEach((db) => {
it(db, () => {
expect(parser.validate(db).length).toBe(0);
});
});
});
describe('DROP FUNCTION', () => {
features.functions.forEach((db) => {
it(db, () => {
expect(parser.validate(db).length).toBe(0);
});
});
});
describe('DROP ROLE', () => {
features.roles.forEach((db) => {
it(db, () => {
expect(parser.validate(db).length).toBe(0);
});
});
});
describe('DROP STATS', () => {
features.stats.forEach((db) => {
it(db, () => {
expect(parser.validate(db).length).toBe(0);
});
});
});
describe('DROP TABLE', () => {
features.tables.forEach((db) => {
it(db, () => {
expect(parser.validate(db).length).toBe(0);
});
});
});
describe('DROP VIEW', () => {
features.views.forEach((db) => {
it(db, () => {
expect(parser.validate(db).length).toBe(0);
});
});
});
});