summaryrefslogtreecommitdiff
path: root/test/linter/test_clang_tidy.vader
blob: eb1220bee0b0dfd79a7cab0927a60134a5001cc2 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
Before:
  Save g:ale_c_parse_makefile
  let g:ale_c_parse_makefile = 0

  call ale#assert#SetUpLinterTest('cpp', 'clangtidy')
  call ale#test#SetFilename('test.cpp')

After:
  call ale#assert#TearDownLinterTest()

Execute(The clangtidy command default should be correct):
  AssertLinter 'clang-tidy',
  \ ale#Escape('clang-tidy') . ' %s'

Execute(You should be able to remove the -checks option for clang-tidy):
  let b:ale_cpp_clangtidy_checks = []

  AssertLinter 'clang-tidy',
  \ ale#Escape('clang-tidy') . ' %s'

Execute(You should be able to set other checks for clang-tidy):
  let b:ale_cpp_clangtidy_checks = ['-*', 'clang-analyzer-*']

  AssertLinter 'clang-tidy',
  \ ale#Escape('clang-tidy')
  \   . ' -checks=' . ale#Escape('-*,clang-analyzer-*') . ' %s'

Execute(You should be able to manually set compiler flags for clang-tidy):
  let b:ale_cpp_clangtidy_checks = ['*']
  let b:ale_cpp_clangtidy_options = '-Wall'

  AssertLinter 'clang-tidy',
  \ ale#Escape('clang-tidy') . ' -checks=' . ale#Escape('*') . ' %s -- -Wall'

Execute(You should be able to manually set flags for clang-tidy):
  let b:ale_cpp_clangtidy_extra_options = '-config='

  AssertLinter 'clang-tidy',
  \ ale#Escape('clang-tidy') . ' ' . ale#Escape('-config=') . ' %s'

Execute(The build directory should be configurable):
  let b:ale_cpp_clangtidy_checks = ['*']
  let b:ale_c_build_dir = '/foo/bar'

  AssertLinter 'clang-tidy',
  \ ale#Escape('clang-tidy')
  \   . ' -checks=' . ale#Escape('*') . ' %s'
  \   . ' -p ' . ale#Escape('/foo/bar')

Execute(The build directory setting should override the options):
  let b:ale_cpp_clangtidy_checks = ['*']
  let b:ale_c_build_dir = '/foo/bar'
  let b:ale_cpp_clangtidy_options = '-Wall'

  AssertLinter 'clang-tidy',
  \ ale#Escape('clang-tidy')
  \   . ' -checks=' . ale#Escape('*') . ' %s'
  \   . ' -p ' . ale#Escape('/foo/bar')

Execute(The build directory should be used for header files):
  call ale#test#SetFilename('test.h')

  let b:ale_cpp_clangtidy_checks = ['*']
  let b:ale_c_build_dir = '/foo/bar'
  let b:ale_cpp_clangtidy_options = '-Wall'

  AssertLinter 'clang-tidy',
  \ ale#Escape('clang-tidy')
  \   . ' -checks=' . ale#Escape('*') . ' %s'
  \   . ' -p ' . ale#Escape('/foo/bar')

  call ale#test#SetFilename('test.hpp')

  AssertLinter 'clang-tidy',
  \ ale#Escape('clang-tidy')
  \   . ' -checks=' . ale#Escape('*') . ' %s'
  \   . ' -p ' . ale#Escape('/foo/bar')

Execute(The executable should be configurable):
  let b:ale_cpp_clangtidy_checks = ['*']
  let b:ale_cpp_clangtidy_executable = 'foobar'

  AssertLinter 'foobar',
  \ ale#Escape('foobar') . ' -checks=' . ale#Escape('*') . ' %s'