ale/test/test_linting_updates_loclis...

44 lines
994 B
Plaintext
Raw Normal View History

Given javascript (Some JavaScript with problems):
var y = 3+3;
var y = 3
Before:
let g:expected_data = [
\ {
\ 'lnum': 1,
\ 'bufnr': bufnr('%'),
\ 'vcol': 0,
\ 'linter_name': 'eslint',
\ 'nr': -1,
\ 'type': 'W',
\ 'col': 10,
\ 'text': 'Infix operators must be spaced. [Warning/space-infix-ops]',
\ 'sign_id': 1000001,
\ },
\ {
\ 'lnum': 2,
\ 'bufnr': bufnr('%'),
\ 'vcol': 0,
\ 'linter_name': 'eslint',
\ 'nr': -1,
\ 'type': 'E',
\ 'col': 10,
\ 'text': 'Missing semicolon. [Error/semi]',
\ 'sign_id': 1000002,
\ }
\]
After:
unlet g:expected_data
Execute(The loclist should be updated after linting is done):
call ale#Lint()
call ale#engine#WaitForJobs(2000)
AssertEqual ['' . bufnr('%')], keys(g:ale_buffer_info)
2017-03-12 22:46:33 +00:00
let g:expected_data[0].match_id = getmatches()[0].id
let g:expected_data[1].match_id = getmatches()[1].id
AssertEqual g:expected_data, g:ale_buffer_info[bufnr('%')].loclist