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
201 lines
5.0 KiB
TypeScript
201 lines
5.0 KiB
TypeScript
import fs from 'fs';
|
|
import path from 'path';
|
|
import { SparkSQL } from 'src/parser/spark';
|
|
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('Spark SQL Token Suggestion', () => {
|
|
const spark = new SparkSQL();
|
|
|
|
test('After ALTER', () => {
|
|
const pos: CaretPosition = {
|
|
lineNumber: 1,
|
|
column: 7,
|
|
};
|
|
const suggestion = spark.getSuggestionAtCaretPosition(
|
|
commentOtherLine(tokenSql, pos.lineNumber),
|
|
pos
|
|
)?.keywords;
|
|
|
|
expect(suggestion).toMatchUnorderedArrary([
|
|
'TABLE',
|
|
'INDEX',
|
|
'VIEW',
|
|
'MATERIALIZED',
|
|
'DATABASE',
|
|
'NAMESPACE',
|
|
'SCHEMA',
|
|
]);
|
|
});
|
|
|
|
test('After CREATE', () => {
|
|
const pos: CaretPosition = {
|
|
lineNumber: 3,
|
|
column: 8,
|
|
};
|
|
const suggestion = spark.getSuggestionAtCaretPosition(
|
|
commentOtherLine(tokenSql, pos.lineNumber),
|
|
pos
|
|
)?.keywords;
|
|
|
|
expect(suggestion).toMatchUnorderedArrary([
|
|
'TEMPORARY',
|
|
'INDEX',
|
|
'ROLE',
|
|
'MATERIALIZED',
|
|
'FUNCTION',
|
|
'OR',
|
|
'GLOBAL',
|
|
'VIEW',
|
|
'TABLE',
|
|
'EXTERNAL',
|
|
'DATABASE',
|
|
'NAMESPACE',
|
|
'SCHEMA',
|
|
]);
|
|
});
|
|
|
|
test('After DELETE', () => {
|
|
const pos: CaretPosition = {
|
|
lineNumber: 5,
|
|
column: 8,
|
|
};
|
|
const suggestion = spark.getSuggestionAtCaretPosition(
|
|
commentOtherLine(tokenSql, pos.lineNumber),
|
|
pos
|
|
)?.keywords;
|
|
|
|
expect(suggestion).toMatchUnorderedArrary(['FROM']);
|
|
});
|
|
|
|
test('After DESCRIBE', () => {
|
|
const pos: CaretPosition = {
|
|
lineNumber: 7,
|
|
column: 10,
|
|
};
|
|
const suggestion = spark.getSuggestionAtCaretPosition(
|
|
commentOtherLine(tokenSql, pos.lineNumber),
|
|
pos
|
|
)?.keywords;
|
|
|
|
expect(suggestion).toMatchUnorderedArrary([
|
|
'WITH',
|
|
'SELECT',
|
|
'MAP',
|
|
'REDUCE',
|
|
'FROM',
|
|
'TABLE',
|
|
'VALUES',
|
|
'QUERY',
|
|
'EXTENDED',
|
|
'FORMATTED',
|
|
'DATABASE',
|
|
'FUNCTION',
|
|
]);
|
|
});
|
|
|
|
test('After DROP', () => {
|
|
const pos: CaretPosition = {
|
|
lineNumber: 9,
|
|
column: 6,
|
|
};
|
|
const suggestion = spark.getSuggestionAtCaretPosition(
|
|
commentOtherLine(tokenSql, pos.lineNumber),
|
|
pos
|
|
)?.keywords;
|
|
|
|
expect(suggestion).toMatchUnorderedArrary([
|
|
'TEMPORARY',
|
|
'INDEX',
|
|
'ROLE',
|
|
'FUNCTION',
|
|
'MATERIALIZED',
|
|
'VIEW',
|
|
'TABLE',
|
|
'DATABASE',
|
|
'NAMESPACE',
|
|
'SCHEMA',
|
|
]);
|
|
});
|
|
|
|
test('After INSERT', () => {
|
|
const pos: CaretPosition = {
|
|
lineNumber: 11,
|
|
column: 8,
|
|
};
|
|
const suggestion = spark.getSuggestionAtCaretPosition(
|
|
commentOtherLine(tokenSql, pos.lineNumber),
|
|
pos
|
|
)?.keywords;
|
|
|
|
expect(suggestion).toMatchUnorderedArrary(['OVERWRITE', 'INTO']);
|
|
});
|
|
|
|
test('After LOAD', () => {
|
|
const pos: CaretPosition = {
|
|
lineNumber: 13,
|
|
column: 6,
|
|
};
|
|
const suggestion = spark.getSuggestionAtCaretPosition(
|
|
commentOtherLine(tokenSql, pos.lineNumber),
|
|
pos
|
|
)?.keywords;
|
|
|
|
expect(suggestion).toMatchUnorderedArrary(['DATA']);
|
|
});
|
|
|
|
test('After SHOW', () => {
|
|
const pos: CaretPosition = {
|
|
lineNumber: 15,
|
|
column: 6,
|
|
};
|
|
const suggestion = spark.getSuggestionAtCaretPosition(
|
|
commentOtherLine(tokenSql, pos.lineNumber),
|
|
pos
|
|
)?.keywords;
|
|
|
|
expect(suggestion).toMatchUnorderedArrary([
|
|
'LOCKS',
|
|
'INDEXES',
|
|
'TRANSACTIONS',
|
|
'CREATE',
|
|
'COMPACTIONS',
|
|
'CURRENT',
|
|
'ROLES',
|
|
'PRINCIPALS',
|
|
'ROLE',
|
|
'GRANT',
|
|
'MATERIALIZED',
|
|
'CATALOGS',
|
|
'FUNCTIONS',
|
|
'ALL',
|
|
'SYSTEM',
|
|
'USER',
|
|
'PARTITIONS',
|
|
'VIEWS',
|
|
'COLUMNS',
|
|
'TBLPROPERTIES',
|
|
'TABLE',
|
|
'TABLES',
|
|
'DATABASES',
|
|
'NAMESPACES',
|
|
'SCHEMAS',
|
|
]);
|
|
});
|
|
|
|
test('After EXPORT', () => {
|
|
const pos: CaretPosition = {
|
|
lineNumber: 17,
|
|
column: 8,
|
|
};
|
|
const suggestion = spark.getSuggestionAtCaretPosition(
|
|
commentOtherLine(tokenSql, pos.lineNumber),
|
|
pos
|
|
)?.keywords;
|
|
|
|
expect(suggestion).toMatchUnorderedArrary(['TABLE']);
|
|
});
|
|
});
|