This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
ale/test/command_callback/test_objc_ccls_command_callbacks.vader

47 lines
1.4 KiB
Text
Raw Normal View History

2018-09-26 14:50:43 +00:00
Before:
call ale#assert#SetUpLinterTest('objc', 'ccls')
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 ''
call ale#test#SetFilename('ccls_paths/with_compile_commands_json/dummy.m')
AssertLSPProject ale#path#Simplify(g:dir . '/ccls_paths/with_compile_commands_json')
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 ''
call ale#test#SetFilename('ccls_paths/with_ccls/dummy.m')
AssertLSPProject ale#path#Simplify(g:dir . '/ccls_paths/with_ccls')
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 ''
call ale#test#SetFilename('ccls_paths/with_ccls-root/dummy.m')
AssertLSPProject ale#path#Simplify(g:dir . '/ccls_paths/with_ccls-root')
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' }