summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMurfalo <howdy@murfalo.com>2019-10-09 13:40:04 -0400
committerMurfalo <howdy@murfalo.com>2019-10-09 13:40:04 -0400
commita62f26434ac68eaddea7642201ddf0335e91d384 (patch)
tree11d2744355a7f1ff1ab15316a765661df3509e4a
parent35f51221f1519c591a6d26a8d8acd12388deab50 (diff)
downloadale-a62f26434ac68eaddea7642201ddf0335e91d384.zip
Added tests for clangd compile commands dectection
-rw-r--r--ale_linters/c/clangd.vim1
-rw-r--r--ale_linters/cpp/clangd.vim1
-rw-r--r--test/command_callback/clangd_paths/with_build_dir/unusual_build_dir_name/compile_commands.json (renamed from test/command_callback/clangd_paths/compile_commands.json)0
-rw-r--r--test/command_callback/clangd_paths/with_compile_commands/compile_commands.json0
-rw-r--r--test/command_callback/test_c_clangd_command_callbacks.vader16
5 files changed, 16 insertions, 2 deletions
diff --git a/ale_linters/c/clangd.vim b/ale_linters/c/clangd.vim
index 5ca30973..c42d4497 100644
--- a/ale_linters/c/clangd.vim
+++ b/ale_linters/c/clangd.vim
@@ -3,6 +3,7 @@
call ale#Set('c_clangd_executable', 'clangd')
call ale#Set('c_clangd_options', '')
+call ale#Set('c_build_dir', '')
function! ale_linters#c#clangd#GetCommand(buffer) abort
let l:build_dir = ale#c#GetBuildDirectory(a:buffer)
diff --git a/ale_linters/cpp/clangd.vim b/ale_linters/cpp/clangd.vim
index 8b7f0284..14f3fe55 100644
--- a/ale_linters/cpp/clangd.vim
+++ b/ale_linters/cpp/clangd.vim
@@ -3,6 +3,7 @@
call ale#Set('cpp_clangd_executable', 'clangd')
call ale#Set('cpp_clangd_options', '')
+call ale#Set('c_build_dir', '')
function! ale_linters#cpp#clangd#GetCommand(buffer) abort
let l:build_dir = ale#c#GetBuildDirectory(a:buffer)
diff --git a/test/command_callback/clangd_paths/compile_commands.json b/test/command_callback/clangd_paths/with_build_dir/unusual_build_dir_name/compile_commands.json
index e69de29b..e69de29b 100644
--- a/test/command_callback/clangd_paths/compile_commands.json
+++ b/test/command_callback/clangd_paths/with_build_dir/unusual_build_dir_name/compile_commands.json
diff --git a/test/command_callback/clangd_paths/with_compile_commands/compile_commands.json b/test/command_callback/clangd_paths/with_compile_commands/compile_commands.json
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/test/command_callback/clangd_paths/with_compile_commands/compile_commands.json
diff --git a/test/command_callback/test_c_clangd_command_callbacks.vader b/test/command_callback/test_c_clangd_command_callbacks.vader
index dc52097d..67f801db 100644
--- a/test/command_callback/test_c_clangd_command_callbacks.vader
+++ b/test/command_callback/test_c_clangd_command_callbacks.vader
@@ -18,9 +18,9 @@ Execute(The project root should be detected correctly):
AssertLSPProject ''
- call ale#test#SetFilename('clangd_paths/dummy.c')
+ call ale#test#SetFilename('clangd_paths/with_compile_commands/dummy.c')
- AssertLSPProject ale#path#Simplify(g:dir . '/clangd_paths')
+ AssertLSPProject ale#path#Simplify(g:dir . '/clangd_paths/with_compile_commands')
Execute(The executable should be configurable):
let g:ale_c_clangd_executable = 'foobar'
@@ -32,3 +32,15 @@ Execute(The options should be configurable):
AssertLinter 'clangd', ale#Escape('clangd') . ' ' . b:ale_c_clangd_options
+Execute(The compile command database should be detected correctly):
+ call ale#test#SetFilename('clangd_paths/with_build_dir/dummy_src/dummy.c')
+
+ let b:ale_c_clangd_options = ''
+ let b:ale_c_build_dir = ''
+ let b:ale_c_build_dir_names = ['unusual_build_dir_name']
+ let b:ale_c_parse_compile_commands = 1
+
+ AssertLinter 'clangd', ale#Escape('clangd')
+ \ . ' -compile-commands-dir='
+ \ . ale#Escape(g:dir . '/clangd_paths/with_build_dir/unusual_build_dir_name')
+