2024-03-27 10:33:25 +08:00
|
|
|
import { FlinkSQL } from 'src/parser/flink';
|
|
|
|
import { FlinkSqlParserVisitor } from 'src/lib/flink/FlinkSqlParserVisitor';
|
2024-03-27 19:04:16 +08:00
|
|
|
import { ProgramContext, TableExpressionContext } from 'src/lib/flink/FlinkSqlParser';
|
2020-12-02 10:35:37 +08:00
|
|
|
|
|
|
|
describe('Flink SQL Visitor Tests', () => {
|
|
|
|
const expectTableName = 'user1';
|
|
|
|
const sql = `select id,name,sex from ${expectTableName};`;
|
2024-03-27 10:33:25 +08:00
|
|
|
const flink = new FlinkSQL();
|
2020-12-02 10:35:37 +08:00
|
|
|
|
2024-03-27 10:33:25 +08:00
|
|
|
const parseTree = flink.parse(sql, (error) => {
|
2024-02-26 20:25:09 +08:00
|
|
|
console.error('Parse error:', error);
|
2020-12-02 10:35:37 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
test('Visitor visitTableName', () => {
|
2024-03-27 19:04:16 +08:00
|
|
|
class MyVisitor extends FlinkSqlParserVisitor<string> {
|
|
|
|
defaultResult(): string {
|
|
|
|
return '';
|
2023-10-13 11:16:36 +08:00
|
|
|
}
|
2024-03-27 19:04:16 +08:00
|
|
|
aggregateResult(aggregate: string, nextResult: string): string {
|
|
|
|
return aggregate + nextResult;
|
2024-02-26 20:25:09 +08:00
|
|
|
}
|
2024-03-27 19:04:16 +08:00
|
|
|
visitProgram = (ctx: ProgramContext) => {
|
|
|
|
return this.visitChildren(ctx);
|
|
|
|
};
|
|
|
|
visitTableExpression = (ctx: TableExpressionContext) => {
|
|
|
|
return ctx.getText().toLowerCase();
|
|
|
|
};
|
2020-12-02 10:35:37 +08:00
|
|
|
}
|
2024-03-27 19:04:16 +08:00
|
|
|
const visitor = new MyVisitor();
|
|
|
|
const result = visitor.visit(parseTree);
|
2020-12-02 10:35:37 +08:00
|
|
|
|
|
|
|
expect(result).toBe(expectTableName);
|
|
|
|
});
|
|
|
|
});
|