2021-07-09 13:40:31 +00:00
|
|
|
Before:
|
|
|
|
call ale#assert#SetUpLinterTest('python', 'pylsp')
|
2023-02-08 09:11:31 +00:00
|
|
|
Save b:ale_python_auto_virtualenv
|
2021-07-09 13:40:31 +00:00
|
|
|
|
|
|
|
let b:bin_dir = has('win32') ? 'Scripts' : 'bin'
|
|
|
|
|
|
|
|
After:
|
|
|
|
unlet! b:bin_dir
|
2023-02-08 09:11:31 +00:00
|
|
|
unlet! b:venv_bin
|
|
|
|
unlet! b:sep
|
2021-07-09 13:40:31 +00:00
|
|
|
unlet! b:executable
|
|
|
|
|
|
|
|
call ale#assert#TearDownLinterTest()
|
|
|
|
|
|
|
|
Execute(The pylsp command callback should return default string):
|
2022-12-24 13:28:08 +00:00
|
|
|
call ale#test#SetFilename('./foo.py')
|
|
|
|
|
2021-07-09 13:40:31 +00:00
|
|
|
AssertLinter 'pylsp', ale#Escape('pylsp')
|
|
|
|
|
|
|
|
Execute(The pylsp executable should be configurable):
|
|
|
|
let g:ale_python_pylsp_executable = '~/.local/bin/pylsp'
|
|
|
|
|
|
|
|
AssertLinter '~/.local/bin/pylsp' , ale#Escape('~/.local/bin/pylsp')
|
|
|
|
|
|
|
|
Execute(The pylsp command callback should let you set options):
|
|
|
|
let g:ale_python_pylsp_options = '--some-option'
|
|
|
|
|
|
|
|
AssertLinter 'pylsp', ale#Escape('pylsp') . ' --some-option'
|
|
|
|
|
2022-12-24 13:28:08 +00:00
|
|
|
Execute(The cwd and project root should be detected correctly):
|
|
|
|
call ale#test#SetFilename('../test-files/python/with_virtualenv/subdir/foo/bar.py')
|
|
|
|
|
|
|
|
AssertLinterCwd ale#test#GetFilename('../test-files/python/with_virtualenv/subdir')
|
|
|
|
AssertLSPProject ale#test#GetFilename('../test-files/python/with_virtualenv/subdir')
|
|
|
|
|
2021-07-09 13:40:31 +00:00
|
|
|
Execute(The pylsp executable should be run from the virtualenv path):
|
|
|
|
call ale#test#SetFilename('../test-files/python/with_virtualenv/subdir/foo/bar.py')
|
|
|
|
|
|
|
|
let b:executable = ale#path#Simplify(
|
|
|
|
\ g:dir . '/../test-files/python/with_virtualenv/env/' . b:bin_dir . '/pylsp'
|
|
|
|
\)
|
|
|
|
|
|
|
|
AssertEqual ale#Escape(b:executable),
|
|
|
|
\ ale_linters#python#pylsp#GetCommand(bufnr(''))
|
|
|
|
|
2023-02-08 09:11:31 +00:00
|
|
|
Execute(virtualenv vars should be used when ale_python_auto_virtualenv = 1):
|
|
|
|
let b:ale_python_auto_virtualenv = 1
|
|
|
|
call ale#test#SetFilename('../test-files/python/with_virtualenv/subdir/foo/bar.py')
|
|
|
|
|
|
|
|
let b:venv_bin = ale#path#Simplify(g:dir . '/../test-files/python/with_virtualenv/env/' . b:bin_dir)
|
|
|
|
let b:sep = has('win32') ? ';' : ':'
|
|
|
|
let b:executable = ale#path#Simplify(b:venv_bin . '/pylsp')
|
|
|
|
|
|
|
|
AssertLinter b:executable, ale#Env('PATH', b:venv_bin . b:sep . $PATH)
|
|
|
|
\ . ale#Escape(b:executable)
|
|
|
|
|
2021-07-09 13:40:31 +00:00
|
|
|
Execute(You should be able to override the pylsp virtualenv lookup):
|
|
|
|
call ale#test#SetFilename('../test-files/python/with_virtualenv/subdir/foo/bar.py')
|
|
|
|
|
|
|
|
let g:ale_python_pylsp_use_global = 1
|
|
|
|
|
|
|
|
AssertLinter 'pylsp', ale#Escape('pylsp')
|
|
|
|
|
|
|
|
Execute(Setting executable to 'pipenv' appends 'run pylsp'):
|
|
|
|
let g:ale_python_pylsp_executable = 'path/to/pipenv'
|
2022-04-01 12:17:15 +00:00
|
|
|
call ale#test#SetFilename('../test-files/dummy')
|
2021-07-09 13:40:31 +00:00
|
|
|
|
|
|
|
AssertLinter 'path/to/pipenv', ale#Escape('path/to/pipenv') . ' run pylsp'
|
|
|
|
|
|
|
|
Execute(Pipenv is detected when python_pylsp_auto_pipenv is set):
|
|
|
|
let g:ale_python_pylsp_auto_pipenv = 1
|
|
|
|
call ale#test#SetFilename('../test-files/python/pipenv/whatever.py')
|
|
|
|
|
|
|
|
AssertLinter 'pipenv',
|
|
|
|
\ ale#Escape('pipenv') . ' run pylsp'
|
|
|
|
|
2021-07-25 04:39:05 +00:00
|
|
|
Execute(Setting executable to 'poetry' appends 'run pylsp'):
|
|
|
|
let g:ale_python_pylsp_executable = 'path/to/poetry'
|
|
|
|
|
|
|
|
AssertLinter 'path/to/poetry', ale#Escape('path/to/poetry') . ' run pylsp'
|
|
|
|
|
|
|
|
Execute(poetry is detected when python_pylsp_auto_poetry is set):
|
|
|
|
let g:ale_python_pylsp_auto_poetry = 1
|
|
|
|
call ale#test#SetFilename('../test-files/python/poetry/whatever.py')
|
|
|
|
|
|
|
|
AssertLinter 'poetry',
|
|
|
|
\ ale#Escape('poetry') . ' run pylsp'
|
|
|
|
|
2021-07-09 13:40:31 +00:00
|
|
|
Execute(Should accept configuration settings):
|
|
|
|
AssertLSPConfig {}
|
|
|
|
let b:ale_python_pylsp_config = {'pylsp': {'plugins': {'preload': {'enabled': v:false}}}}
|
|
|
|
AssertLSPConfig {'pylsp': {'plugins': {'preload': {'enabled': v:false}}}}
|