7de192d486
* ci: add dependencies about lint tool * ci: replace eslint with prettier * ci: add husky, cz and commitlint * style: lint fix via prettier * ci: add prettier and check-types to github workflow '
34 lines
1011 B
TypeScript
34 lines
1011 B
TypeScript
import TrinoSQL from '../../../../src/parser/trinosql';
|
|
import { readSQL } from '../../../helper';
|
|
|
|
const features = {
|
|
table: readSQL(__dirname, 'alter_table.sql'),
|
|
view: readSQL(__dirname, 'alter_view.sql'),
|
|
schema: readSQL(__dirname, 'alter_schema.sql'),
|
|
materializedView: readSQL(__dirname, 'alter_materialized_view.sql'),
|
|
};
|
|
|
|
describe('TrinoSQL Alter Statements Syntax Tests', () => {
|
|
const parser = new TrinoSQL();
|
|
features.table.forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(parser.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
features.view.forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(parser.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
features.schema.forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(parser.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
features.materializedView.forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(parser.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
});
|