mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-06 12:44:23 +08:00
#2132 - Implement deferred command handling for linters
This commit is contained in:
46
test/test_deferred_command_string.vader
Normal file
46
test/test_deferred_command_string.vader
Normal file
@@ -0,0 +1,46 @@
|
||||
Before:
|
||||
Save g:ale_run_synchronously
|
||||
Save g:ale_emulate_job_failure
|
||||
Save g:ale_buffer_info
|
||||
|
||||
let g:ale_run_synchronously = 1
|
||||
let g:ale_buffer_info = {}
|
||||
let b:ale_history = []
|
||||
|
||||
call ale#linter#Reset()
|
||||
call ale#assert#SetUpLinterTestCommands()
|
||||
call ale#linter#Define('foobar', {
|
||||
\ 'name': 'lint_file_linter',
|
||||
\ 'callback': 'LintFileCallback',
|
||||
\ 'executable': 'echo',
|
||||
\ 'command': {b -> ale#command#Run(b, 'echo', {-> ale#command#Run(b, 'echo', {-> 'foo'})})},
|
||||
\ 'read_buffer': 0,
|
||||
\})
|
||||
|
||||
After:
|
||||
Restore
|
||||
|
||||
call ale#assert#TearDownLinterTest()
|
||||
|
||||
Given foobar (Some imaginary filetype):
|
||||
Execute(It should be possible to compute an executable to check based on the result of commands):
|
||||
AssertLinter 'echo', 'foo'
|
||||
|
||||
ALELint
|
||||
call ale#test#FlushJobs()
|
||||
|
||||
AssertEqual
|
||||
\ 1,
|
||||
\ len(filter(copy(b:ale_history), 'string(v:val.command) =~# ''foo'''))
|
||||
|
||||
Execute(It handle the deferred command failing):
|
||||
let g:ale_emulate_job_failure = 1
|
||||
|
||||
AssertLinter 'echo', 0
|
||||
|
||||
ALELint
|
||||
call ale#test#FlushJobs()
|
||||
|
||||
AssertEqual
|
||||
\ 0,
|
||||
\ len(filter(copy(b:ale_history), 'string(v:val.command) =~# ''foo'''))
|
||||
Reference in New Issue
Block a user