mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-20 19:21:18 +08:00
Massively reduce the amount of code needed for linter tests
This commit is contained in:
@@ -1,45 +1,25 @@
|
||||
Before:
|
||||
Save g:ale_rust_rls_executable
|
||||
Save g:ale_rust_rls_toolchain
|
||||
|
||||
unlet! g:ale_rust_rls_executable
|
||||
unlet! g:ale_rust_rls_toolchain
|
||||
|
||||
runtime ale_linters/rust/rls.vim
|
||||
|
||||
call ale#test#SetDirectory('/testplugin/test/command_callback')
|
||||
call ale#assert#SetUpLinterTest('rust', 'rls')
|
||||
|
||||
After:
|
||||
Restore
|
||||
|
||||
call ale#test#RestoreDirectory()
|
||||
call ale#linter#Reset()
|
||||
call ale#assert#TearDownLinterTest()
|
||||
|
||||
Execute(The default executable path should be correct):
|
||||
AssertEqual 'rls', ale_linters#rust#rls#GetExecutable(bufnr(''))
|
||||
AssertEqual
|
||||
\ ale#Escape('rls') . ' +' . ale#Escape('nightly'),
|
||||
\ ale_linters#rust#rls#GetCommand(bufnr(''))
|
||||
AssertLinter 'rls', ale#Escape('rls') . ' +' . ale#Escape('nightly')
|
||||
|
||||
Execute(The toolchain should be configurable):
|
||||
let g:ale_rust_rls_toolchain = 'stable'
|
||||
|
||||
AssertEqual
|
||||
\ ale#Escape('rls') . ' +' . ale#Escape('stable'),
|
||||
\ ale_linters#rust#rls#GetCommand(bufnr(''))
|
||||
AssertLinter 'rls', ale#Escape('rls') . ' +' . ale#Escape('stable')
|
||||
|
||||
Execute(The toolchain should be ommitted if not given):
|
||||
let g:ale_rust_rls_toolchain = ''
|
||||
|
||||
AssertEqual
|
||||
\ ale#Escape('rls'),
|
||||
\ ale_linters#rust#rls#GetCommand(bufnr(''))
|
||||
AssertLinter 'rls', ale#Escape('rls')
|
||||
|
||||
Execute(The project root should be detected correctly):
|
||||
AssertEqual '', ale_linters#rust#rls#GetProjectRoot(bufnr(''))
|
||||
AssertLSPProject ''
|
||||
|
||||
call ale#test#SetFilename('rust-rls-project/test.rs')
|
||||
|
||||
AssertEqual
|
||||
\ ale#path#Simplify(g:dir . '/rust-rls-project'),
|
||||
\ ale_linters#rust#rls#GetProjectRoot(bufnr(''))
|
||||
AssertLSPProject ale#path#Simplify(g:dir . '/rust-rls-project')
|
||||
|
||||
Reference in New Issue
Block a user