ale/test/sign/test_linting_sets_signs.vader

54 lines
1.2 KiB
Plaintext
Raw Normal View History

2017-03-09 22:45:22 +00:00
Given foobar (Some imaginary filetype):
2016-10-23 21:41:00 +00:00
var y = 3+3;
var y = 3
Before:
sign unplace *
2017-03-09 22:45:22 +00:00
function! TestCallback(buffer, output)
return [
\ {'lnum': 1, 'text': 'foo', 'type': 'W'},
\ {'lnum': 2, 'text': 'foo', 'type': 'E'},
\]
endfunction
function! CollectSigns()
2016-10-23 21:41:00 +00:00
redir => l:output
silent exec 'sign place'
redir END
2017-03-09 22:45:22 +00:00
let l:actual_sign_list = []
2016-10-23 21:41:00 +00:00
for l:line in split(l:output, "\n")
let l:match = matchlist(l:line, '\v^.*\=(\d+).*\=\d+.*\=(ALE[a-zA-Z]+Sign)')
2016-10-23 21:41:00 +00:00
if len(l:match) > 0
2017-03-09 22:45:22 +00:00
call add(l:actual_sign_list, [l:match[1], l:match[2]])
2016-10-23 21:41:00 +00:00
endif
endfor
2017-03-09 22:45:22 +00:00
return l:actual_sign_list
2016-10-23 21:41:00 +00:00
endfunction
2017-03-09 22:45:22 +00:00
call ale#linter#Define('foobar', {
\ 'name': 'testlinter',
\ 'callback': 'TestCallback',
2017-09-09 17:03:34 +00:00
\ 'executable': has('win32') ? 'cmd' : 'echo',
\ 'command': has('win32') ? 'echo foo bar' : '/bin/sh -c ''echo foo bar''',
2017-03-09 22:45:22 +00:00
\})
2016-10-23 21:41:00 +00:00
After:
2017-03-09 22:45:22 +00:00
delfunction TestCallback
delfunction CollectSigns
2016-10-23 21:41:00 +00:00
sign unplace *
let g:ale_buffer_info = {}
call ale#linter#Reset()
2016-10-23 21:41:00 +00:00
Execute(The signs should be updated after linting is done):
call ale#Lint()
call ale#engine#WaitForJobs(2000)
2017-03-09 22:45:22 +00:00
AssertEqual [['1', 'ALEWarningSign'], ['2', 'ALEErrorSign']], CollectSigns()