Update tests

This commit is contained in:
Andrey Popp 2019-01-21 17:39:43 +03:00
parent 2e85eed756
commit e960e54eca
4 changed files with 10 additions and 10 deletions

View File

@ -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

View File

@ -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)

View File

@ -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},
\ }], \ }],
\ ], \ ],

View File

@ -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