Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix --file-filter option on cppcheck command #3987

Merged
merged 4 commits into from
Nov 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions autoload/ale/handlers/cppcheck.vim
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,11 @@ function! ale#handlers#cppcheck#GetCompileCommandsOptions(buffer) abort
" If we find it, we'll `cd` to where the compile_commands.json file is,
" then use the file to set up import paths, etc.
let [l:dir, l:json_path] = ale#c#FindCompileCommands(a:buffer)
let b:root_index = len(l:dir) + 1
let b:buffer_file= bufname(a:buffer)

" By default, cppcheck processes every config in compile_commands.json.
" Use --file-filter to limit to just the buffer file.
return !empty(l:json_path)
\ ? '--project=' . ale#Escape(l:json_path[b:root_index: ]) . ' --file-filter=' . ale#Escape(b:buffer_file[b:root_index:])
\ ? '--project=' . ale#Escape(l:json_path[len(l:dir) + 1: ]) . ' --file-filter=' . ale#Escape(bufname(a:buffer))
\ : ''
endfunction

Expand Down
11 changes: 7 additions & 4 deletions test/linter/test_c_cppcheck.vader
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Before:
let b:command_tail = ' -q --language=c --template=' . ale#Escape('{file}:{line}:{column}: {severity}:{inconclusive:inconclusive:} {message} [{id}]\\n{code}') . ' --enable=style -I' . ale#Escape(ale#path#Simplify(g:dir)) .' %t'

After:
unlet! b:rel_file_path
unlet! b:command_tail
call ale#assert#TearDownLinterTest()

Expand All @@ -15,25 +16,27 @@ Execute(The executable should be configurable):
AssertLinter 'foobar', ale#Escape('foobar') . b:command_tail

Execute(cppcheck for C should detect compile_commands.json files):
call ale#test#SetFilename('../test-files/cppcheck/one/foo.c')
let b:rel_file_path = '../test-files/cppcheck/one/foo.c'
call ale#test#SetFilename(b:rel_file_path)

AssertLinterCwd ale#path#Simplify(g:dir . '/../test-files/cppcheck/one')
AssertLinter 'cppcheck', ale#Escape('cppcheck')
\ . ' -q --language=c'
\ . ' --template=' . ale#Escape('{file}:{line}:{column}: {severity}:{inconclusive:inconclusive:} {message} [{id}]\\n{code}')
\ . ' --project=' . ale#Escape('compile_commands.json')
\ . ' --file-filter=' . ale#Escape('foo.c')
\ . ' --file-filter=' . ale#Escape(ale#test#GetFilename(b:rel_file_path))
\ . ' --enable=style %t'

Execute(cppcheck for C should detect compile_commands.json files in build directories):
call ale#test#SetFilename('../test-files/cppcheck/with_build_dir/foo.c')
let b:rel_file_path = '../test-files/cppcheck/with_build_dir/foo.c'
call ale#test#SetFilename(b:rel_file_path)

AssertLinterCwd ale#path#Simplify(g:dir . '/../test-files/cppcheck/with_build_dir')
AssertLinter 'cppcheck', ale#Escape('cppcheck')
\ . ' -q --language=c'
\ . ' --template=' . ale#Escape('{file}:{line}:{column}: {severity}:{inconclusive:inconclusive:} {message} [{id}]\\n{code}')
\ . ' --project=' . ale#Escape(ale#path#Simplify('build/compile_commands.json'))
\ . ' --file-filter=' . ale#Escape('foo.c')
\ . ' --file-filter=' . ale#Escape(ale#test#GetFilename(b:rel_file_path))
\ . ' --enable=style %t'

Execute(cppcheck for C should include file dir if compile_commands.json file is not found):
Expand Down
11 changes: 7 additions & 4 deletions test/linter/test_cpp_cppcheck.vader
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ After:
set buftype=nofile
endif

unlet! b:rel_file_path
unlet! b:command_tail
call ale#assert#TearDownLinterTest()

Expand All @@ -21,25 +22,27 @@ Execute(The executable should be configurable):
AssertLinter 'foobar', ale#Escape('foobar') . b:command_tail

Execute(cppcheck for C++ should detect compile_commands.json files):
call ale#test#SetFilename('../test-files/cppcheck/one/foo.cpp')
let b:rel_file_path = '../test-files/cppcheck/one/foo.cpp'
call ale#test#SetFilename(b:rel_file_path)

AssertLinterCwd ale#path#Simplify(g:dir . '/../test-files/cppcheck/one')
AssertLinter 'cppcheck', ale#Escape('cppcheck')
\ . ' -q --language=c++'
\ . ' --template=' . ale#Escape('{file}:{line}:{column}: {severity}:{inconclusive:inconclusive:} {message} [{id}]\\n{code}')
\ . ' --project=' . ale#Escape('compile_commands.json')
\ . ' --file-filter=' . ale#Escape('foo.cpp')
\ . ' --file-filter=' . ale#Escape(ale#test#GetFilename(b:rel_file_path))
\ . ' --enable=style %t'

Execute(cppcheck for C++ should detect compile_commands.json files in build directories):
call ale#test#SetFilename('../test-files/cppcheck/with_build_dir/foo.cpp')
let b:rel_file_path = '../test-files/cppcheck/with_build_dir/foo.cpp'
call ale#test#SetFilename(b:rel_file_path)

AssertLinterCwd ale#path#Simplify(g:dir . '/../test-files/cppcheck/with_build_dir')
AssertLinter 'cppcheck', ale#Escape('cppcheck')
\ . ' -q --language=c++'
\ . ' --template=' . ale#Escape('{file}:{line}:{column}: {severity}:{inconclusive:inconclusive:} {message} [{id}]\\n{code}')
\ . ' --project=' . ale#Escape(ale#path#Simplify('build/compile_commands.json'))
\ . ' --file-filter=' . ale#Escape('foo.cpp')
\ . ' --file-filter=' . ale#Escape(ale#test#GetFilename(b:rel_file_path))
\ . ' --enable=style %t'

Execute(cppcheck for C++ should include file dir if compile_commands.json file is not found):
Expand Down