* 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 '
		
			
				
	
	
		
			33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { AbstractParseTreeVisitor } from 'antlr4ts/tree/AbstractParseTreeVisitor';
 | 
						|
import { HiveSqlParserVisitor } from '../../../src/lib/hive/HiveSqlParserVisitor';
 | 
						|
import HiveSQL from '../../../src/parser/hive';
 | 
						|
import { ProgramContext } from '../../../src/lib/hive/HiveSqlParser';
 | 
						|
 | 
						|
describe('HiveSQL Visitor Tests', () => {
 | 
						|
    const expectTableName = 'dm_gis.dlv_addr_tc_count';
 | 
						|
    const sql = `select citycode,tc,inc_day from ${expectTableName} where inc_day='20190501' limit 100;`;
 | 
						|
    const parser = new HiveSQL();
 | 
						|
 | 
						|
    const parserTree = parser.parse(sql, (error) => {
 | 
						|
        console.log('Parse error:', error);
 | 
						|
    });
 | 
						|
 | 
						|
    test('Visitor visitTableName', () => {
 | 
						|
        let result = '';
 | 
						|
        class MyVisitor extends AbstractParseTreeVisitor<any> implements HiveSqlParserVisitor<any> {
 | 
						|
            defaultResult() {
 | 
						|
                return result;
 | 
						|
            }
 | 
						|
 | 
						|
            visitTableName(ctx) {
 | 
						|
                result = ctx.text.toLowerCase();
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        const visitor = new MyVisitor();
 | 
						|
        visitor.visit(parserTree as ProgramContext);
 | 
						|
 | 
						|
        expect(result).toBe(expectTableName);
 | 
						|
    });
 | 
						|
});
 |