2021-11-18 22:41:05 +00:00
|
|
|
Before:
|
|
|
|
call ale#assert#SetUpLinterTest('tex', 'cspell')
|
|
|
|
|
|
|
|
" We have to manually do our own variable reset because SetUpLinterTest calls
|
|
|
|
" ale#assert#ResetVariables, which specifically only resets variables that
|
|
|
|
" begin with ale_<filetype>_, per https://github.com/dense-analysis/ale/blob/76c2293e68a6cad3b192062743d25b8daa082205/autoload/ale/assert.vim#L256
|
|
|
|
"
|
|
|
|
" Took a lot of debugging and reading both junegunn/vader.vim and most ALE
|
|
|
|
" files to find this behavior
|
|
|
|
|
|
|
|
Save g:ale_cspell_executable
|
|
|
|
Save g:ale_cspell_use_global
|
|
|
|
Save g:ale_cspell_options
|
|
|
|
|
|
|
|
unlet! g:ale_cspell_executable
|
|
|
|
unlet! g:ale_cspell_use_global
|
|
|
|
unlet! g:ale_cspell_options
|
|
|
|
|
|
|
|
let g:ale_cspell_executable = 'cspell'
|
|
|
|
let g:ale_cspell_use_global = 0
|
|
|
|
let g:ale_cspell_options = ''
|
|
|
|
|
2024-01-14 12:05:38 +00:00
|
|
|
set filetype=tex
|
|
|
|
|
2021-11-18 22:41:05 +00:00
|
|
|
After:
|
|
|
|
call ale#assert#TearDownLinterTest()
|
|
|
|
|
|
|
|
Execute(The global executable should be used when the local one cannot be found):
|
|
|
|
AssertLinter
|
|
|
|
\ 'cspell',
|
|
|
|
\ ale#Escape('cspell')
|
2024-02-26 23:54:45 +00:00
|
|
|
\ . ' lint --no-color --no-progress --no-summary --language-id="latex" -- stdin'
|
2021-11-18 22:41:05 +00:00
|
|
|
|
|
|
|
Execute(Should use the node_modules/.bin executable if available):
|
|
|
|
call ale#test#SetFilename('../test-files/cspell/node-modules/test.tex')
|
|
|
|
|
|
|
|
AssertLinter
|
|
|
|
\ ale#path#Simplify(g:dir
|
|
|
|
\ . '/../test-files/cspell/node-modules/node_modules/.bin/cspell'),
|
|
|
|
\ ale#Escape(ale#path#Simplify(g:dir
|
|
|
|
\ . '/../test-files/cspell/node-modules/node_modules/.bin/cspell'))
|
2024-02-26 23:54:45 +00:00
|
|
|
\ . ' lint --no-color --no-progress --no-summary --language-id="latex" -- stdin'
|
2021-11-18 22:41:05 +00:00
|
|
|
|
|
|
|
Execute(Should use the node_modules/cspell executable if available):
|
|
|
|
call ale#test#SetFilename('../test-files/cspell/node-modules-2/test.tex')
|
|
|
|
|
|
|
|
AssertLinter
|
|
|
|
\ ale#path#Simplify(g:dir
|
|
|
|
\ . '/../test-files/cspell/node-modules-2/node_modules/cspell/bin.js'),
|
|
|
|
\ (has('win32') ? 'node.exe ': '')
|
|
|
|
\ . ale#Escape(ale#path#Simplify(g:dir
|
|
|
|
\ . '/../test-files/cspell/node-modules-2/node_modules/cspell/bin.js'))
|
2024-02-26 23:54:45 +00:00
|
|
|
\ . ' lint --no-color --no-progress --no-summary --language-id="latex" -- stdin'
|
2021-11-18 22:41:05 +00:00
|
|
|
|
|
|
|
Execute(Should let users configure a global executable and override local paths):
|
|
|
|
let g:ale_cspell_executable = '/path/to/custom/cspell'
|
|
|
|
let g:ale_cspell_use_global = 1
|
|
|
|
|
|
|
|
AssertLinter
|
|
|
|
\ '/path/to/custom/cspell',
|
|
|
|
\ ale#Escape('/path/to/custom/cspell')
|
2024-02-26 23:54:45 +00:00
|
|
|
\ . ' lint --no-color --no-progress --no-summary --language-id="latex" -- stdin'
|
2021-11-18 22:41:05 +00:00
|
|
|
|
|
|
|
Execute(Additional cspell options should be configurable):
|
2022-04-01 12:17:15 +00:00
|
|
|
call ale#test#SetFilename('../test-files/dummy')
|
|
|
|
|
2021-11-18 22:41:05 +00:00
|
|
|
let g:ale_cspell_options = '--foobar'
|
|
|
|
|
|
|
|
AssertLinter
|
|
|
|
\ 'cspell',
|
|
|
|
\ ale#Escape('cspell')
|
2024-02-26 23:54:45 +00:00
|
|
|
\ . ' lint --no-color --no-progress --no-summary --language-id="latex" --foobar -- stdin'
|
|
|
|
|
|
|
|
Execute(The language id should be tex when filetype is plaintex):
|
|
|
|
set filetype=plaintex
|
|
|
|
|
|
|
|
AssertLinter
|
|
|
|
\ 'cspell',
|
|
|
|
\ ale#Escape('cspell')
|
|
|
|
\ . ' lint --no-color --no-progress --no-summary --language-id="tex" -- stdin'
|
|
|
|
|
|
|
|
Execute(The language id should be equal to filetype when not tex or plaintex):
|
|
|
|
set filetype=markdown
|
|
|
|
|
|
|
|
AssertLinter
|
|
|
|
\ 'cspell',
|
|
|
|
\ ale#Escape('cspell')
|
|
|
|
\ . ' lint --no-color --no-progress --no-summary --language-id="markdown" -- stdin'
|
|
|
|
|
|
|
|
set filetype=asciidoc
|
|
|
|
|
|
|
|
AssertLinter
|
|
|
|
\ 'cspell',
|
|
|
|
\ ale#Escape('cspell')
|
|
|
|
\ . ' lint --no-color --no-progress --no-summary --language-id="asciidoc" -- stdin'
|
|
|
|
|
|
|
|
set filetype=html
|
|
|
|
|
|
|
|
AssertLinter
|
|
|
|
\ 'cspell',
|
|
|
|
\ ale#Escape('cspell')
|
|
|
|
\ . ' lint --no-color --no-progress --no-summary --language-id="html" -- stdin'
|
2024-01-14 12:05:38 +00:00
|
|
|
|
|
|
|
Execute(The language id should not specified when filetype is empty):
|
|
|
|
set filetype=
|
|
|
|
|
|
|
|
AssertLinter
|
|
|
|
\ 'cspell',
|
|
|
|
\ ale#Escape('cspell')
|
|
|
|
\ . ' lint --no-color --no-progress --no-summary -- stdin'
|