2017-08-24 21:49:43 +00:00
|
|
|
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)
|
2019-07-15 19:26:16 +00:00
|
|
|
\ . ' --assume-filename=' . ale#Escape(bufname(bufnr('')))
|
2017-08-24 21:49:43 +00:00
|
|
|
\ },
|
|
|
|
\ 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)
|
2019-07-15 19:26:16 +00:00
|
|
|
\ . ' --assume-filename=' . ale#Escape(bufname(bufnr('')))
|
2017-08-24 21:49:43 +00:00
|
|
|
\ . ' --some-option',
|
|
|
|
\ },
|
|
|
|
\ ale#fixers#clangformat#Fix(bufnr(''))
|