summaryrefslogtreecommitdiff
path: root/test/fixers/test_astyle_fixer_callback.vader
diff options
context:
space:
mode:
authorjhlink <jhlink@users.noreply.github.com>2020-07-26 21:11:37 -0400
committerjhlink <jhlink@users.noreply.github.com>2020-07-26 21:11:37 -0400
commit78295024e1ecb01990eb87c702e0c8565865e898 (patch)
treec746c2bb6ded3fc3dff4df0aff380f9714e0a7d3 /test/fixers/test_astyle_fixer_callback.vader
parentb25bb64a4d31a343ec210c01146791a5acd3bb99 (diff)
downloadale-78295024e1ecb01990eb87c702e0c8565865e898.zip
feat: Add project option file support for astyle
Diffstat (limited to 'test/fixers/test_astyle_fixer_callback.vader')
-rw-r--r--test/fixers/test_astyle_fixer_callback.vader28
1 files changed, 28 insertions, 0 deletions
diff --git a/test/fixers/test_astyle_fixer_callback.vader b/test/fixers/test_astyle_fixer_callback.vader
index fc481d95..2cbbcacd 100644
--- a/test/fixers/test_astyle_fixer_callback.vader
+++ b/test/fixers/test_astyle_fixer_callback.vader
@@ -1,5 +1,6 @@
Before:
Save g:ale_c_astyle_executable
+ Save g:ale_c_astyle_options
" Use an invalid global executable, so we don't match it.
let g:ale_c_astyle_executable = 'xxxinvalid'
@@ -35,3 +36,30 @@ Execute(The astyle callback should support cpp files):
\ },
\ ale#fixers#astyle#Fix(bufnr(''))
+Execute(The astyle callback should support cpp files with option file set):
+ call ale#test#SetFilename('../cpp_files/dummy.cpp')
+ let g:ale_cpp_astyle_options = '.astylerc_cpp'
+ let targetfile = '/testplugin/test/cpp_files/dummy.cpp'
+ set filetype=cpp " The test fails without this
+
+ AssertEqual
+ \ {
+ \ 'command': ale#Escape('invalidpp')
+ \ . ' --stdin=' . ale#Escape(targetfile)
+ \ . ' --project=' . g:ale_cpp_astyle_options
+ \ },
+ \ ale#fixers#astyle#Fix(bufnr(''))
+
+
+Execute(The astyle callback should return the correct default values with an option file set):
+ call ale#test#SetFilename('../c_files/testfile.c')
+ let targetfile = '/testplugin/test/c_files/testfile.c'
+ let g:ale_c_astyle_options = '.astylerc'
+
+ AssertEqual
+ \ {
+ \ 'command': ale#Escape('xxxinvalid')
+ \ . ' --stdin=' . ale#Escape(targetfile)
+ \ . ' --project=' . g:ale_c_astyle_options
+ \ },
+ \ ale#fixers#astyle#Fix(bufnr(''))