summaryrefslogtreecommitdiff
path: root/test/command_callback/test_phpstan_command_callbacks.vader
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-08-21 18:42:18 +0100
committerw0rp <devw0rp@gmail.com>2017-08-21 18:42:18 +0100
commita3299bf03a405207347d8d06c28b65af1e0a5092 (patch)
tree67f072993f1e549589797d64a4b4974cc0002044 /test/command_callback/test_phpstan_command_callbacks.vader
parentcc02eb8a5a0e40e23ae5e3cc2a4e92f0353d30b5 (diff)
downloadale-a3299bf03a405207347d8d06c28b65af1e0a5092.zip
Fix #864 - Use the user's configured executable for phpstan for executable() checks
Diffstat (limited to 'test/command_callback/test_phpstan_command_callbacks.vader')
-rw-r--r--test/command_callback/test_phpstan_command_callbacks.vader29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/command_callback/test_phpstan_command_callbacks.vader b/test/command_callback/test_phpstan_command_callbacks.vader
new file mode 100644
index 00000000..7366df8b
--- /dev/null
+++ b/test/command_callback/test_phpstan_command_callbacks.vader
@@ -0,0 +1,29 @@
+Before:
+ Save g:ale_php_phpstan_executable
+ Save g:ale_php_phpstan_level
+
+ unlet! g:ale_php_phpstan_executable
+ unlet! g:ale_php_phpstan_level
+
+ runtime ale_linters/php/phpstan.vim
+
+After:
+ Restore
+
+ call ale#linter#Reset()
+
+Execute(Custom executables should be used for the executable and command):
+ let g:ale_php_phpstan_executable = 'phpstan_test'
+
+ AssertEqual 'phpstan_test', ale_linters#php#phpstan#GetExecutable(bufnr(''))
+ AssertEqual
+ \ ale#Escape('phpstan_test') . ' analyze -l4 --errorFormat raw %s',
+ \ ale_linters#php#phpstan#GetCommand(bufnr(''))
+
+Execute(project with level set to 3):
+ call ale#test#SetFilename('phpstan-test-files/foo/test.php')
+ let g:ale_php_phpstan_level = 3
+
+ AssertEqual
+ \ ale#Escape('phpstan') . ' analyze -l3 --errorFormat raw %s',
+ \ ale_linters#php#phpstan#GetCommand(bufnr(''))