2023-10-09 09:49:22 +08:00
|
|
|
import SparkSQL from '../../../../src/parser/spark';
|
|
|
|
import { readSQL } from '../../../helper';
|
|
|
|
|
|
|
|
const parser = new SparkSQL();
|
|
|
|
|
|
|
|
const features = {
|
|
|
|
cache: readSQL(__dirname, 'cache.sql'),
|
|
|
|
};
|
|
|
|
|
2023-10-18 10:53:43 +08:00
|
|
|
describe('Spark Cache Syntax Tests', () => {
|
2023-10-09 09:49:22 +08:00
|
|
|
features.cache.forEach((itemSql) => {
|
|
|
|
it(itemSql, () => {
|
|
|
|
expect(parser.validate(itemSql).length).toBe(0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|