276 lines
8.9 KiB
TypeScript
276 lines
8.9 KiB
TypeScript
|
import fs from 'fs';
|
||
|
import path from 'path';
|
||
|
import { CaretPosition, SyntaxContextType } from '../../../../src/parser/common/basic-parser-types';
|
||
|
import PgSQL from '../../../../src/parser/pgsql';
|
||
|
import { commentOtherLine } from '../../../helper';
|
||
|
|
||
|
const syntaxSql = fs.readFileSync(
|
||
|
path.join(__dirname, 'fixtures', 'syntaxSuggestion.sql'),
|
||
|
'utf-8'
|
||
|
);
|
||
|
|
||
|
describe('Postgre SQL Syntax Suggestion', () => {
|
||
|
const parser = new PgSQL();
|
||
|
|
||
|
test('Validate Syntax SQL', () => {
|
||
|
expect(parser.validate(syntaxSql).length).not.toBe(0);
|
||
|
expect(parser.validate(syntaxSql).length).not.toBe(0);
|
||
|
expect(parser.validate(syntaxSql).length).not.toBe(0);
|
||
|
});
|
||
|
|
||
|
test('Insert table ', () => {
|
||
|
const pos: CaretPosition = {
|
||
|
lineNumber: 3,
|
||
|
column: 18,
|
||
|
};
|
||
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
||
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
||
|
pos
|
||
|
)?.syntax;
|
||
|
const suggestion = syntaxes?.find(
|
||
|
(syn) => syn.syntaxContextType === SyntaxContextType.TABLE
|
||
|
);
|
||
|
|
||
|
expect(suggestion).not.toBeUndefined();
|
||
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.', 'tb']);
|
||
|
});
|
||
|
|
||
|
test('Alter table ', () => {
|
||
|
const pos: CaretPosition = {
|
||
|
lineNumber: 7,
|
||
|
column: 15,
|
||
|
};
|
||
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
||
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
||
|
pos
|
||
|
)?.syntax;
|
||
|
const suggestion = syntaxes?.find(
|
||
|
(syn) => syn.syntaxContextType === SyntaxContextType.TABLE
|
||
|
);
|
||
|
|
||
|
expect(suggestion).not.toBeUndefined();
|
||
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db']);
|
||
|
});
|
||
|
|
||
|
test('Select table ', () => {
|
||
|
const pos: CaretPosition = {
|
||
|
lineNumber: 5,
|
||
|
column: 18,
|
||
|
};
|
||
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
||
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
||
|
pos
|
||
|
)?.syntax;
|
||
|
const suggestion = syntaxes?.find(
|
||
|
(syn) => syn.syntaxContextType === SyntaxContextType.TABLE
|
||
|
);
|
||
|
|
||
|
expect(suggestion).not.toBeUndefined();
|
||
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']);
|
||
|
});
|
||
|
|
||
|
test('Create table ', () => {
|
||
|
const pos: CaretPosition = {
|
||
|
lineNumber: 1,
|
||
|
column: 17,
|
||
|
};
|
||
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
||
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
||
|
pos
|
||
|
)?.syntax;
|
||
|
const suggestion = syntaxes?.find(
|
||
|
(syn) => syn.syntaxContextType === SyntaxContextType.TABLE_CREATE
|
||
|
);
|
||
|
|
||
|
expect(suggestion).not.toBeUndefined();
|
||
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']);
|
||
|
});
|
||
|
|
||
|
test('Create view ', () => {
|
||
|
const pos: CaretPosition = {
|
||
|
lineNumber: 9,
|
||
|
column: 28,
|
||
|
};
|
||
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
||
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
||
|
pos
|
||
|
)?.syntax;
|
||
|
const suggestion = syntaxes?.find(
|
||
|
(syn) => syn.syntaxContextType === SyntaxContextType.VIEW_CREATE
|
||
|
);
|
||
|
|
||
|
expect(suggestion).not.toBeUndefined();
|
||
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.', 'v']);
|
||
|
});
|
||
|
|
||
|
test('Drop view ', () => {
|
||
|
const pos: CaretPosition = {
|
||
|
lineNumber: 13,
|
||
|
column: 14,
|
||
|
};
|
||
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
||
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
||
|
pos
|
||
|
)?.syntax;
|
||
|
const suggestion = syntaxes?.find(
|
||
|
(syn) => syn.syntaxContextType === SyntaxContextType.VIEW
|
||
|
);
|
||
|
|
||
|
expect(suggestion).not.toBeUndefined();
|
||
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']);
|
||
|
});
|
||
|
|
||
|
test('Alter view ', () => {
|
||
|
const pos: CaretPosition = {
|
||
|
lineNumber: 11,
|
||
|
column: 16,
|
||
|
};
|
||
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
||
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
||
|
pos
|
||
|
)?.syntax;
|
||
|
const suggestion = syntaxes?.find(
|
||
|
(syn) => syn.syntaxContextType === SyntaxContextType.VIEW
|
||
|
);
|
||
|
|
||
|
expect(suggestion).not.toBeUndefined();
|
||
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.', 'v']);
|
||
|
});
|
||
|
|
||
|
test('Create function ', () => {
|
||
|
const pos: CaretPosition = {
|
||
|
lineNumber: 15,
|
||
|
column: 20,
|
||
|
};
|
||
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
||
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
||
|
pos
|
||
|
)?.syntax;
|
||
|
const suggestion = syntaxes?.find(
|
||
|
(syn) => syn.syntaxContextType === SyntaxContextType.FUNCTION_CREATE
|
||
|
);
|
||
|
|
||
|
expect(suggestion).not.toBeUndefined();
|
||
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['fn1']);
|
||
|
});
|
||
|
|
||
|
test('Drop function', () => {
|
||
|
const pos: CaretPosition = {
|
||
|
lineNumber: 17,
|
||
|
column: 18,
|
||
|
};
|
||
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
||
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
||
|
pos
|
||
|
)?.syntax;
|
||
|
const suggestion = syntaxes?.find(
|
||
|
(syn) => syn.syntaxContextType === SyntaxContextType.FUNCTION
|
||
|
);
|
||
|
|
||
|
expect(suggestion).not.toBeUndefined();
|
||
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['fn1']);
|
||
|
});
|
||
|
|
||
|
test('Create database', () => {
|
||
|
const pos: CaretPosition = {
|
||
|
lineNumber: 19,
|
||
|
column: 19,
|
||
|
};
|
||
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
||
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
||
|
pos
|
||
|
)?.syntax;
|
||
|
const suggestion = syntaxes?.find(
|
||
|
(syn) => syn.syntaxContextType === SyntaxContextType.DATABASE_CREATE
|
||
|
);
|
||
|
|
||
|
expect(suggestion).not.toBeUndefined();
|
||
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db']);
|
||
|
});
|
||
|
|
||
|
test('Drop database', () => {
|
||
|
const pos: CaretPosition = {
|
||
|
lineNumber: 21,
|
||
|
column: 17,
|
||
|
};
|
||
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
||
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
||
|
pos
|
||
|
)?.syntax;
|
||
|
const suggestion = syntaxes?.find(
|
||
|
(syn) => syn.syntaxContextType === SyntaxContextType.DATABASE
|
||
|
);
|
||
|
|
||
|
expect(suggestion).not.toBeUndefined();
|
||
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db']);
|
||
|
});
|
||
|
|
||
|
test('Alter database', () => {
|
||
|
const pos: CaretPosition = {
|
||
|
lineNumber: 23,
|
||
|
column: 18,
|
||
|
};
|
||
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
||
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
||
|
pos
|
||
|
)?.syntax;
|
||
|
const suggestion = syntaxes?.find(
|
||
|
(syn) => syn.syntaxContextType === SyntaxContextType.DATABASE
|
||
|
);
|
||
|
|
||
|
expect(suggestion).not.toBeUndefined();
|
||
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db']);
|
||
|
});
|
||
|
|
||
|
test('Create schema', () => {
|
||
|
const pos: CaretPosition = {
|
||
|
lineNumber: 25,
|
||
|
column: 40,
|
||
|
};
|
||
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
||
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
||
|
pos
|
||
|
)?.syntax;
|
||
|
const suggestion = syntaxes?.find(
|
||
|
(syn) => syn.syntaxContextType === SyntaxContextType.DATABASE_CREATE
|
||
|
);
|
||
|
|
||
|
expect(suggestion).not.toBeUndefined();
|
||
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['schema_name']);
|
||
|
});
|
||
|
|
||
|
test('Drop schema', () => {
|
||
|
const pos: CaretPosition = {
|
||
|
lineNumber: 27,
|
||
|
column: 26,
|
||
|
};
|
||
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
||
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
||
|
pos
|
||
|
)?.syntax;
|
||
|
const suggestion = syntaxes?.find(
|
||
|
(syn) => syn.syntaxContextType === SyntaxContextType.DATABASE
|
||
|
);
|
||
|
|
||
|
expect(suggestion).not.toBeUndefined();
|
||
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['sch']);
|
||
|
});
|
||
|
|
||
|
test('Alter schema', () => {
|
||
|
const pos: CaretPosition = {
|
||
|
lineNumber: 29,
|
||
|
column: 18,
|
||
|
};
|
||
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
||
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
||
|
pos
|
||
|
)?.syntax;
|
||
|
const suggestion = syntaxes?.find(
|
||
|
(syn) => syn.syntaxContextType === SyntaxContextType.DATABASE
|
||
|
);
|
||
|
|
||
|
expect(suggestion).not.toBeUndefined();
|
||
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['name']);
|
||
|
});
|
||
|
});
|