2018-09-26 14:50:43 +00:00
|
|
|
Before:
|
|
|
|
call ale#assert#SetUpLinterTest('objc', 'ccls')
|
|
|
|
|
2020-04-18 11:15:32 +00:00
|
|
|
Save b:ale_c_build_dir_names
|
|
|
|
Save b:ale_objc_ccls_executable
|
|
|
|
Save b:ale_objc_ccls_init_options
|
|
|
|
|
2018-09-26 14:50:43 +00:00
|
|
|
After:
|
|
|
|
call ale#assert#TearDownLinterTest()
|
|
|
|
|
|
|
|
Execute(The project root should be detected correctly using compile_commands.json file):
|
2019-05-20 19:06:44 +00:00
|
|
|
call ale#test#SetFilename(tempname() . '/dummy.m')
|
|
|
|
|
2018-09-26 14:50:43 +00:00
|
|
|
AssertLSPProject ''
|
|
|
|
|
2021-03-20 22:11:22 +00:00
|
|
|
call ale#test#SetFilename('../test-files/ccls/with_compile_commands_json/dummy.m')
|
2018-09-26 14:50:43 +00:00
|
|
|
|
2021-03-20 22:11:22 +00:00
|
|
|
AssertLSPProject ale#path#Simplify(g:dir . '/../test-files/ccls/with_compile_commands_json')
|
2018-09-26 14:50:43 +00:00
|
|
|
|
|
|
|
Execute(The project root should be detected correctly using .ccls file):
|
2019-05-20 19:06:44 +00:00
|
|
|
call ale#test#SetFilename(tempname() . '/dummy.m')
|
|
|
|
|
2018-09-26 14:50:43 +00:00
|
|
|
AssertLSPProject ''
|
|
|
|
|
2021-03-20 22:11:22 +00:00
|
|
|
call ale#test#SetFilename('../test-files/ccls/with_ccls/dummy.m')
|
2018-09-26 14:50:43 +00:00
|
|
|
|
2021-03-20 22:11:22 +00:00
|
|
|
AssertLSPProject ale#path#Simplify(g:dir . '/../test-files/ccls/with_ccls')
|
2018-09-26 14:50:43 +00:00
|
|
|
|
|
|
|
Execute(The project root should be detected correctly using .ccls-root file):
|
2019-05-20 19:06:44 +00:00
|
|
|
call ale#test#SetFilename(tempname() . '/dummy.m')
|
|
|
|
|
2018-09-26 14:50:43 +00:00
|
|
|
AssertLSPProject ''
|
|
|
|
|
2021-03-20 22:11:22 +00:00
|
|
|
call ale#test#SetFilename('../test-files/ccls/with_ccls-root/dummy.m')
|
2018-09-26 14:50:43 +00:00
|
|
|
|
2021-03-20 22:11:22 +00:00
|
|
|
AssertLSPProject ale#path#Simplify(g:dir . '/../test-files/ccls/with_ccls-root')
|
2018-09-26 14:50:43 +00:00
|
|
|
|
|
|
|
Execute(The executable should be configurable):
|
|
|
|
AssertLinter 'ccls', ale#Escape('ccls')
|
|
|
|
|
|
|
|
let b:ale_objc_ccls_executable = 'foobar'
|
|
|
|
|
|
|
|
AssertLinter 'foobar', ale#Escape('foobar')
|
|
|
|
|
|
|
|
Execute(The initialization options should be configurable):
|
|
|
|
AssertLSPOptions {}
|
|
|
|
|
|
|
|
let b:ale_objc_ccls_init_options = { 'cacheDirectory': '/tmp/ccls' }
|
|
|
|
|
|
|
|
AssertLSPOptions { 'cacheDirectory': '/tmp/ccls' }
|
2020-04-18 11:15:32 +00:00
|
|
|
|
|
|
|
Execute(The compile command database should be detected correctly):
|
2021-03-20 22:11:22 +00:00
|
|
|
call ale#test#SetFilename('../test-files/ccls/with_ccls/dummy.c')
|
2020-04-18 11:15:32 +00:00
|
|
|
|
|
|
|
AssertLSPOptions {}
|
|
|
|
|
2021-03-20 22:11:22 +00:00
|
|
|
call ale#test#SetFilename('../test-files/ccls/with_compile_commands_json/dummy.c')
|
2020-04-18 11:15:32 +00:00
|
|
|
|
|
|
|
AssertLSPOptions { 'compilationDatabaseDirectory':
|
2021-03-20 22:11:22 +00:00
|
|
|
\ ale#path#Simplify(g:dir . '/../test-files/ccls/with_compile_commands_json') }
|
2020-04-18 11:15:32 +00:00
|
|
|
|
2021-03-20 22:11:22 +00:00
|
|
|
call ale#test#SetFilename('../test-files/ccls/with_build_dir/dummy.c')
|
2020-04-18 11:15:32 +00:00
|
|
|
let b:ale_c_build_dir_names = ['unusual_build_dir_name']
|
|
|
|
|
|
|
|
AssertLSPOptions { 'compilationDatabaseDirectory':
|
2021-03-20 22:11:22 +00:00
|
|
|
\ ale#path#Simplify(g:dir . '/../test-files/ccls/with_build_dir/unusual_build_dir_name') }
|