summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPeter Renström <renstrom.peter@gmail.com>2017-08-24 23:49:43 +0200
committerw0rp <w0rp@users.noreply.github.com>2017-08-24 22:49:43 +0100
commit4bea50b82f53a351d218cc3af120b460b9d1639f (patch)
treec14ac460c270d0415fea5fa6ec2988ee4cbbf76e /test
parent623fdf212cd70131df4d3c52de26d9d1faa5d90e (diff)
downloadale-4bea50b82f53a351d218cc3af120b460b9d1639f.zip
Add clang-format fixer for C/C++ (#873)
* Add clang-format fixer for C/C++ * Document clang-format options * Refer ale-cpp-clangformat to ale-c-clangformat
Diffstat (limited to 'test')
-rw-r--r--test/command_callback/c_paths/dummy.c0
-rw-r--r--test/fixers/test_clangformat_fixer_callback.vader36
2 files changed, 36 insertions, 0 deletions
diff --git a/test/command_callback/c_paths/dummy.c b/test/command_callback/c_paths/dummy.c
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/test/command_callback/c_paths/dummy.c
diff --git a/test/fixers/test_clangformat_fixer_callback.vader b/test/fixers/test_clangformat_fixer_callback.vader
new file mode 100644
index 00000000..a55576bf
--- /dev/null
+++ b/test/fixers/test_clangformat_fixer_callback.vader
@@ -0,0 +1,36 @@
+Before:
+ Save g:ale_c_clangformat_executable
+
+ " Use an invalid global executable, so we don't match it.
+ let g:ale_c_clangformat_executable = 'xxxinvalid'
+
+ call ale#test#SetDirectory('/testplugin/test/fixers')
+ silent cd ..
+ silent cd command_callback
+ let g:dir = getcwd()
+
+After:
+ Restore
+
+ call ale#test#RestoreDirectory()
+
+Execute(The clang-format callback should return the correct default values):
+ call ale#test#SetFilename('c_paths/dummy.c')
+
+ AssertEqual
+ \ {
+ \ 'command': ale#Escape(g:ale_c_clangformat_executable)
+ \ . ' '
+ \ },
+ \ ale#fixers#clangformat#Fix(bufnr(''))
+
+Execute(The clangformat callback should include any additional options):
+ call ale#test#SetFilename('c_paths/dummy.c')
+ let g:ale_c_clangformat_options = '--some-option'
+
+ AssertEqual
+ \ {
+ \ 'command': ale#Escape(g:ale_c_clangformat_executable)
+ \ . ' --some-option',
+ \ },
+ \ ale#fixers#clangformat#Fix(bufnr(''))