2021-01-05 17:49:34 +08:00
|
|
|
import { PLSQL } from '../../../src';
|
2020-09-11 17:39:10 +08:00
|
|
|
|
|
|
|
describe('PLSQL Syntax Tests', () => {
|
2021-01-05 17:49:34 +08:00
|
|
|
const parser = new PLSQL();
|
2020-09-11 17:39:10 +08:00
|
|
|
|
|
|
|
test('Test simple select Statement', () => {
|
|
|
|
const sql = 'select id,name from user1;';
|
|
|
|
const result = parser.validate(sql);
|
|
|
|
|
|
|
|
expect(result.length).toBe(0);
|
|
|
|
});
|
|
|
|
|
|
|
|
test(`Test select, where, order by`, () => {
|
|
|
|
const sql = `
|
|
|
|
select eid, emp_last, mgr_id, reportlevel
|
|
|
|
from reports_to_101 r, auto a
|
|
|
|
where r.c1 = a.c2
|
|
|
|
order by reportlevel, eid
|
|
|
|
`;
|
|
|
|
const result = parser.validate(sql);
|
|
|
|
expect(result.length).toBe(0);
|
|
|
|
});
|
|
|
|
});
|