diff options
author | Benjamin Bannier <bbannier@users.noreply.github.com> | 2021-10-24 14:05:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-24 21:05:55 +0900 |
commit | 92f08b5af2f6316312c95c5160c6e02b76370e04 (patch) | |
tree | 163d813a814215fc8fe5830b24f77bd211016dc3 /test | |
parent | da331acc9e1662e61fb7b829a3f928530fc8e52b (diff) | |
download | ale-92f08b5af2f6316312c95c5160c6e02b76370e04.zip |
Add support for zeek (#3952)
Diffstat (limited to 'test')
-rw-r--r-- | test/handler/test_zeek_handler.vader | 17 | ||||
-rw-r--r-- | test/linter/test_zeek.vader | 17 |
2 files changed, 34 insertions, 0 deletions
diff --git a/test/handler/test_zeek_handler.vader b/test/handler/test_zeek_handler.vader new file mode 100644 index 00000000..07a80d86 --- /dev/null +++ b/test/handler/test_zeek_handler.vader @@ -0,0 +1,17 @@ +Before: + runtime ale_linters/zeek/zeek.vim + +After: + call ale#linter#Reset() + +Execute(The zeek handler should parse input correctly): + AssertEqual + \ [ + \ { + \ 'lnum': 2, + \ 'text': 'unknown identifier bar, at or near "bar"' + \ }, + \ ], + \ ale_linters#zeek#zeek#HandleErrors(bufnr(''), [ + \ 'error in /tmp/foo.zeek, line 2: unknown identifier bar, at or near "bar"' + \ ]) diff --git a/test/linter/test_zeek.vader b/test/linter/test_zeek.vader new file mode 100644 index 00000000..af58a414 --- /dev/null +++ b/test/linter/test_zeek.vader @@ -0,0 +1,17 @@ +Before: + call ale#assert#SetUpLinterTest('zeek', 'zeek') + + let b:command_tail = ' --parse-only %s' + +After: + call ale#assert#TearDownLinterTest() + + unlet! b:command_tail + +Execute(The default command should be correct): + AssertLinter 'zeek', ale#Escape('zeek') . b:command_tail + +Execute(The zeek executable should be configurable, and escaped properly): + let g:ale_zeek_zeek_executable = 'executable with spaces' + + AssertLinter 'executable with spaces', ale#Escape('executable with spaces') . b:command_tail |