mirror of
https://github.com/dense-analysis/ale.git
synced 2026-01-09 21:12:31 +08:00
Working directories are now set seperately from the commands so they can later be swapped out when running linters over projects is supported, and also better support filename mapping for running linters on other machines in future.
51 lines
1.5 KiB
Plaintext
51 lines
1.5 KiB
Plaintext
Before:
|
|
Save g:ale_python_autoimport_executable
|
|
Save g:ale_python_autoimport_options
|
|
|
|
" Use an invalid global executable, so we don't match it.
|
|
let g:ale_python_autoimport_executable = 'xxxinvalid'
|
|
let g:ale_python_autoimport_options = ''
|
|
|
|
call ale#test#SetDirectory('/testplugin/test/fixers')
|
|
silent cd ..
|
|
silent cd command_callback
|
|
let g:dir = getcwd()
|
|
|
|
let b:bin_dir = has('win32') ? 'Scripts' : 'bin'
|
|
|
|
After:
|
|
Restore
|
|
|
|
unlet! b:bin_dir
|
|
|
|
call ale#test#RestoreDirectory()
|
|
|
|
Execute(The autoimport callback should return the correct default values):
|
|
AssertEqual
|
|
\ 0,
|
|
\ ale#fixers#autoimport#Fix(bufnr(''))
|
|
|
|
silent execute 'file ' . fnameescape(g:dir . '/python_paths/with_virtualenv/subdir/foo/bar.py')
|
|
AssertEqual
|
|
\ {
|
|
\ 'cwd': '%s:h',
|
|
\ 'command': ale#Escape(ale#path#Simplify(g:dir . '/python_paths/with_virtualenv/env/' . b:bin_dir . '/autoimport')) . ' -',
|
|
\ },
|
|
\ ale#fixers#autoimport#Fix(bufnr(''))
|
|
|
|
Execute(The autoimport callback should respect custom options):
|
|
let g:ale_python_autoimport_options = '--multi-line=3 --trailing-comma'
|
|
|
|
AssertEqual
|
|
\ 0,
|
|
\ ale#fixers#autoimport#Fix(bufnr(''))
|
|
|
|
silent execute 'file ' . fnameescape(g:dir . '/python_paths/with_virtualenv/subdir/foo/bar.py')
|
|
AssertEqual
|
|
\ {
|
|
\ 'cwd': '%s:h',
|
|
\ 'command': ale#Escape(ale#path#Simplify(g:dir . '/python_paths/with_virtualenv/env/' . b:bin_dir . '/autoimport'))
|
|
\ . ' --multi-line=3 --trailing-comma -',
|
|
\ },
|
|
\ ale#fixers#autoimport#Fix(bufnr(''))
|