2024-03-27 10:33:25 +08:00
|
|
|
import { HiveSQL } from 'src/parser/hive';
|
2024-01-19 21:10:00 +08:00
|
|
|
import { readSQL } from 'test/helper';
|
2023-09-06 15:15:04 +08:00
|
|
|
|
2024-03-27 10:33:25 +08:00
|
|
|
const hive = new HiveSQL();
|
2023-09-06 15:15:04 +08:00
|
|
|
|
|
|
|
const features = {
|
|
|
|
insertFromQueries: readSQL(__dirname, 'insertFromQuery.sql'),
|
2023-10-13 11:16:36 +08:00
|
|
|
insertFromValues: readSQL(__dirname, 'insertFormValues.sql'),
|
2023-09-06 15:15:04 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
describe('HiveSQL Insert Syntax Tests', () => {
|
|
|
|
features.insertFromQueries.forEach((ifq) => {
|
|
|
|
it(ifq, () => {
|
2024-03-27 10:33:25 +08:00
|
|
|
expect(hive.validate(ifq).length).toBe(0);
|
2023-09-06 15:15:04 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
features.insertFromValues.forEach((ifv) => {
|
|
|
|
it(ifv, () => {
|
2024-03-27 10:33:25 +08:00
|
|
|
expect(hive.validate(ifv).length).toBe(0);
|
2023-09-06 15:15:04 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|