2016-10-17 22:26:19 +00:00
|
|
|
Before:
|
2016-10-24 19:21:32 +00:00
|
|
|
let g:expected_data = [
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 1,
|
|
|
|
\ 'bufnr': bufnr('%'),
|
|
|
|
\ 'vcol': 0,
|
2017-05-12 08:19:36 +00:00
|
|
|
\ 'linter_name': 'testlinter',
|
2016-10-24 19:21:32 +00:00
|
|
|
\ 'nr': -1,
|
|
|
|
\ 'type': 'W',
|
|
|
|
\ 'col': 10,
|
|
|
|
\ 'text': 'Infix operators must be spaced. [Warning/space-infix-ops]',
|
2017-03-12 22:34:32 +00:00
|
|
|
\ 'sign_id': 1000001,
|
2016-10-24 19:21:32 +00:00
|
|
|
\ },
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 2,
|
|
|
|
\ 'bufnr': bufnr('%'),
|
|
|
|
\ 'vcol': 0,
|
2017-05-12 08:19:36 +00:00
|
|
|
\ 'linter_name': 'testlinter',
|
2016-10-24 19:21:32 +00:00
|
|
|
\ 'nr': -1,
|
|
|
|
\ 'type': 'E',
|
|
|
|
\ 'col': 10,
|
|
|
|
\ 'text': 'Missing semicolon. [Error/semi]',
|
2017-03-12 22:34:32 +00:00
|
|
|
\ 'sign_id': 1000002,
|
2016-10-24 19:21:32 +00:00
|
|
|
\ }
|
|
|
|
\]
|
2016-10-17 22:26:19 +00:00
|
|
|
|
2017-05-12 08:19:36 +00:00
|
|
|
function! TestCallback(buffer, output)
|
|
|
|
return [
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 1,
|
|
|
|
\ 'type': 'W',
|
|
|
|
\ 'col': 10,
|
|
|
|
\ 'text': 'Infix operators must be spaced. [Warning/space-infix-ops]',
|
|
|
|
\ },
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 2,
|
|
|
|
\ 'type': 'E',
|
|
|
|
\ 'col': 10,
|
|
|
|
\ 'text': 'Missing semicolon. [Error/semi]',
|
|
|
|
\ }
|
|
|
|
\]
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
call ale#linter#Define('foobar', {
|
|
|
|
\ 'name': 'testlinter',
|
|
|
|
\ 'callback': 'TestCallback',
|
|
|
|
\ 'executable': 'true',
|
|
|
|
\ 'command': 'true',
|
|
|
|
\ 'read_buffer': 0,
|
|
|
|
\})
|
|
|
|
|
2016-10-17 22:26:19 +00:00
|
|
|
After:
|
2017-05-12 08:19:36 +00:00
|
|
|
delfunction TestCallback
|
|
|
|
|
|
|
|
unlet! g:expected_data
|
|
|
|
let g:ale_buffer_info = {}
|
|
|
|
call ale#linter#Reset()
|
|
|
|
|
|
|
|
Given foobar (Some JavaScript with problems):
|
|
|
|
var y = 3+3;
|
|
|
|
var y = 3
|
2016-10-17 22:26:19 +00:00
|
|
|
|
|
|
|
Execute(The loclist should be updated after linting is done):
|
|
|
|
call ale#Lint()
|
|
|
|
call ale#engine#WaitForJobs(2000)
|
|
|
|
|
2016-10-24 19:21:32 +00:00
|
|
|
AssertEqual ['' . bufnr('%')], keys(g:ale_buffer_info)
|
|
|
|
AssertEqual g:expected_data, g:ale_buffer_info[bufnr('%')].loclist
|