ecbbee32c7
* test: remove barrier files to improve unit testing performance * chore: change check-types command
24 lines
576 B
TypeScript
24 lines
576 B
TypeScript
import SparkSQL from 'src/parser/spark';
|
|
import { readSQL } from 'test/helper';
|
|
|
|
const parser = new SparkSQL();
|
|
|
|
/**
|
|
* 关键词有多个值
|
|
* KW_NOT: 'NOT' | '!'
|
|
* KW_RLIKE: 'RLIKE' | 'REGEXP';
|
|
*/
|
|
const features = {
|
|
kwMultipleValues: readSQL(__dirname, 'kwMultipleValues.sql'),
|
|
};
|
|
|
|
describe('SparkSQL Keyword Has Multiple Values Syntax Tests', () => {
|
|
Object.keys(features).forEach((key) => {
|
|
features[key].forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(parser.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
});
|
|
});
|