From 9b4963847d71ea7b53c0bf90a27d4b55fc0696fe Mon Sep 17 00:00:00 2001 From: Andrey Melentyev Date: Sun, 22 Jul 2018 19:30:57 +0200 Subject: Add Clangd language server support for C --- .../test_c_clangd_command_callbacks.vader | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 test/command_callback/test_c_clangd_command_callbacks.vader (limited to 'test/command_callback/test_c_clangd_command_callbacks.vader') diff --git a/test/command_callback/test_c_clangd_command_callbacks.vader b/test/command_callback/test_c_clangd_command_callbacks.vader new file mode 100644 index 00000000..c8c10b67 --- /dev/null +++ b/test/command_callback/test_c_clangd_command_callbacks.vader @@ -0,0 +1,32 @@ +Before: + call ale#assert#SetUpLinterTest('c', 'clangd') + + Save &filetype + let &filetype = 'c' + +After: + call ale#assert#TearDownLinterTest() + +Execute(The language string should be correct): + AssertLSPLanguage 'c' + +Execute(The default executable should be correct): + AssertLinter 'clangd', ale#Escape('clangd') + +Execute(The project root should be detected correctly): + AssertLSPProject '' + + call ale#test#SetFilename('clangd_paths/dummy.c') + + AssertLSPProject ale#path#Simplify(g:dir . '/clangd_paths') + +Execute(The executable should be configurable): + let g:ale_c_clangd_executable = 'foobar' + + AssertLinter 'foobar', ale#Escape('foobar') + +Execute(The options should be configurable): + let b:ale_c_clangd_options = '-compile-commands-dir=foo' + + AssertLinter 'clangd', ale#Escape('clangd') . ' ' . b:ale_c_clangd_options + -- cgit v1.2.3