summaryrefslogtreecommitdiff
path: root/test/command_callback/test_staticcheck_command_callback.vader
blob: ae0d3584596f52d3e33f2b611c3befa4adc9c231 (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
Before:
  Save g:ale_go_go111module

  call ale#assert#SetUpLinterTest('go', 'staticcheck')
  call ale#test#SetFilename('test.go')

After:
  unlet! b:ale_go_go111module

  call ale#assert#TearDownLinterTest()

Execute(The staticcheck callback should return the right defaults):
  AssertLinter 'staticcheck',
  \ ale#path#CdString(expand('%:p:h'))
  \   . 'staticcheck '
  \   . ale#Escape(expand('%' . ':t'))

Execute(The staticcheck callback should use configured options):
  let b:ale_go_staticcheck_options = '-test'

  AssertLinter 'staticcheck',
  \ ale#path#CdString(expand('%:p:h'))
  \   . 'staticcheck '
  \   . '-test ' . ale#Escape(expand('%' . ':t'))

Execute(The staticcheck `lint_package` option should use the correct command):
  let b:ale_go_staticcheck_lint_package = 1

  AssertLinter 'staticcheck',
  \ ale#path#CdString(expand('%:p:h')) . 'staticcheck .',

Execute(The staticcheck callback should use the `GO111MODULE` option if set):
  let b:ale_go_go111module = 'off'

  AssertLinter 'staticcheck',
  \ ale#path#CdString(expand('%:p:h'))
  \   . ale#Env('GO111MODULE', 'off')
  \   . 'staticcheck '
  \   . ale#Escape(expand('%' . ':t'))

  " Test with lint_package option set
  let b:ale_go_staticcheck_lint_package = 1

  AssertLinter 'staticcheck',
  \ ale#path#CdString(expand('%:p:h'))
  \   . ale#Env('GO111MODULE', 'off')
  \   . 'staticcheck .'