summaryrefslogtreecommitdiff
path: root/test/command_callback/test_c_clang_tidy_command_callback.vader
blob: 6f75d777dd06bc4793a5d07b012f612cd2263c12 (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
Before:
  Save g:ale_c_clangtidy_checks
  Save g:ale_c_clangtidy_options
  Save g:ale_c_build_dir

  unlet! g:ale_c_build_dir
  unlet! b:ale_c_build_dir
  unlet! g:ale_c_clangtidy_checks
  unlet! b:ale_c_clangtidy_checks
  unlet! g:ale_c_clangtidy_options
  unlet! b:ale_c_clangtidy_options

  runtime ale_linters/c/clangtidy.vim

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

After:
  unlet! b:ale_c_build_dir
  unlet! b:ale_c_clangtidy_checks
  unlet! b:ale_c_clangtidy_options
  unlet! b:ale_c_clangtidy_executable

  Restore
  call ale#linter#Reset()

Execute(The clangtidy command default should be correct):
  AssertEqual
  \ ale#Escape('clang-tidy')
  \   . ' -checks=' . ale#Escape('*') . ' %s',
  \ ale_linters#c#clangtidy#GetCommand(bufnr(''))

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

  AssertEqual
  \ ale#Escape('clang-tidy')
  \   . ' %s',
  \ ale_linters#c#clangtidy#GetCommand(bufnr(''))

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

  AssertEqual
  \ ale#Escape('clang-tidy')
  \   . ' -checks=' . ale#Escape('-*,clang-analyzer-*') . ' %s',
  \ ale_linters#c#clangtidy#GetCommand(bufnr(''))

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

  AssertEqual
  \ ale#Escape('clang-tidy')
  \   . ' -checks=' . ale#Escape('*') . ' %s'
  \   . ' -- -Wall',
  \ ale_linters#c#clangtidy#GetCommand(bufnr(''))
  \
Execute(The build directory should be configurable):
  let b:ale_c_build_dir = '/foo/bar'

  AssertEqual
  \ ale#Escape('clang-tidy')
  \   . ' -checks=' . ale#Escape('*') . ' %s'
  \   . ' -p ' . ale#Escape('/foo/bar'),
  \ ale_linters#c#clangtidy#GetCommand(bufnr(''))

Execute(The build directory setting should override the options):
  let b:ale_c_build_dir = '/foo/bar'
  let b:ale_c_clangtidy_options = '-Wall'

  AssertEqual
  \ ale#Escape('clang-tidy')
  \   . ' -checks=' . ale#Escape('*') . ' %s'
  \   . ' -p ' . ale#Escape('/foo/bar'),
  \ ale_linters#c#clangtidy#GetCommand(bufnr(''))

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

  let b:ale_c_build_dir = '/foo/bar'
  let b:ale_c_clangtidy_options = '-Wall'

  AssertEqual
  \ ale#Escape('clang-tidy')
  \   . ' -checks=' . ale#Escape('*') . ' %s'
  \   . ' -- -Wall',
  \ ale_linters#c#clangtidy#GetCommand(bufnr(''))
  \
  call ale#test#SetFilename('test.h')

  AssertEqual
  \ ale#Escape('clang-tidy')
  \   . ' -checks=' . ale#Escape('*') . ' %s'
  \   . ' -- -Wall',
  \ ale_linters#c#clangtidy#GetCommand(bufnr(''))

Execute(The executable should be configurable):
  let b:ale_c_clangtidy_executable = 'foobar'

  AssertEqual
  \ ale#Escape('foobar')
  \   . ' -checks=' . ale#Escape('*') . ' %s',
  \ ale_linters#c#clangtidy#GetCommand(bufnr(''))