2024-03-27 10:33:25 +08:00
|
|
|
import { SparkSQL } from 'src/parser/spark';
|
2024-01-19 21:10:00 +08:00
|
|
|
import { readSQL } from 'test/helper';
|
2023-10-09 09:49:22 +08:00
|
|
|
|
2024-03-27 10:33:25 +08:00
|
|
|
const spark = new SparkSQL();
|
2023-10-09 09:49:22 +08:00
|
|
|
|
|
|
|
const features = {
|
|
|
|
show: readSQL(__dirname, 'show.sql'),
|
|
|
|
};
|
|
|
|
|
2023-10-18 10:53:43 +08:00
|
|
|
describe('Spark Show Syntax Tests', () => {
|
2023-10-09 09:49:22 +08:00
|
|
|
features.show.forEach((itemSql) => {
|
|
|
|
it(itemSql, () => {
|
2024-03-27 10:33:25 +08:00
|
|
|
expect(spark.validate(itemSql).length).toBe(0);
|
2023-10-09 09:49:22 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|