summaryrefslogtreecommitdiff
path: root/test/command_callback/test_cpp_cppcheck_command_callbacks.vader
blob: f7b37d4f54d9236261035983e483496007de1c81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Before:
  Save g:ale_cpp_cppcheck_executable
  Save g:ale_cpp_cppcheck_options

  unlet! g:ale_cpp_cppcheck_executable
  unlet! b:ale_cpp_cppcheck_executable
  unlet! g:ale_cpp_cppcheck_options
  unlet! b:ale_cpp_cppcheck_options

  runtime ale_linters/cpp/cppcheck.vim

  let b:command_tail = ' -q --language=c++ --enable=style %t'

  call ale#test#SetDirectory('/testplugin/test/command_callback')

After:
  Restore
  unlet! b:command_tail
  unlet! b:ale_cpp_cppcheck_executable
  unlet! b:ale_cpp_cppcheck_options
  call ale#linter#Reset()
  call ale#test#RestoreDirectory()

Execute(The executable should be configurable):
  AssertEqual 'cppcheck', ale_linters#cpp#cppcheck#GetExecutable(bufnr(''))

  let b:ale_cpp_cppcheck_executable = 'foobar'

  AssertEqual 'foobar', ale_linters#cpp#cppcheck#GetExecutable(bufnr(''))

Execute(The executable should be used in the command):
  AssertEqual
  \ ale#Escape('cppcheck') . b:command_tail,
  \ ale_linters#cpp#cppcheck#GetCommand(bufnr(''))

  let b:ale_cpp_cppcheck_executable = 'foobar'

  AssertEqual
  \ ale#Escape('foobar') . b:command_tail,
  \ ale_linters#cpp#cppcheck#GetCommand(bufnr(''))

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

  AssertEqual
  \ 'cd ' . ale#Escape(ale#path#Winify(g:dir . '/cppcheck_paths/one')) . ' && '
  \   . ale#Escape('cppcheck')
  \   . ' -q --language=c++ --project=compile_commands.json --enable=style %t',
  \ ale_linters#cpp#cppcheck#GetCommand(bufnr(''))