diff options
author | Nicolas Pauss <nicolas.pauss@gmail.com> | 2018-06-25 20:29:48 +0200 |
---|---|---|
committer | Nicolas Pauss <nicolas.pauss@intersec.com> | 2018-06-25 22:14:43 +0200 |
commit | 4d935ff32a1ac8618c8afbf3104cf1864f633300 (patch) | |
tree | 89f71253c8d6baf9a7c38bef7e3a0272a9149781 /test | |
parent | d05936a48919081cb274e412549a050e70207153 (diff) | |
download | ale-4d935ff32a1ac8618c8afbf3104cf1864f633300.zip |
Add test_pyrex_cython_command_callback.vader
Add common callback tests to check if executable and options are well
configurable.
Diffstat (limited to 'test')
-rw-r--r-- | test/command_callback/test_pyrex_cython_command_callback.vader | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/test/command_callback/test_pyrex_cython_command_callback.vader b/test/command_callback/test_pyrex_cython_command_callback.vader new file mode 100644 index 00000000..527ed2dd --- /dev/null +++ b/test/command_callback/test_pyrex_cython_command_callback.vader @@ -0,0 +1,50 @@ +Before: + Save g:ale_pyrex_cython_executable + Save g:ale_pyrex_cython_options + + unlet! g:ale_pyrex_cython_executable + unlet! b:ale_pyrex_cython_executable + unlet! g:ale_pyrex_cython_options + unlet! b:ale_pyrex_cython_options + + runtime ale_linters/pyrex/cython.vim + + call ale#test#SetDirectory('/testplugin/test/command_callback') + +After: + Restore + unlet! b:ale_pyrex_cython_options + unlet! b:ale_pyrex_cython_executable + call ale#linter#Reset() + call ale#test#RestoreDirectory() + +Execute(The default cython command should be correct): + AssertEqual + \ ale#Escape('cython') + \ . ' --working ' . ale#Escape(g:dir) + \ . ' --include-dir ' . ale#Escape(g:dir) + \ . ' --warning-extra' + \ . ' --output-file ' . g:ale#util#nul_file . ' %t', + \ ale_linters#pyrex#cython#GetCommand(bufnr('')) + +Execute(The cython executable should be configurable): + let b:ale_pyrex_cython_executable = 'cython_foobar' + + AssertEqual + \ ale#Escape('cython_foobar') + \ . ' --working ' . ale#Escape(g:dir) + \ . ' --include-dir ' . ale#Escape(g:dir) + \ . ' --warning-extra' + \ . ' --output-file ' . g:ale#util#nul_file . ' %t', + \ ale_linters#pyrex#cython#GetCommand(bufnr('')) + +Execute(Additional cython options should be configurable): + let b:ale_pyrex_cython_options = '--foobar' + + AssertEqual + \ ale#Escape('cython') + \ . ' --working ' . ale#Escape(g:dir) + \ . ' --include-dir ' . ale#Escape(g:dir) + \ . ' --foobar' + \ . ' --output-file ' . g:ale#util#nul_file . ' %t', + \ ale_linters#pyrex#cython#GetCommand(bufnr('')) |