bb0fad1dbe
* refactor: rename flinksql to flink * refactor: rename pgsql to postgresql * refactor: rename trinosql to trino * refactor: replace all default exports with named export * refactor: rename basicParser to basicSQL * refactor: rename basic-parser-types to types * refactor: replace arrow func with plain func
51 lines
1.4 KiB
TypeScript
51 lines
1.4 KiB
TypeScript
import { ImpalaSQL } from 'src/parser/impala';
|
|
import { readSQL } from 'test/helper';
|
|
|
|
const impala = new ImpalaSQL();
|
|
|
|
const features = {
|
|
dbs: readSQL(__dirname, 'create_db.sql'),
|
|
functions: readSQL(__dirname, 'create_function.sql'),
|
|
roles: readSQL(__dirname, 'create_role.sql'),
|
|
tables: readSQL(__dirname, 'create_table.sql'),
|
|
views: readSQL(__dirname, 'create_view.sql'),
|
|
};
|
|
|
|
describe('ImpalaSQL Create Syntax Tests', () => {
|
|
describe('CREATE DB', () => {
|
|
features.dbs.forEach((db) => {
|
|
it(db, () => {
|
|
expect(impala.validate(db).length).toBe(0);
|
|
});
|
|
});
|
|
});
|
|
describe('CREATE FUNCTION', () => {
|
|
features.functions.forEach((db) => {
|
|
it(db, () => {
|
|
expect(impala.validate(db).length).toBe(0);
|
|
});
|
|
});
|
|
});
|
|
describe('CREATE ROLE', () => {
|
|
features.roles.forEach((db) => {
|
|
it(db, () => {
|
|
expect(impala.validate(db).length).toBe(0);
|
|
});
|
|
});
|
|
});
|
|
describe('CREATE TABLE', () => {
|
|
features.tables.forEach((db) => {
|
|
it(db, () => {
|
|
expect(impala.validate(db).length).toBe(0);
|
|
});
|
|
});
|
|
});
|
|
describe('CREATE VIEW', () => {
|
|
features.views.forEach((db) => {
|
|
it(db, () => {
|
|
expect(impala.validate(db).length).toBe(0);
|
|
});
|
|
});
|
|
});
|
|
});
|