2023-11-28 21:17:18 +08:00
|
|
|
import fs from 'fs';
|
|
|
|
import path from 'path';
|
2024-01-19 21:10:00 +08:00
|
|
|
import MySQL from 'src/parser/mysql';
|
|
|
|
import { SyntaxContextType, CaretPosition } from 'src/parser/common/basic-parser-types';
|
|
|
|
import { commentOtherLine } from 'test/helper';
|
2023-11-28 21:17:18 +08:00
|
|
|
|
|
|
|
const syntaxSql = fs.readFileSync(
|
|
|
|
path.join(__dirname, 'fixtures', 'syntaxSuggestion.sql'),
|
|
|
|
'utf-8'
|
|
|
|
);
|
|
|
|
|
|
|
|
describe('MySQL Syntax Suggestion', () => {
|
|
|
|
const parser = new MySQL();
|
|
|
|
|
|
|
|
test('Validate Syntax SQL', () => {
|
|
|
|
expect(parser.validate(syntaxSql).length).not.toBe(0);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Insert table ', () => {
|
|
|
|
const pos: CaretPosition = {
|
|
|
|
lineNumber: 1,
|
|
|
|
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('Select 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', '.']);
|
|
|
|
});
|
|
|
|
|
2023-12-13 11:33:47 +08:00
|
|
|
test('Create table ', () => {
|
|
|
|
const pos: CaretPosition = {
|
|
|
|
lineNumber: 5,
|
|
|
|
column: 17,
|
|
|
|
};
|
|
|
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
|
|
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
|
|
|
pos
|
|
|
|
)?.syntax;
|
|
|
|
const suggestion = syntaxes?.find(
|
|
|
|
(syn) => syn.syntaxContextType === SyntaxContextType.TABLE_CREATE
|
|
|
|
);
|
2023-11-28 21:17:18 +08:00
|
|
|
|
2023-12-13 11:33:47 +08:00
|
|
|
expect(suggestion).not.toBeUndefined();
|
|
|
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['db', '.']);
|
|
|
|
});
|
2023-11-28 21:17:18 +08:00
|
|
|
|
|
|
|
test('DROP table ', () => {
|
|
|
|
const pos: CaretPosition = {
|
|
|
|
lineNumber: 7,
|
|
|
|
column: 26,
|
|
|
|
};
|
|
|
|
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', '.', 'a']);
|
|
|
|
});
|
|
|
|
|
|
|
|
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: 11,
|
|
|
|
column: 15,
|
|
|
|
};
|
|
|
|
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: 13,
|
|
|
|
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('Use function', () => {
|
|
|
|
const pos: CaretPosition = {
|
|
|
|
lineNumber: 15,
|
|
|
|
column: 27,
|
|
|
|
};
|
|
|
|
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(['calculate_age']);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Create database', () => {
|
|
|
|
const pos: CaretPosition = {
|
|
|
|
lineNumber: 17,
|
|
|
|
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: 19,
|
|
|
|
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('Analyze table on column', () => {
|
|
|
|
const pos: CaretPosition = {
|
|
|
|
lineNumber: 21,
|
|
|
|
column: 39,
|
|
|
|
};
|
|
|
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
|
|
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
|
|
|
pos
|
|
|
|
)?.syntax;
|
|
|
|
const suggestion = syntaxes?.find(
|
|
|
|
(syn) => syn.syntaxContextType === SyntaxContextType.COLUMN
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(suggestion).not.toBeUndefined();
|
|
|
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['c1']);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Select columnName', () => {
|
|
|
|
const pos: CaretPosition = {
|
|
|
|
lineNumber: 23,
|
|
|
|
column: 17,
|
|
|
|
};
|
|
|
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
|
|
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
|
|
|
pos
|
|
|
|
)?.syntax;
|
|
|
|
const suggestion = syntaxes?.find(
|
|
|
|
(syn) => syn.syntaxContextType === SyntaxContextType.COLUMN
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(suggestion).not.toBeUndefined();
|
|
|
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['age']);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Alter table rename columns', () => {
|
|
|
|
const pos: CaretPosition = {
|
|
|
|
lineNumber: 25,
|
|
|
|
column: 39,
|
|
|
|
};
|
|
|
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
|
|
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
|
|
|
pos
|
|
|
|
)?.syntax;
|
|
|
|
const suggestion = syntaxes?.find(
|
|
|
|
(syn) => syn.syntaxContextType === SyntaxContextType.COLUMN
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(suggestion).not.toBeUndefined();
|
|
|
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Alter table rename columns to', () => {
|
|
|
|
const pos: CaretPosition = {
|
|
|
|
lineNumber: 27,
|
|
|
|
column: 48,
|
|
|
|
};
|
|
|
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
|
|
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
|
|
|
pos
|
|
|
|
)?.syntax;
|
|
|
|
const suggestion = syntaxes?.find(
|
|
|
|
(syn) => syn.syntaxContextType === SyntaxContextType.COLUMN_CREATE
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(suggestion).not.toBeUndefined();
|
|
|
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['t']);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Alter table add column', () => {
|
|
|
|
const pos: CaretPosition = {
|
|
|
|
lineNumber: 29,
|
|
|
|
column: 22,
|
|
|
|
};
|
|
|
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
|
|
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
|
|
|
pos
|
|
|
|
)?.syntax;
|
|
|
|
const suggestion = syntaxes?.find(
|
|
|
|
(syn) => syn.syntaxContextType === SyntaxContextType.COLUMN
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(suggestion).not.toBeUndefined();
|
|
|
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['c2']);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Alter table change columns', () => {
|
|
|
|
const pos: CaretPosition = {
|
|
|
|
lineNumber: 31,
|
|
|
|
column: 41,
|
|
|
|
};
|
|
|
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
|
|
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
|
|
|
pos
|
|
|
|
)?.syntax;
|
|
|
|
const suggestion = syntaxes?.find(
|
|
|
|
(syn) => syn.syntaxContextType === SyntaxContextType.COLUMN
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(suggestion).not.toBeUndefined();
|
|
|
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['FirstName']);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Insert into table spec columns', () => {
|
|
|
|
const pos: CaretPosition = {
|
|
|
|
lineNumber: 33,
|
|
|
|
column: 24,
|
|
|
|
};
|
|
|
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
|
|
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
|
|
|
pos
|
|
|
|
)?.syntax;
|
|
|
|
const suggestion = syntaxes?.find(
|
|
|
|
(syn) => syn.syntaxContextType === SyntaxContextType.COLUMN
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(suggestion).not.toBeUndefined();
|
|
|
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Insert into table spec columns2', () => {
|
|
|
|
const pos: CaretPosition = {
|
|
|
|
lineNumber: 35,
|
|
|
|
column: 29,
|
|
|
|
};
|
|
|
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
|
|
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
|
|
|
pos
|
|
|
|
)?.syntax;
|
|
|
|
const suggestion = syntaxes?.find(
|
|
|
|
(syn) => syn.syntaxContextType === SyntaxContextType.COLUMN
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(suggestion).not.toBeUndefined();
|
|
|
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['n']);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Select columns case empty', () => {
|
|
|
|
const pos: CaretPosition = {
|
|
|
|
lineNumber: 37,
|
|
|
|
column: 8,
|
|
|
|
};
|
|
|
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
|
|
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
|
|
|
pos
|
|
|
|
)?.syntax;
|
|
|
|
const suggestion = syntaxes?.find(
|
|
|
|
(syn) => syn.syntaxContextType === SyntaxContextType.COLUMN
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(suggestion).not.toBeUndefined();
|
|
|
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Select columns case seq', () => {
|
|
|
|
const pos: CaretPosition = {
|
|
|
|
lineNumber: 39,
|
|
|
|
column: 13,
|
|
|
|
};
|
|
|
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
|
|
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
|
|
|
pos
|
|
|
|
)?.syntax;
|
|
|
|
const suggestion = syntaxes?.find(
|
|
|
|
(syn) => syn.syntaxContextType === SyntaxContextType.COLUMN
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(suggestion).not.toBeUndefined();
|
|
|
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['n']);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Select columns from table case empty', () => {
|
|
|
|
const pos: CaretPosition = {
|
|
|
|
lineNumber: 41,
|
|
|
|
column: 8,
|
|
|
|
};
|
|
|
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
|
|
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
|
|
|
pos
|
|
|
|
)?.syntax;
|
|
|
|
const suggestion = syntaxes?.find(
|
|
|
|
(syn) => syn.syntaxContextType === SyntaxContextType.COLUMN
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(suggestion).not.toBeUndefined();
|
|
|
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Select columns from table case seq', () => {
|
|
|
|
const pos: CaretPosition = {
|
|
|
|
lineNumber: 43,
|
|
|
|
column: 13,
|
|
|
|
};
|
|
|
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
|
|
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
|
|
|
pos
|
|
|
|
)?.syntax;
|
|
|
|
const suggestion = syntaxes?.find(
|
|
|
|
(syn) => syn.syntaxContextType === SyntaxContextType.COLUMN
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(suggestion).not.toBeUndefined();
|
|
|
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['n']);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Select group by', () => {
|
|
|
|
const pos: CaretPosition = {
|
|
|
|
lineNumber: 45,
|
|
|
|
column: 32,
|
|
|
|
};
|
|
|
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
|
|
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
|
|
|
pos
|
|
|
|
)?.syntax;
|
|
|
|
const suggestion = syntaxes?.find(
|
|
|
|
(syn) => syn.syntaxContextType === SyntaxContextType.COLUMN
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(suggestion).not.toBeUndefined();
|
|
|
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Select group by', () => {
|
|
|
|
const pos: CaretPosition = {
|
|
|
|
lineNumber: 47,
|
|
|
|
column: 39,
|
|
|
|
};
|
|
|
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
|
|
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
|
|
|
pos
|
|
|
|
)?.syntax;
|
|
|
|
const suggestion = syntaxes?.find(
|
|
|
|
(syn) => syn.syntaxContextType === SyntaxContextType.COLUMN
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(suggestion).not.toBeUndefined();
|
|
|
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['i']);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Select group by rollup', () => {
|
|
|
|
const pos: CaretPosition = {
|
|
|
|
lineNumber: 49,
|
|
|
|
column: 37,
|
|
|
|
};
|
|
|
|
const syntaxes = parser.getSuggestionAtCaretPosition(
|
|
|
|
commentOtherLine(syntaxSql, pos.lineNumber),
|
|
|
|
pos
|
|
|
|
)?.syntax;
|
|
|
|
const suggestion = syntaxes?.find(
|
|
|
|
(syn) => syn.syntaxContextType === SyntaxContextType.COLUMN
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(suggestion).not.toBeUndefined();
|
|
|
|
expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]);
|
|
|
|
});
|
|
|
|
});
|