lava-oushudb-dt-sql-parser/test/parser/spark/lexer.test.ts

18 lines
545 B
TypeScript
Raw Normal View History

2023-05-04 10:13:05 +08:00
import SparkSQL from '../../../src/parser/spark';
2020-11-05 20:37:07 +08:00
2020-10-28 21:34:13 +08:00
describe('SparkSQL Lexer tests', () => {
const parser = new SparkSQL();
2020-10-28 21:34:13 +08:00
2020-11-05 20:37:07 +08:00
test('select id,name from user1;', () => {
const sql = `select id,name from user1;`;
const tokens = parser.getAllTokens(sql);
expect(tokens.length).toBe(10);
2020-11-05 20:37:07 +08:00
});
2020-10-28 21:34:13 +08:00
2020-11-05 20:37:07 +08:00
test('SELECT * FROM t WHERE x = 1 AND y = 2;', () => {
const sql = `SELECT * FROM t WHERE x = 1 AND y = 2;`;
const tokens = parser.getAllTokens(sql);
expect(tokens.length).toBe(24);
2020-10-28 21:34:13 +08:00
});
});