mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-06 20:54:26 +08:00
Update tests
This commit is contained in:
@@ -215,7 +215,7 @@ Execute(The right message should be sent for the initial LSP request):
|
|||||||
\ }],
|
\ }],
|
||||||
\ [0, 'textDocument/completion', {
|
\ [0, 'textDocument/completion', {
|
||||||
\ 'textDocument': {'uri': ale#path#ToURI(expand('%:p'))},
|
\ 'textDocument': {'uri': ale#path#ToURI(expand('%:p'))},
|
||||||
\ 'position': {'line': 0, 'character': 3},
|
\ 'position': {'line': 0, 'character': 2},
|
||||||
\ }],
|
\ }],
|
||||||
\ ],
|
\ ],
|
||||||
\ g:message_list
|
\ g:message_list
|
||||||
@@ -274,7 +274,7 @@ Execute(Two completion requests shouldn't be sent in a row):
|
|||||||
\ }],
|
\ }],
|
||||||
\ [0, 'textDocument/completion', {
|
\ [0, 'textDocument/completion', {
|
||||||
\ 'textDocument': {'uri': ale#path#ToURI(expand('%:p'))},
|
\ 'textDocument': {'uri': ale#path#ToURI(expand('%:p'))},
|
||||||
\ 'position': {'line': 0, 'character': 3},
|
\ 'position': {'line': 0, 'character': 2},
|
||||||
\ }],
|
\ }],
|
||||||
\ ],
|
\ ],
|
||||||
\ g:message_list
|
\ g:message_list
|
||||||
|
|||||||
@@ -112,7 +112,7 @@ Execute(ale#lsp#message#Completion() should return correct messages):
|
|||||||
\ 'textDocument': {
|
\ 'textDocument': {
|
||||||
\ 'uri': ale#path#ToURI(g:dir . '/foo/bar.ts'),
|
\ 'uri': ale#path#ToURI(g:dir . '/foo/bar.ts'),
|
||||||
\ },
|
\ },
|
||||||
\ 'position': {'line': 11, 'character': 34},
|
\ 'position': {'line': 11, 'character': 33},
|
||||||
\ }
|
\ }
|
||||||
\ ],
|
\ ],
|
||||||
\ ale#lsp#message#Completion(bufnr(''), 12, 34, '')
|
\ ale#lsp#message#Completion(bufnr(''), 12, 34, '')
|
||||||
@@ -126,7 +126,7 @@ Execute(ale#lsp#message#Completion() should return correct messages with a trigg
|
|||||||
\ 'textDocument': {
|
\ 'textDocument': {
|
||||||
\ 'uri': ale#path#ToURI(g:dir . '/foo/bar.ts'),
|
\ 'uri': ale#path#ToURI(g:dir . '/foo/bar.ts'),
|
||||||
\ },
|
\ },
|
||||||
\ 'position': {'line': 11, 'character': 34},
|
\ 'position': {'line': 11, 'character': 33},
|
||||||
\ 'context': {'triggerKind': 2, 'triggerCharacter': '.'},
|
\ 'context': {'triggerKind': 2, 'triggerCharacter': '.'},
|
||||||
\ }
|
\ }
|
||||||
\ ],
|
\ ],
|
||||||
@@ -141,7 +141,7 @@ Execute(ale#lsp#message#Definition() should return correct messages):
|
|||||||
\ 'textDocument': {
|
\ 'textDocument': {
|
||||||
\ 'uri': ale#path#ToURI(g:dir . '/foo/bar.ts'),
|
\ 'uri': ale#path#ToURI(g:dir . '/foo/bar.ts'),
|
||||||
\ },
|
\ },
|
||||||
\ 'position': {'line': 11, 'character': 34},
|
\ 'position': {'line': 11, 'character': 33},
|
||||||
\ }
|
\ }
|
||||||
\ ],
|
\ ],
|
||||||
\ ale#lsp#message#Definition(bufnr(''), 12, 34)
|
\ ale#lsp#message#Definition(bufnr(''), 12, 34)
|
||||||
@@ -155,7 +155,7 @@ Execute(ale#lsp#message#References() should return correct messages):
|
|||||||
\ 'textDocument': {
|
\ 'textDocument': {
|
||||||
\ 'uri': ale#path#ToURI(g:dir . '/foo/bar.ts'),
|
\ 'uri': ale#path#ToURI(g:dir . '/foo/bar.ts'),
|
||||||
\ },
|
\ },
|
||||||
\ 'position': {'line': 11, 'character': 34},
|
\ 'position': {'line': 11, 'character': 33},
|
||||||
\ 'context': {'includeDeclaration': v:false},
|
\ 'context': {'includeDeclaration': v:false},
|
||||||
\ }
|
\ }
|
||||||
\ ],
|
\ ],
|
||||||
@@ -181,7 +181,7 @@ Execute(ale#lsp#message#Hover() should return correct messages):
|
|||||||
\ 'textDocument': {
|
\ 'textDocument': {
|
||||||
\ 'uri': ale#path#ToURI(g:dir . '/foo/bar.ts'),
|
\ 'uri': ale#path#ToURI(g:dir . '/foo/bar.ts'),
|
||||||
\ },
|
\ },
|
||||||
\ 'position': {'line': 11, 'character': 34},
|
\ 'position': {'line': 11, 'character': 33},
|
||||||
\ }
|
\ }
|
||||||
\ ],
|
\ ],
|
||||||
\ ale#lsp#message#Hover(bufnr(''), 12, 34)
|
\ ale#lsp#message#Hover(bufnr(''), 12, 34)
|
||||||
|
|||||||
@@ -270,7 +270,7 @@ Execute(LSP reference requests should be sent):
|
|||||||
\ }],
|
\ }],
|
||||||
\ [0, 'textDocument/references', {
|
\ [0, 'textDocument/references', {
|
||||||
\ 'textDocument': {'uri': ale#path#ToURI(expand('%:p'))},
|
\ 'textDocument': {'uri': ale#path#ToURI(expand('%:p'))},
|
||||||
\ 'position': {'line': 0, 'character': 3},
|
\ 'position': {'line': 0, 'character': 2},
|
||||||
\ 'context': {'includeDeclaration': v:false},
|
\ 'context': {'includeDeclaration': v:false},
|
||||||
\ }],
|
\ }],
|
||||||
\ ],
|
\ ],
|
||||||
|
|||||||
@@ -377,7 +377,7 @@ Execute(LSP completion requests should be sent):
|
|||||||
\ }],
|
\ }],
|
||||||
\ [0, 'textDocument/definition', {
|
\ [0, 'textDocument/definition', {
|
||||||
\ 'textDocument': {'uri': ale#path#ToURI(expand('%:p'))},
|
\ 'textDocument': {'uri': ale#path#ToURI(expand('%:p'))},
|
||||||
\ 'position': {'line': 0, 'character': 3},
|
\ 'position': {'line': 0, 'character': 2},
|
||||||
\ }],
|
\ }],
|
||||||
\ ],
|
\ ],
|
||||||
\ g:message_list
|
\ g:message_list
|
||||||
@@ -413,7 +413,7 @@ Execute(LSP tab completion requests should be sent):
|
|||||||
\ }],
|
\ }],
|
||||||
\ [0, 'textDocument/definition', {
|
\ [0, 'textDocument/definition', {
|
||||||
\ 'textDocument': {'uri': ale#path#ToURI(expand('%:p'))},
|
\ 'textDocument': {'uri': ale#path#ToURI(expand('%:p'))},
|
||||||
\ 'position': {'line': 0, 'character': 3},
|
\ 'position': {'line': 0, 'character': 2},
|
||||||
\ }],
|
\ }],
|
||||||
\ ],
|
\ ],
|
||||||
\ g:message_list
|
\ g:message_list
|
||||||
|
|||||||
Reference in New Issue
Block a user