diff options
author | w0rp <devw0rp@gmail.com> | 2021-03-21 00:21:49 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2021-03-21 00:25:33 +0000 |
commit | f7852dbd0a063d6d82ee17a5057fea53cb79b21d (patch) | |
tree | 00b98a3c668af9313eedd6936475c81eeef7e9b8 /test/command_callback/test_shellcheck_command_callback.vader | |
parent | 35caaecc9fc5822f0474e913d0b7655048fd30ee (diff) | |
download | ale-f7852dbd0a063d6d82ee17a5057fea53cb79b21d.zip |
#3633 - Move linter tests into test/linter
Diffstat (limited to 'test/command_callback/test_shellcheck_command_callback.vader')
-rw-r--r-- | test/command_callback/test_shellcheck_command_callback.vader | 106 |
1 files changed, 0 insertions, 106 deletions
diff --git a/test/command_callback/test_shellcheck_command_callback.vader b/test/command_callback/test_shellcheck_command_callback.vader deleted file mode 100644 index 40995755..00000000 --- a/test/command_callback/test_shellcheck_command_callback.vader +++ /dev/null @@ -1,106 +0,0 @@ -Before: - call ale#assert#SetUpLinterTest('sh', 'shellcheck') - call ale#test#SetFilename('test.sh') - - let b:suffix = ' -f gcc -' - -After: - unlet! b:is_bash - unlet! b:suffix - call ale#assert#TearDownLinterTest() - -Execute(The default shellcheck command should be correct): - AssertLinterCwd '%s:h' - AssertLinter 'shellcheck', ale#Escape('shellcheck') . b:suffix - -Execute(The option disabling changing directories should work): - let g:ale_sh_shellcheck_change_directory = 0 - - AssertLinterCwd '' - AssertLinter 'shellcheck', ale#Escape('shellcheck') . b:suffix - -Execute(The shellcheck command should accept options): - let b:ale_sh_shellcheck_options = '--foobar' - - AssertLinter 'shellcheck', ale#Escape('shellcheck') . ' --foobar' . b:suffix - -Execute(The shellcheck command should accept options and exclusions): - let b:ale_sh_shellcheck_options = '--foobar' - let b:ale_sh_shellcheck_exclusions = 'foo,bar' - - AssertLinter 'shellcheck', - \ ale#Escape('shellcheck') . ' --foobar -e foo,bar' . b:suffix - -Execute(The shellcheck command should include the dialect): - let b:is_bash = 1 - - AssertLinter 'shellcheck', ale#Escape('shellcheck') . ' -s bash' . b:suffix - -Execute(The shellcheck command should use ale_sh_shellcheck_dialect): - let b:ale_sh_shellcheck_dialect = 'ksh93' - - AssertLinter 'shellcheck', ale#Escape('shellcheck') . ' -s ksh93' . b:suffix - -Execute(The shellcheck command should allow unspecified dialect): - let b:ale_sh_shellcheck_dialect = '' - - AssertLinter 'shellcheck', ale#Escape('shellcheck') . b:suffix - -Execute(The shellcheck command should include the dialect before options and exclusions): - let b:is_bash = 1 - let b:ale_sh_shellcheck_options = '--foobar' - let b:ale_sh_shellcheck_exclusions = 'foo,bar' - - AssertLinter 'shellcheck', ale#Escape('shellcheck') - \ . ' -s bash --foobar -e foo,bar' - \ . b:suffix - -Execute(The -x option should be added when the version is new enough): - AssertLinter 'shellcheck', [ - \ ale#Escape('shellcheck') . ' --version', - \ ale#Escape('shellcheck') . b:suffix, - \] - - GivenCommandOutput [ - \ 'ShellCheck - shell script analysis tool', - \ 'version: 0.4.4', - \ 'license: GNU General Public License, version 3', - \ 'website: http://www.shellcheck.net', - \] - AssertLinter 'shellcheck', [ - \ ale#Escape('shellcheck') . ' --version', - \ ale#Escape('shellcheck') . ' -x' . b:suffix, - \] - - " We should cache the version check - GivenCommandOutput [] - AssertLinter 'shellcheck', [ - \ ale#Escape('shellcheck') . ' -x' . b:suffix, - \] - -Execute(The -x option should not be added when the version is too old): - GivenCommandOutput [ - \ 'ShellCheck - shell script analysis tool', - \ 'version: 0.3.9', - \ 'license: GNU General Public License, version 3', - \ 'website: http://www.shellcheck.net', - \] - AssertLinter 'shellcheck', [ - \ ale#Escape('shellcheck') . ' --version', - \ ale#Escape('shellcheck') . b:suffix, - \] - -Execute(The version check shouldn't be run again for old versions): - GivenCommandOutput [ - \ 'ShellCheck - shell script analysis tool', - \ 'version: 0.3.9', - \ 'license: GNU General Public License, version 3', - \ 'website: http://www.shellcheck.net', - \] - AssertLinter 'shellcheck', [ - \ ale#Escape('shellcheck') . ' --version', - \ ale#Escape('shellcheck') . b:suffix, - \] - AssertLinter 'shellcheck', [ - \ ale#Escape('shellcheck') . b:suffix, - \] |