2018-06-06 16:03:15 +00:00
|
|
|
" Author: Ben Falconer <ben@falconers.me.uk>
|
|
|
|
" Description: A language server for C++
|
|
|
|
|
|
|
|
Before:
|
2018-07-15 17:24:53 +00:00
|
|
|
call ale#assert#SetUpLinterTest('cpp', 'cquery')
|
2018-06-06 16:03:15 +00:00
|
|
|
|
|
|
|
After:
|
2018-07-15 17:24:53 +00:00
|
|
|
call ale#assert#TearDownLinterTest()
|
2018-06-06 16:03:15 +00:00
|
|
|
|
2018-08-09 03:02:16 +00:00
|
|
|
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.cpp')
|
|
|
|
|
2018-08-09 03:02:16 +00:00
|
|
|
AssertLSPProject ''
|
|
|
|
|
2019-05-20 18:57:08 +00:00
|
|
|
call ale#test#SetFilename('cquery_paths/dummy.cpp')
|
2018-08-09 03:02:16 +00:00
|
|
|
|
2019-05-20 18:57:08 +00:00
|
|
|
AssertLSPProject ale#path#Simplify(g:dir . '/cquery_paths')
|
2018-08-09 03:02:16 +00:00
|
|
|
|
|
|
|
Execute(The project root should be detected correctly using .cquery file):
|
2019-05-20 19:06:44 +00:00
|
|
|
call ale#test#SetFilename(tempname() . '/dummy.cpp')
|
|
|
|
|
2018-08-09 03:02:16 +00:00
|
|
|
AssertLSPProject ''
|
|
|
|
|
|
|
|
call ale#test#SetFilename('cquery_paths/with_cquery/dummy.cpp')
|
|
|
|
|
|
|
|
AssertLSPProject ale#path#Simplify(g:dir . '/cquery_paths/with_cquery')
|
|
|
|
|
2018-06-06 16:03:15 +00:00
|
|
|
Execute(The executable should be configurable):
|
2018-07-15 17:24:53 +00:00
|
|
|
AssertLinter 'cquery', ale#Escape('cquery')
|
2018-06-06 16:03:15 +00:00
|
|
|
|
|
|
|
let b:ale_cpp_cquery_executable = 'foobar'
|
|
|
|
|
2018-07-15 17:24:53 +00:00
|
|
|
AssertLinter 'foobar', ale#Escape('foobar')
|
2018-06-06 16:03:15 +00:00
|
|
|
|
|
|
|
Execute(The cache directory should be configurable):
|
2018-07-15 17:24:53 +00:00
|
|
|
AssertLSPOptions {'cacheDirectory': expand('$HOME/.cache/cquery')}
|
2018-06-06 16:03:15 +00:00
|
|
|
|
|
|
|
let b:ale_cpp_cquery_cache_directory = '/foo/bar'
|
|
|
|
|
2018-07-15 17:24:53 +00:00
|
|
|
AssertLSPOptions {'cacheDirectory': '/foo/bar'}
|