From a62f26434ac68eaddea7642201ddf0335e91d384 Mon Sep 17 00:00:00 2001 From: Murfalo Date: Wed, 9 Oct 2019 13:40:04 -0400 Subject: Added tests for clangd compile commands dectection --- test/command_callback/clangd_paths/compile_commands.json | 0 .../unusual_build_dir_name/compile_commands.json | 0 .../with_compile_commands/compile_commands.json | 0 .../test_c_clangd_command_callbacks.vader | 16 ++++++++++++++-- 4 files changed, 14 insertions(+), 2 deletions(-) delete mode 100644 test/command_callback/clangd_paths/compile_commands.json create mode 100644 test/command_callback/clangd_paths/with_build_dir/unusual_build_dir_name/compile_commands.json create mode 100644 test/command_callback/clangd_paths/with_compile_commands/compile_commands.json (limited to 'test/command_callback') diff --git a/test/command_callback/clangd_paths/compile_commands.json b/test/command_callback/clangd_paths/compile_commands.json deleted file mode 100644 index e69de29b..00000000 diff --git a/test/command_callback/clangd_paths/with_build_dir/unusual_build_dir_name/compile_commands.json b/test/command_callback/clangd_paths/with_build_dir/unusual_build_dir_name/compile_commands.json new file mode 100644 index 00000000..e69de29b 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 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') + -- cgit v1.2.3