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_cpp_clazy_command_callback.vader

55 lines
1.8 KiB
Text
Raw Normal View History

2018-08-24 09:52:33 +00:00
Before:
2018-10-28 16:23:02 +00:00
call ale#assert#SetUpLinterTest('cpp', 'clazy')
2018-08-24 09:52:33 +00:00
call ale#test#SetFilename('test.cpp')
After:
call ale#assert#TearDownLinterTest()
2018-10-28 16:23:02 +00:00
Execute(The clazy command default should be correct):
AssertLinter 'clazy-standalone',
\ ale#Escape('clazy-standalone') . ' -checks=' . ale#Escape('level1') . ' %s'
2018-08-24 09:52:33 +00:00
2018-10-28 16:23:02 +00:00
Execute(You should be able to remove the -checks option for clazy-standalone):
let b:ale_cpp_clazy_checks = []
2018-08-24 09:52:33 +00:00
2018-10-28 16:23:02 +00:00
AssertLinter 'clazy-standalone', ale#Escape('clazy-standalone') . ' %s'
2018-08-24 09:52:33 +00:00
2018-10-28 16:23:02 +00:00
Execute(You should be able to set other checks for clazy-standalone):
let b:ale_cpp_clazy_checks = ['level2', 'level3']
2018-08-24 09:52:33 +00:00
2018-10-28 16:23:02 +00:00
AssertLinter 'clazy-standalone',
\ ale#Escape('clazy-standalone')
\ . ' -checks=' . ale#Escape('level2,level3') . ' %s'
2018-08-24 09:52:33 +00:00
2018-10-28 16:23:02 +00:00
Execute(You should be able to manually set compiler flags for clazy-standalone):
let b:ale_cpp_clazy_options = '-qt4-compat'
2018-08-24 09:52:33 +00:00
2018-10-28 16:23:02 +00:00
AssertLinter 'clazy-standalone',
\ ale#Escape('clazy-standalone') . ' -checks=' . ale#Escape('level1') . ' -qt4-compat' . ' %s'
2018-08-24 09:52:33 +00:00
\
Execute(The build directory should be configurable):
let b:ale_c_build_dir = '/foo/bar'
2018-10-28 16:23:02 +00:00
AssertLinter 'clazy-standalone',
\ ale#Escape('clazy-standalone')
\ . ' -checks=' . ale#Escape('level1') . ' -p ' . ale#Escape('/foo/bar') . ' %s'
2018-08-24 09:52:33 +00:00
Execute(The build directory should be ignored for header files):
call ale#test#SetFilename('test.h')
let b:ale_c_build_dir = '/foo/bar'
2018-10-28 16:23:02 +00:00
AssertLinter 'clazy-standalone',
\ ale#Escape('clazy-standalone') . ' -checks=' . ale#Escape('level1') . ' %s'
2018-08-24 09:52:33 +00:00
call ale#test#SetFilename('test.hpp')
2018-10-28 16:23:02 +00:00
AssertLinter 'clazy-standalone',
\ ale#Escape('clazy-standalone') . ' -checks=' . ale#Escape('level1') . ' %s'
2018-08-24 09:52:33 +00:00
Execute(The executable should be configurable):
2018-10-28 16:23:02 +00:00
let b:ale_cpp_clazy_executable = 'foobar'
2018-08-24 09:52:33 +00:00
AssertLinter 'foobar',
2018-10-28 16:23:02 +00:00
\ ale#Escape('foobar') . ' -checks=' . ale#Escape('level1') . ' %s'