bb0fad1dbe
* refactor: rename flinksql to flink * refactor: rename pgsql to postgresql * refactor: rename trinosql to trino * refactor: replace all default exports with named export * refactor: rename basicParser to basicSQL * refactor: rename basic-parser-types to types * refactor: replace arrow func with plain func
71 lines
1.8 KiB
TypeScript
71 lines
1.8 KiB
TypeScript
import fs from 'fs';
|
|
import path from 'path';
|
|
import { FlinkSQL } from 'src/parser/flink';
|
|
import { CaretPosition } from 'src/parser/common/types';
|
|
import { commentOtherLine } from 'test/helper';
|
|
|
|
const tokenSql = fs.readFileSync(path.join(__dirname, 'fixtures', 'tokenSuggestion.sql'), 'utf-8');
|
|
|
|
describe('Flink SQL Token Suggestion', () => {
|
|
const flink = new FlinkSQL();
|
|
|
|
test('Use Statement ', () => {
|
|
const pos: CaretPosition = {
|
|
lineNumber: 3,
|
|
column: 5,
|
|
};
|
|
const suggestion = flink.getSuggestionAtCaretPosition(
|
|
commentOtherLine(tokenSql, pos.lineNumber),
|
|
pos
|
|
)?.keywords;
|
|
|
|
expect(suggestion).toMatchUnorderedArrary(['MODULES', 'CATALOG']);
|
|
});
|
|
|
|
test('Create Statement ', () => {
|
|
const pos: CaretPosition = {
|
|
lineNumber: 5,
|
|
column: 8,
|
|
};
|
|
const suggestion = flink.getSuggestionAtCaretPosition(
|
|
commentOtherLine(tokenSql, pos.lineNumber),
|
|
pos
|
|
)?.keywords;
|
|
|
|
expect(suggestion).toMatchUnorderedArrary([
|
|
'CATALOG',
|
|
'FUNCTION',
|
|
'TEMPORARY',
|
|
'VIEW',
|
|
'DATABASE',
|
|
'TABLE',
|
|
]);
|
|
});
|
|
|
|
test('Show Statement ', () => {
|
|
const pos: CaretPosition = {
|
|
lineNumber: 7,
|
|
column: 6,
|
|
};
|
|
const suggestion = flink.getSuggestionAtCaretPosition(
|
|
commentOtherLine(tokenSql, pos.lineNumber),
|
|
pos
|
|
)?.keywords;
|
|
|
|
expect(suggestion).toMatchUnorderedArrary([
|
|
'MODULES',
|
|
'FULL',
|
|
'FUNCTIONS',
|
|
'USER',
|
|
'CREATE',
|
|
'COLUMNS',
|
|
'TABLES',
|
|
'CURRENT',
|
|
'CATALOGS',
|
|
'DATABASES',
|
|
'VIEWS',
|
|
'JARS',
|
|
]);
|
|
});
|
|
});
|