2020-10-23 16:53:38 +00:00
|
|
|
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')
|
|
|
|
|
|
|
|
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):
|
2021-03-20 22:11:22 +00:00
|
|
|
silent execute 'file ' . fnameescape(g:dir . '/../test-files/python/with_virtualenv/subdir/foo/bar.py')
|
2024-09-05 06:37:30 +00:00
|
|
|
|
2020-10-23 16:53:38 +00:00
|
|
|
AssertEqual
|
|
|
|
\ {
|
2021-03-01 20:11:10 +00:00
|
|
|
\ 'cwd': '%s:h',
|
2021-03-20 22:11:22 +00:00
|
|
|
\ 'command': ale#Escape(ale#path#Simplify(g:dir . '/../test-files/python/with_virtualenv/env/' . b:bin_dir . '/autoimport')) . ' -',
|
2020-10-23 16:53:38 +00:00
|
|
|
\ },
|
|
|
|
\ ale#fixers#autoimport#Fix(bufnr(''))
|
|
|
|
|
|
|
|
Execute(The autoimport callback should respect custom options):
|
|
|
|
let g:ale_python_autoimport_options = '--multi-line=3 --trailing-comma'
|
|
|
|
|
2021-03-20 22:11:22 +00:00
|
|
|
silent execute 'file ' . fnameescape(g:dir . '/../test-files/python/with_virtualenv/subdir/foo/bar.py')
|
2024-09-05 06:37:30 +00:00
|
|
|
|
2020-10-23 16:53:38 +00:00
|
|
|
AssertEqual
|
|
|
|
\ {
|
2021-03-01 20:11:10 +00:00
|
|
|
\ 'cwd': '%s:h',
|
2021-03-20 22:11:22 +00:00
|
|
|
\ 'command': ale#Escape(ale#path#Simplify(g:dir . '/../test-files/python/with_virtualenv/env/' . b:bin_dir . '/autoimport'))
|
2020-10-23 16:53:38 +00:00
|
|
|
\ . ' --multi-line=3 --trailing-comma -',
|
|
|
|
\ },
|
|
|
|
\ ale#fixers#autoimport#Fix(bufnr(''))
|
2024-09-05 06:37:30 +00:00
|
|
|
|
|
|
|
Execute(pipenv is detected when python_autoimport_auto_pipenv is set):
|
|
|
|
let g:ale_python_autoimport_auto_pipenv = 1
|
|
|
|
|
|
|
|
call ale#test#SetFilename('../test-files/python/pipenv/whatever.py')
|
|
|
|
|
|
|
|
AssertEqual
|
|
|
|
\ {
|
|
|
|
\ 'cwd': '%s:h',
|
|
|
|
\ 'command': ale#Escape('pipenv') . ' run autoimport -',
|
|
|
|
\ },
|
|
|
|
\ ale#fixers#autoimport#Fix(bufnr(''))
|
|
|
|
|
|
|
|
Execute(Poetry is detected when python_autoimport_auto_poetry is set):
|
|
|
|
let g:ale_python_autoimport_auto_poetry = 1
|
|
|
|
|
|
|
|
call ale#test#SetFilename('../test-files/python/poetry/whatever.py')
|
|
|
|
|
|
|
|
AssertEqual
|
|
|
|
\ {
|
|
|
|
\ 'cwd': '%s:h',
|
|
|
|
\ 'command': ale#Escape('poetry') . ' run autoimport -',
|
|
|
|
\ },
|
|
|
|
\ ale#fixers#autoimport#Fix(bufnr(''))
|
|
|
|
|
|
|
|
Execute(uv is detected when python_autoimport_auto_uv is set):
|
|
|
|
let g:ale_python_autoimport_auto_uv = 1
|
|
|
|
|
|
|
|
call ale#test#SetFilename('../test-files/python/uv/whatever.py')
|
|
|
|
|
|
|
|
AssertEqual
|
|
|
|
\ {
|
|
|
|
\ 'cwd': '%s:h',
|
|
|
|
\ 'command': ale#Escape('uv') . ' run autoimport -',
|
|
|
|
\ },
|
|
|
|
\ ale#fixers#autoimport#Fix(bufnr(''))
|