17 lines
457 B
TypeScript
17 lines
457 B
TypeScript
|
import { TrinoSQL } from '../../filters';
|
||
|
|
||
|
const randomText = `dhsdansdnkla ndjnsla ndnalks`;
|
||
|
const unCompleteSQL = `CREATE TABLE`;
|
||
|
|
||
|
describe('Trino SQL validate invalid sql', () => {
|
||
|
const parser = new TrinoSQL();
|
||
|
|
||
|
test('validate random text', () => {
|
||
|
expect(parser.validate(randomText).length).not.toBe(0);
|
||
|
});
|
||
|
|
||
|
test('validate unComplete sql', () => {
|
||
|
expect(parser.validate(unCompleteSQL).length).not.toBe(0);
|
||
|
});
|
||
|
});
|