diff options
author | Michael Phillips <michaeljoelphillips@gmail.com> | 2019-01-19 01:39:06 -0600 |
---|---|---|
committer | Michael Phillips <michaeljoelphillips@gmail.com> | 2019-01-20 19:39:47 -0600 |
commit | bd1e639681a9154315251c63cb704186ed08ce13 (patch) | |
tree | 13f5219c190aee15509de18c30e1a7b2dce08735 /test/fixers | |
parent | d1fc084b2d3af6dd9807a01a6ca7822af6c2a78f (diff) | |
download | ale-bd1e639681a9154315251c63cb704186ed08ce13.zip |
Add ktlint fixer support.
Diffstat (limited to 'test/fixers')
-rw-r--r-- | test/fixers/test_ktlint_fixer_callback.vader | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/test/fixers/test_ktlint_fixer_callback.vader b/test/fixers/test_ktlint_fixer_callback.vader new file mode 100644 index 00000000..47b37788 --- /dev/null +++ b/test/fixers/test_ktlint_fixer_callback.vader @@ -0,0 +1,44 @@ +Before: + Save g:ale_kotlin_ktlint_executable + Save g:ale_kotlin_ktlint_options + Save g:ale_kotlin_ktlint_rulesets + + " Use an invalid global executable, so we don't match it. + let g:ale_kotlin_ktlint_executable = 'xxxinvalid' + let g:ale_kotlin_ktlint_options = '' + let g:ale_kotlin_ktlint_rulesets = [] + + call ale#test#SetDirectory('/testplugin/test/fixers') + +After: + Restore + + call ale#test#RestoreDirectory() + +Execute(The ktlint callback should return the correct default values): + call ale#test#SetFilename('../kotlin_files/testfile.kt') + + AssertEqual + \ { + \ 'command': ale#Escape('xxxinvalid') + \ . ' %t' + \ . ' --format', + \ 'read_temporary_file': 1, + \ }, + \ ale#fixers#ktlint#Fix(bufnr('')) + +Execute(The ktlint callback should include custom ktlint options): + let g:ale_kotlin_ktlint_options = "--android" + let g:ale_kotlin_ktlint_rulesets = ['/path/to/custom/ruleset.jar'] + call ale#test#SetFilename('../kotlin_files/testfile.kt') + + AssertEqual + \ { + \ 'command': ale#Escape('xxxinvalid') + \ . ' ' . g:ale_kotlin_ktlint_options + \ . ' --ruleset /path/to/custom/ruleset.jar' + \ . ' %t' + \ . ' --format', + \ 'read_temporary_file': 1, + \ }, + \ ale#fixers#ktlint#Fix(bufnr('')) |