2017-03-30 22:21:37 +00:00
|
|
|
Before:
|
2017-04-03 18:04:02 +00:00
|
|
|
function! CheckAutocmd(group)
|
|
|
|
call ALEInitAuGroups()
|
|
|
|
redir => l:output
|
2017-05-26 16:36:21 +00:00
|
|
|
execute 'silent! autocmd ' . a:group
|
2017-04-03 18:04:02 +00:00
|
|
|
redir END
|
|
|
|
|
2017-05-26 16:36:21 +00:00
|
|
|
let l:matches = []
|
|
|
|
let l:header = ''
|
|
|
|
" Some event names have aliases, and NeoVim and Vim produce
|
|
|
|
" different output. The names are remapped to fix this.
|
|
|
|
let l:event_name_corrections = {
|
|
|
|
\ 'BufWrite': 'BufWritePre',
|
|
|
|
\ 'BufRead': 'BufReadPost',
|
|
|
|
\}
|
|
|
|
|
|
|
|
" autocmd commands are split across two lines in output, so we
|
|
|
|
" must merge the lines back into one simple line.
|
|
|
|
for l:line in split(l:output, "\n")
|
|
|
|
if l:line =~# '^ALE' && split(l:line)[0] ==# a:group
|
|
|
|
let l:header = split(l:line)[1]
|
|
|
|
let l:header = get(l:event_name_corrections, l:header, l:header)
|
|
|
|
elseif !empty(l:header)
|
2017-08-20 14:59:18 +00:00
|
|
|
" There's an extra line for buffer events, and we should only look
|
|
|
|
" for the one matching the current buffer.
|
|
|
|
if l:line =~# '<buffer=' . bufnr('') . '>'
|
|
|
|
let l:header .= ' <buffer>'
|
|
|
|
else
|
|
|
|
call add(l:matches, join(split(l:header . l:line)))
|
|
|
|
let l:header = ''
|
|
|
|
endif
|
2017-05-26 16:36:21 +00:00
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
|
|
|
|
call sort(l:matches)
|
|
|
|
|
|
|
|
return l:matches
|
2017-04-03 18:04:02 +00:00
|
|
|
endfunction
|
|
|
|
|
2017-05-30 20:32:51 +00:00
|
|
|
Save g:ale_enabled
|
2017-03-30 22:21:37 +00:00
|
|
|
Save g:ale_lint_on_text_changed
|
|
|
|
Save g:ale_lint_on_insert_leave
|
2017-05-26 16:36:21 +00:00
|
|
|
Save g:ale_pattern_options_enabled
|
|
|
|
Save g:ale_lint_on_enter
|
|
|
|
Save g:ale_lint_on_filetype_changed
|
|
|
|
Save g:ale_lint_on_save
|
|
|
|
Save g:ale_echo_cursor
|
2017-05-30 20:32:51 +00:00
|
|
|
Save g:ale_fix_on_save
|
2017-08-15 23:45:46 +00:00
|
|
|
Save g:ale_completion_enabled
|
2017-03-30 22:21:37 +00:00
|
|
|
|
|
|
|
After:
|
2017-04-03 18:04:02 +00:00
|
|
|
delfunction CheckAutocmd
|
|
|
|
Restore
|
2017-03-30 22:21:37 +00:00
|
|
|
|
2017-08-15 23:45:46 +00:00
|
|
|
if g:ale_completion_enabled
|
|
|
|
call ale#completion#Enable()
|
|
|
|
else
|
|
|
|
call ale#completion#Disable()
|
|
|
|
endif
|
|
|
|
|
2017-03-30 22:21:37 +00:00
|
|
|
call ALEInitAuGroups()
|
|
|
|
|
2017-04-03 18:04:02 +00:00
|
|
|
Execute (g:ale_lint_on_text_changed = 0 should bind no events):
|
|
|
|
let g:ale_lint_on_text_changed = 0
|
2017-03-30 22:21:37 +00:00
|
|
|
|
2017-04-03 18:04:02 +00:00
|
|
|
AssertEqual [], CheckAutocmd('ALERunOnTextChangedGroup')
|
2017-03-30 22:21:37 +00:00
|
|
|
|
2017-04-03 18:04:02 +00:00
|
|
|
Execute (g:ale_lint_on_text_changed = 1 bind both events):
|
|
|
|
let g:ale_lint_on_text_changed = 1
|
2017-03-30 22:21:37 +00:00
|
|
|
|
2017-05-26 16:36:21 +00:00
|
|
|
AssertEqual [
|
|
|
|
\ 'TextChanged * call ale#Queue(g:ale_lint_delay)',
|
|
|
|
\ 'TextChangedI * call ale#Queue(g:ale_lint_delay)'
|
|
|
|
\], CheckAutocmd('ALERunOnTextChangedGroup')
|
2017-04-03 18:04:02 +00:00
|
|
|
|
|
|
|
Execute (g:ale_lint_on_text_changed = 'always' should bind both events):
|
2017-03-30 22:21:37 +00:00
|
|
|
let g:ale_lint_on_text_changed = 'always'
|
|
|
|
|
2017-05-26 16:36:21 +00:00
|
|
|
AssertEqual [
|
|
|
|
\ 'TextChanged * call ale#Queue(g:ale_lint_delay)',
|
|
|
|
\ 'TextChangedI * call ale#Queue(g:ale_lint_delay)'
|
|
|
|
\], CheckAutocmd('ALERunOnTextChangedGroup')
|
2017-03-30 22:21:37 +00:00
|
|
|
|
2017-04-03 18:04:02 +00:00
|
|
|
Execute (g:ale_lint_on_text_changed = 'normal' should bind only TextChanged):
|
|
|
|
let g:ale_lint_on_text_changed = 'normal'
|
2017-03-30 22:21:37 +00:00
|
|
|
|
2017-05-26 16:36:21 +00:00
|
|
|
AssertEqual [
|
|
|
|
\ 'TextChanged * call ale#Queue(g:ale_lint_delay)',
|
|
|
|
\], CheckAutocmd('ALERunOnTextChangedGroup')
|
2017-03-30 22:21:37 +00:00
|
|
|
|
2017-04-03 18:04:02 +00:00
|
|
|
Execute (g:ale_lint_on_text_changed = 'insert' should bind only TextChangedI):
|
|
|
|
let g:ale_lint_on_text_changed = 'insert'
|
|
|
|
|
2017-05-26 16:36:21 +00:00
|
|
|
AssertEqual [
|
|
|
|
\ 'TextChangedI * call ale#Queue(g:ale_lint_delay)',
|
|
|
|
\], CheckAutocmd('ALERunOnTextChangedGroup')
|
2017-04-03 18:04:02 +00:00
|
|
|
|
|
|
|
Execute (g:ale_lint_on_insert_leave = 1 should bind InsertLeave):
|
2017-03-30 22:21:37 +00:00
|
|
|
let g:ale_lint_on_insert_leave = 1
|
|
|
|
|
2017-05-26 16:36:21 +00:00
|
|
|
AssertEqual [
|
2017-06-05 12:55:18 +00:00
|
|
|
\ 'InsertLeave * call ale#Queue(0)',
|
2017-05-26 16:36:21 +00:00
|
|
|
\], CheckAutocmd('ALERunOnInsertLeave')
|
2017-04-03 18:04:02 +00:00
|
|
|
|
|
|
|
Execute (g:ale_lint_on_insert_leave = 0 should bind no events):
|
|
|
|
let g:ale_lint_on_insert_leave = 0
|
2017-03-30 22:21:37 +00:00
|
|
|
|
2017-04-03 18:04:02 +00:00
|
|
|
AssertEqual [], CheckAutocmd('ALERunOnInsertLeave')
|
2017-05-26 16:36:21 +00:00
|
|
|
|
|
|
|
Execute (g:ale_pattern_options_enabled = 0 should bind no events):
|
|
|
|
let g:ale_pattern_options_enabled = 0
|
|
|
|
|
|
|
|
AssertEqual [], CheckAutocmd('ALEPatternOptionsGroup')
|
|
|
|
|
|
|
|
Execute (g:ale_pattern_options_enabled = 1 should bind BufReadPost and BufEnter):
|
|
|
|
let g:ale_pattern_options_enabled = 1
|
|
|
|
|
|
|
|
AssertEqual [
|
|
|
|
\ 'BufEnter * call ale#pattern_options#SetOptions()',
|
|
|
|
\ 'BufReadPost * call ale#pattern_options#SetOptions()',
|
|
|
|
\], CheckAutocmd('ALEPatternOptionsGroup')
|
|
|
|
|
2017-08-14 22:31:46 +00:00
|
|
|
Execute (g:ale_lint_on_enter = 0 should bind only the BufEnter event):
|
2017-05-26 16:36:21 +00:00
|
|
|
let g:ale_lint_on_enter = 0
|
|
|
|
|
2017-08-14 22:31:46 +00:00
|
|
|
AssertEqual
|
|
|
|
\ ['BufEnter * call ale#events#EnterEvent(str2nr(expand(''<abuf>'')))'],
|
|
|
|
\ CheckAutocmd('ALERunOnEnterGroup')
|
2017-05-26 16:36:21 +00:00
|
|
|
|
2017-06-24 11:24:31 +00:00
|
|
|
Execute (g:ale_lint_on_enter = 1 should bind the required events):
|
2017-05-26 16:36:21 +00:00
|
|
|
let g:ale_lint_on_enter = 1
|
|
|
|
|
|
|
|
AssertEqual [
|
2017-07-31 23:03:24 +00:00
|
|
|
\ 'BufEnter * call ale#events#EnterEvent(str2nr(expand(''<abuf>'')))',
|
|
|
|
\ 'BufReadPost * call ale#Queue(0, ''lint_file'', str2nr(expand(''<abuf>'')))',
|
|
|
|
\ 'BufWinEnter * call ale#Queue(0, ''lint_file'', str2nr(expand(''<abuf>'')))',
|
2017-06-24 11:24:31 +00:00
|
|
|
\ 'FileChangedShellPost * call ale#events#FileChangedEvent(str2nr(expand(''<abuf>'')))',
|
2017-05-26 16:36:21 +00:00
|
|
|
\], CheckAutocmd('ALERunOnEnterGroup')
|
|
|
|
|
|
|
|
Execute (g:ale_lint_on_filetype_changed = 0 should bind no events):
|
|
|
|
let g:ale_lint_on_filetype_changed = 0
|
|
|
|
|
|
|
|
AssertEqual [], CheckAutocmd('ALERunOnFiletypeChangeGroup')
|
|
|
|
|
2017-08-14 22:31:46 +00:00
|
|
|
Execute (g:ale_lint_on_filetype_changed = 1 should bind the FileType event):
|
2017-05-26 16:36:21 +00:00
|
|
|
let g:ale_lint_on_filetype_changed = 1
|
|
|
|
|
2017-08-14 22:31:46 +00:00
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ 'FileType * call ale#events#FileTypeEvent( '
|
|
|
|
\ . 'str2nr(expand(''<abuf>'')), '
|
|
|
|
\ . 'expand(''<amatch>'')'
|
|
|
|
\ . ')',
|
|
|
|
\ ],
|
|
|
|
\ CheckAutocmd('ALERunOnFiletypeChangeGroup')
|
2017-05-26 16:36:21 +00:00
|
|
|
|
|
|
|
Execute (g:ale_lint_on_save = 0 should bind no events):
|
|
|
|
let g:ale_lint_on_save = 0
|
2017-05-30 20:32:51 +00:00
|
|
|
let g:ale_fix_on_save = 0
|
2017-05-26 16:36:21 +00:00
|
|
|
|
|
|
|
AssertEqual [], CheckAutocmd('ALERunOnSaveGroup')
|
|
|
|
|
|
|
|
Execute (g:ale_lint_on_save = 1 should bind no events):
|
|
|
|
let g:ale_lint_on_save = 1
|
2017-05-30 20:32:51 +00:00
|
|
|
let g:ale_fix_on_save = 0
|
2017-05-26 16:36:21 +00:00
|
|
|
|
|
|
|
AssertEqual [
|
2017-07-31 23:03:24 +00:00
|
|
|
\ 'BufWritePost * call ale#events#SaveEvent(str2nr(expand(''<abuf>'')))',
|
2017-05-30 20:32:51 +00:00
|
|
|
\], CheckAutocmd('ALERunOnSaveGroup')
|
|
|
|
|
|
|
|
Execute (g:ale_lint_on_save = 0 and g:ale_fix_on_save = 1 should bind events):
|
|
|
|
let g:ale_lint_on_save = 0
|
|
|
|
let g:ale_fix_on_save = 1
|
|
|
|
|
|
|
|
AssertEqual [
|
2017-07-31 23:03:24 +00:00
|
|
|
\ 'BufWritePost * call ale#events#SaveEvent(str2nr(expand(''<abuf>'')))',
|
2017-05-30 20:32:51 +00:00
|
|
|
\], CheckAutocmd('ALERunOnSaveGroup')
|
|
|
|
|
|
|
|
Execute (g:ale_fix_on_save = 1 should bind events even when ALE is disabled):
|
|
|
|
let g:ale_enabled = 0
|
|
|
|
let g:ale_lint_on_save = 0
|
|
|
|
let g:ale_fix_on_save = 1
|
|
|
|
|
|
|
|
AssertEqual [
|
2017-07-31 23:03:24 +00:00
|
|
|
\ 'BufWritePost * call ale#events#SaveEvent(str2nr(expand(''<abuf>'')))',
|
2017-05-26 16:36:21 +00:00
|
|
|
\], CheckAutocmd('ALERunOnSaveGroup')
|
|
|
|
|
|
|
|
Execute (g:ale_echo_cursor = 0 should bind no events):
|
|
|
|
let g:ale_echo_cursor = 0
|
|
|
|
|
|
|
|
AssertEqual [], CheckAutocmd('ALECursorGroup')
|
|
|
|
|
|
|
|
Execute (g:ale_echo_cursor = 1 should bind cursor events):
|
|
|
|
let g:ale_echo_cursor = 1
|
|
|
|
|
|
|
|
AssertEqual [
|
|
|
|
\ 'CursorHold * call ale#cursor#EchoCursorWarningWithDelay()',
|
|
|
|
\ 'CursorMoved * call ale#cursor#EchoCursorWarningWithDelay()',
|
|
|
|
\ 'InsertLeave * call ale#cursor#EchoCursorWarning()',
|
|
|
|
\], CheckAutocmd('ALECursorGroup')
|
2017-08-15 23:45:46 +00:00
|
|
|
|
2017-10-14 22:22:13 +00:00
|
|
|
Execute (ALECleanupGroup should include the right commands):
|
|
|
|
AssertEqual [
|
|
|
|
\ 'BufUnload * call ale#engine#Cleanup(str2nr(expand(''<abuf>'')))',
|
|
|
|
\ 'QuitPre * call ale#events#QuitEvent(str2nr(expand(''<abuf>'')))',
|
|
|
|
\], CheckAutocmd('ALECleanupGroup')
|
|
|
|
|
2017-08-15 23:45:46 +00:00
|
|
|
Execute(Enabling completion should set up autocmd events correctly):
|
|
|
|
let g:ale_completion_enabled = 0
|
|
|
|
call ale#completion#Enable()
|
|
|
|
|
|
|
|
AssertEqual [
|
|
|
|
\ 'CompleteDone * call ale#completion#Done()',
|
|
|
|
\ 'TextChangedI * call ale#completion#Queue()',
|
|
|
|
\], CheckAutocmd('ALECompletionGroup')
|
|
|
|
AssertEqual 1, g:ale_completion_enabled
|
|
|
|
|
|
|
|
Execute(Disabling completion should remove autocmd events correctly):
|
|
|
|
let g:ale_completion_enabled = 1
|
|
|
|
call ale#completion#Enable()
|
|
|
|
call ale#completion#Disable()
|
|
|
|
|
|
|
|
AssertEqual [], CheckAutocmd('ALECompletionGroup')
|
|
|
|
AssertEqual 0, g:ale_completion_enabled
|