2020-07-10 22:26:15 +00:00
|
|
|
Before:
|
|
|
|
Save g:ale_c_astyle_executable
|
2020-07-28 23:48:27 +00:00
|
|
|
Save g:ale_c_astyle_project_options
|
2020-07-29 03:29:19 +00:00
|
|
|
Save g:ale_cpp_astyle_project_options
|
2020-07-10 22:26:15 +00:00
|
|
|
|
|
|
|
" Use an invalid global executable, so we don't match it.
|
|
|
|
let g:ale_c_astyle_executable = 'xxxinvalid'
|
2020-07-27 00:51:41 +00:00
|
|
|
let g:ale_cpp_astyle_executable = 'invalidpp'
|
2020-07-29 03:29:19 +00:00
|
|
|
let g:ale_c_astyle_project_options = ''
|
|
|
|
let g:ale_cpp_astyle_project_options = ''
|
2020-07-28 23:48:27 +00:00
|
|
|
|
2020-07-10 22:26:15 +00:00
|
|
|
call ale#test#SetDirectory('/testplugin/test/fixers')
|
|
|
|
|
|
|
|
After:
|
|
|
|
Restore
|
|
|
|
|
|
|
|
call ale#test#RestoreDirectory()
|
|
|
|
|
|
|
|
Execute(The astyle callback should return the correct default values):
|
2020-07-29 03:29:19 +00:00
|
|
|
" Because this file doesn't exist, no astylrc config
|
|
|
|
" exists near it. Therefore, project_options is empty.
|
2020-07-10 22:26:15 +00:00
|
|
|
call ale#test#SetFilename('../c_files/testfile.c')
|
2020-07-30 13:29:33 +00:00
|
|
|
let targetfile = bufname(bufnr('%'))
|
2020-07-10 22:26:15 +00:00
|
|
|
|
|
|
|
AssertEqual
|
|
|
|
\ {
|
2020-07-27 00:51:41 +00:00
|
|
|
\ 'command': ale#Escape(g:ale_c_astyle_executable)
|
2020-07-30 13:29:33 +00:00
|
|
|
\ . ' --stdin=' . ale#Escape(targetfile)
|
2020-07-10 22:26:15 +00:00
|
|
|
\ },
|
|
|
|
\ ale#fixers#astyle#Fix(bufnr(''))
|
2020-07-26 01:25:11 +00:00
|
|
|
|
|
|
|
Execute(The astyle callback should support cpp files):
|
2020-07-29 03:29:19 +00:00
|
|
|
" Because this file doesn't exist, no astylrc config
|
|
|
|
" exists near it. Therefore, project_options is empty.
|
2020-07-26 01:25:11 +00:00
|
|
|
call ale#test#SetFilename('../cpp_files/dummy.cpp')
|
|
|
|
set filetype=cpp " The test fails without this
|
2020-07-30 13:29:33 +00:00
|
|
|
let targetfile = bufname(bufnr('%'))
|
2020-07-26 01:25:11 +00:00
|
|
|
|
|
|
|
AssertEqual
|
|
|
|
\ {
|
2020-07-27 00:51:41 +00:00
|
|
|
\ 'command': ale#Escape(g:ale_cpp_astyle_executable)
|
2020-07-30 13:29:33 +00:00
|
|
|
\ . ' --stdin=' . ale#Escape(targetfile)
|
2020-07-26 01:25:11 +00:00
|
|
|
\ },
|
|
|
|
\ ale#fixers#astyle#Fix(bufnr(''))
|
2020-07-27 00:51:41 +00:00
|
|
|
|
2020-07-27 01:11:37 +00:00
|
|
|
Execute(The astyle callback should support cpp files with option file set):
|
|
|
|
call ale#test#SetFilename('../cpp_files/dummy.cpp')
|
2020-07-28 23:48:27 +00:00
|
|
|
let g:ale_cpp_astyle_project_options = '.astylerc_cpp'
|
2020-07-30 13:29:33 +00:00
|
|
|
let targetfile = bufname(bufnr('%'))
|
2020-07-27 01:11:37 +00:00
|
|
|
set filetype=cpp " The test fails without this
|
|
|
|
|
|
|
|
AssertEqual
|
|
|
|
\ {
|
|
|
|
\ 'command': ale#Escape('invalidpp')
|
2020-07-28 23:48:27 +00:00
|
|
|
\ . ' --project=' . g:ale_cpp_astyle_project_options
|
2020-07-30 13:29:33 +00:00
|
|
|
\ . ' --stdin=' . ale#Escape(targetfile)
|
2020-07-27 01:11:37 +00:00
|
|
|
\ },
|
|
|
|
\ ale#fixers#astyle#Fix(bufnr(''))
|
|
|
|
|
2020-07-31 01:54:41 +00:00
|
|
|
Execute(The astyle callback should return the correct default values with a specified option file):
|
2020-07-27 01:11:37 +00:00
|
|
|
call ale#test#SetFilename('../c_files/testfile.c')
|
2020-07-29 03:28:25 +00:00
|
|
|
let g:ale_c_astyle_project_options = '.astylerc_c'
|
2020-07-30 13:29:33 +00:00
|
|
|
let targetfile = bufname(bufnr('%'))
|
2020-07-27 01:11:37 +00:00
|
|
|
|
|
|
|
AssertEqual
|
|
|
|
\ {
|
|
|
|
\ 'command': ale#Escape('xxxinvalid')
|
2020-07-28 23:48:27 +00:00
|
|
|
\ . ' --project=' . g:ale_c_astyle_project_options
|
2020-07-30 13:29:33 +00:00
|
|
|
\ . ' --stdin=' . ale#Escape(targetfile)
|
2020-07-27 01:11:37 +00:00
|
|
|
\ },
|
|
|
|
\ ale#fixers#astyle#Fix(bufnr(''))
|
2020-07-29 05:36:45 +00:00
|
|
|
|
|
|
|
Execute(The astyle callback should find nearest default option file _astylrc):
|
2021-03-20 22:11:22 +00:00
|
|
|
call ale#test#SetFilename('../test-files/c/makefile_project/subdir/file.c')
|
2020-07-30 13:29:33 +00:00
|
|
|
let targetfile = bufname(bufnr('%'))
|
2020-07-29 05:36:45 +00:00
|
|
|
|
|
|
|
AssertEqual
|
|
|
|
\ {
|
|
|
|
\ 'command': ale#Escape('xxxinvalid')
|
|
|
|
\ . ' --project=_astylerc'
|
2020-07-30 13:29:33 +00:00
|
|
|
\ . ' --stdin=' . ale#Escape(targetfile)
|
2020-07-29 05:36:45 +00:00
|
|
|
\ },
|
|
|
|
\ ale#fixers#astyle#Fix(bufnr(''))
|
2020-07-30 13:43:41 +00:00
|
|
|
|
|
|
|
Execute(The astyle callback should find .astylrc in the same directory as src):
|
2021-03-20 22:11:22 +00:00
|
|
|
call ale#test#SetFilename('../test-files/cpp/dummy.cpp')
|
2020-07-30 13:43:41 +00:00
|
|
|
set filetype=cpp " The test fails without this
|
|
|
|
let targetfile = bufname(bufnr('%'))
|
|
|
|
|
|
|
|
AssertEqual
|
|
|
|
\ {
|
|
|
|
\ 'command': ale#Escape('invalidpp')
|
|
|
|
\ . ' --project=.astylerc'
|
|
|
|
\ . ' --stdin=' . ale#Escape(targetfile)
|
|
|
|
\ },
|
|
|
|
\ ale#fixers#astyle#Fix(bufnr(''))
|