8f72a5af60
* fix: #236 export AbstractParseTreeVisitor * build: set isolatedModules true * feat: import parser about from filters
35 lines
999 B
TypeScript
35 lines
999 B
TypeScript
import { ImpalaSQL } from '../../../filters';
|
|
import { readSQL } from '../../../helper';
|
|
|
|
const parser = new ImpalaSQL();
|
|
|
|
const features = {
|
|
refresh: readSQL(__dirname, 'refresh.sql'),
|
|
authorization: readSQL(__dirname, 'refresh_authorization.sql'),
|
|
function: readSQL(__dirname, 'refresh_function.sql'),
|
|
};
|
|
|
|
describe('ImpalaSQL Refresh Syntax Tests', () => {
|
|
describe('REFRESH', () => {
|
|
features.refresh.forEach((db) => {
|
|
it(db, () => {
|
|
expect(parser.validate(db).length).toBe(0);
|
|
});
|
|
});
|
|
});
|
|
describe('REFRESH AUTHORIZATION', () => {
|
|
features.authorization.forEach((db) => {
|
|
it(db, () => {
|
|
expect(parser.validate(db).length).toBe(0);
|
|
});
|
|
});
|
|
});
|
|
describe('REFRESH FUNCTION', () => {
|
|
features.function.forEach((db) => {
|
|
it(db, () => {
|
|
expect(parser.validate(db).length).toBe(0);
|
|
});
|
|
});
|
|
});
|
|
});
|