diff options
author | yohei yoshimuta <yoheimuta@gmail.com> | 2021-04-09 22:16:23 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-09 22:16:23 +0900 |
commit | cec9954d016e4d388cd6a9abed798de7f330d185 (patch) | |
tree | c060a1b598d161da466c6ef78f4442b44a6f1bc3 /test | |
parent | f0887d3e6178482255f11aa378124aef3699245f (diff) | |
download | ale-cec9954d016e4d388cd6a9abed798de7f330d185.zip |
feat: Add protolint as linter and fixer (#2911)
Diffstat (limited to 'test')
-rw-r--r-- | test/command_callback/test_protolint_command_callback.vader | 24 | ||||
-rw-r--r-- | test/fixers/test_protolint_fixer_callback.vader | 28 |
2 files changed, 52 insertions, 0 deletions
diff --git a/test/command_callback/test_protolint_command_callback.vader b/test/command_callback/test_protolint_command_callback.vader new file mode 100644 index 00000000..4463b629 --- /dev/null +++ b/test/command_callback/test_protolint_command_callback.vader @@ -0,0 +1,24 @@ +Before: + call ale#assert#SetUpLinterTest('proto', 'protolint') + call ale#test#SetFilename('test.proto') + +After: + call ale#assert#TearDownLinterTest() + +Execute(The default command should be correct): + AssertLinter 'protolint', + \ ale#Escape('protolint') + \ . ' lint' + \ . ' -reporter=unix' + \ . ' %s' + +Execute(The callback should include any additional options): + let b:ale_proto_protolint_executable = '/tmp/protolint' + let b:ale_proto_protolint_config = '/tmp/protolint.yaml' + + AssertLinter '/tmp/protolint', + \ ale#Escape('/tmp/protolint') + \ . ' lint' + \ . ' -config_path=' . ale#Escape('/tmp/protolint.yaml') + \ . ' -reporter=unix' + \ . ' %s' diff --git a/test/fixers/test_protolint_fixer_callback.vader b/test/fixers/test_protolint_fixer_callback.vader new file mode 100644 index 00000000..5a6931d7 --- /dev/null +++ b/test/fixers/test_protolint_fixer_callback.vader @@ -0,0 +1,28 @@ +Before: + call ale#assert#SetUpFixerTest('proto', 'protolint') + call ale#test#SetFilename('test.proto') + +After: + call ale#assert#TearDownFixerTest() + +Execute(The default command should be correct): + AssertFixer + \ { + \ 'command': ale#Escape('protolint') + \ . ' -fix' + \ . ' %t', + \ 'read_temporary_file': 1, + \ } + +Execute(The callback should include any additional options): + let b:ale_proto_protolint_executable = '/tmp/protolint' + let b:ale_proto_protolint_config = '/tmp/protolint.yaml' + + AssertFixer + \ { + \ 'command': ale#Escape('/tmp/protolint') + \ . ' -config_path=' . ale#Escape('/tmp/protolint.yaml') + \ . ' -fix' + \ . ' %t', + \ 'read_temporary_file': 1, + \ } |