2023-12-19 19:22:27 +08:00
|
|
|
import { HiveSQL } from '../../../filters';
|
2023-10-13 11:16:36 +08:00
|
|
|
import { readSQL } from '../../../helper';
|
2023-09-06 15:15:04 +08:00
|
|
|
|
|
|
|
const features = {
|
2023-10-13 11:16:36 +08:00
|
|
|
imports: readSQL(__dirname, 'import.sql'),
|
2023-09-06 15:15:04 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
describe('HiveSQL Import Syntax Tests', () => {
|
|
|
|
const parser = new HiveSQL();
|
|
|
|
|
|
|
|
features.imports.forEach((imp) => {
|
|
|
|
it(imp, () => {
|
|
|
|
expect(parser.validate(imp).length).toBe(0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|