lava-oushudb-dt-sql-parser/test/parser/hive/syntax/authorizationStatement.test.ts

17 lines
436 B
TypeScript
Raw Normal View History

import HiveSQL from '../../../../src/parser/hive';
import { readSQL } from '../../../helper';
const parser = new HiveSQL();
const features = {
manageRoles: readSQL(__dirname, 'authorization.sql'),
};
describe('HiveSQL Related To Authorization Tests', () => {
features.manageRoles.forEach((manageRole) => {
it(manageRole, () => {
expect(parser.validate(manageRole).length).toBe(0);
});
});
});