2024-03-27 10:33:25 +08:00
|
|
|
import { ImpalaSQL } from 'src/parser/impala';
|
2024-01-19 21:10:00 +08:00
|
|
|
import { ImpalaSqlParserVisitor } from 'src/lib/impala/ImpalaSqlParserVisitor';
|
2023-11-28 21:11:07 +08:00
|
|
|
|
|
|
|
describe('impala SQL Visitor Tests', () => {
|
|
|
|
const expectTableName = 'user1';
|
|
|
|
const sql = `select id,name,sex from ${expectTableName};`;
|
2024-03-27 10:33:25 +08:00
|
|
|
const impala = new ImpalaSQL();
|
2023-11-28 21:11:07 +08:00
|
|
|
|
2024-03-27 10:33:25 +08:00
|
|
|
const parseTree = impala.parse(sql, (error) => {
|
2024-02-26 20:25:09 +08:00
|
|
|
console.error('Parse error:', error);
|
2023-11-28 21:11:07 +08:00
|
|
|
});
|
|
|
|
|
2023-11-30 19:56:07 +08:00
|
|
|
test('Visitor visitTableNamePath', () => {
|
2024-03-27 19:04:16 +08:00
|
|
|
class MyVisitor extends ImpalaSqlParserVisitor<string> {
|
|
|
|
defaultResult(): string {
|
|
|
|
return '';
|
2023-11-28 21:11:07 +08:00
|
|
|
}
|
2024-03-27 19:04:16 +08:00
|
|
|
aggregateResult(aggregate: string, nextResult: string): string {
|
|
|
|
return aggregate + nextResult;
|
|
|
|
}
|
|
|
|
visitProgram = (ctx) => {
|
|
|
|
return this.visitChildren(ctx);
|
|
|
|
};
|
|
|
|
visitTableNamePath = (ctx) => {
|
|
|
|
return ctx.getText().toLowerCase();
|
2023-11-28 21:11:07 +08:00
|
|
|
};
|
|
|
|
}
|
2024-03-27 19:04:16 +08:00
|
|
|
const visitor = new MyVisitor();
|
|
|
|
const result = visitor.visit(parseTree);
|
2023-11-28 21:11:07 +08:00
|
|
|
|
|
|
|
expect(result).toBe(expectTableName);
|
|
|
|
});
|
|
|
|
});
|