summaryrefslogtreecommitdiff
path: root/test/test_jsonlint_executable_detection.vader
diff options
context:
space:
mode:
authordavidsierradz <davidsierradz@gmail.com>2019-03-15 16:21:48 -0500
committerdavidsierradz <davidsierradz@gmail.com>2019-03-15 16:21:48 -0500
commitdfff73795a8ab4f8eeb31e0165cb9b63af3c8cf2 (patch)
tree67c2743e7a5949e0b73bc4b1c36918dcb0d22072 /test/test_jsonlint_executable_detection.vader
parent80ef7ea2d0b22f0d8de7387a3d5bf6e9e5b72e9d (diff)
downloadale-dfff73795a8ab4f8eeb31e0165cb9b63af3c8cf2.zip
support jsonlint local executable
Diffstat (limited to 'test/test_jsonlint_executable_detection.vader')
-rw-r--r--test/test_jsonlint_executable_detection.vader46
1 files changed, 46 insertions, 0 deletions
diff --git a/test/test_jsonlint_executable_detection.vader b/test/test_jsonlint_executable_detection.vader
new file mode 100644
index 00000000..bd391b47
--- /dev/null
+++ b/test/test_jsonlint_executable_detection.vader
@@ -0,0 +1,46 @@
+Before:
+ call ale#test#SetDirectory('/testplugin/test')
+
+ runtime ale_linters/json/jsonlint.vim
+
+After:
+ let g:ale_has_override = {}
+ let g:ale_json_jsonlint_executable = 'jsonlint'
+ let g:ale_json_jsonlint_use_global = 0
+
+ call ale#test#RestoreDirectory()
+ call ale#linter#Reset()
+
+Execute(local executable should be detected correctly):
+ call ale#test#SetFilename('jsonlint-test-files/app/src/app.json')
+
+ AssertEqual
+ \ ale#path#Simplify(g:dir . '/jsonlint-test-files/app/node_modules/.bin/jsonlint'),
+ \ ale_linters#json#jsonlint#GetExecutable(bufnr(''))
+
+Execute(recursively executable should be detected correctly):
+ call ale#test#SetFilename('jsonlint-test-files/app-without-jsonlint/src/app.json')
+
+ AssertEqual
+ \ ale#path#Simplify(g:dir . '/jsonlint-test-files/node_modules/jsonlint/lib/cli.js'),
+ \ ale_linters#json#jsonlint#GetExecutable(bufnr(''))
+
+Execute(use_global should override project executable):
+ let g:ale_json_jsonlint_use_global = 1
+
+ call ale#test#SetFilename('jsonlint-test-files/app/src/app.json')
+
+ AssertEqual
+ \ 'jsonlint',
+ \ ale_linters#json#jsonlint#GetExecutable(bufnr(''))
+
+Execute(manually defined should override default executable):
+ let g:ale_json_jsonlint_use_global = 1
+ let g:ale_json_jsonlint_executable = 'custom_jsonlint'
+
+ call ale#test#SetFilename('jsonlint-test-files/app/src/app.json')
+
+ AssertEqual
+ \ 'custom_jsonlint',
+ \ ale_linters#json#jsonlint#GetExecutable(bufnr(''))
+