summaryrefslogtreecommitdiff
path: root/test/command_callback/test_staticcheck_command_callback.vader
blob: 993d94912c434cb275a3fdec4d53aaafa238fac8 (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
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):
  AssertLinterCwd '%s:h'
  AssertLinter 'staticcheck', 'staticcheck %s:t'

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

  AssertLinter 'staticcheck', 'staticcheck -test %s:t'

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

  AssertLinterCwd '%s:h'
  AssertLinter 'staticcheck', 'staticcheck .'

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

  AssertLinter 'staticcheck', ale#Env('GO111MODULE', 'off') . 'staticcheck %s:t'

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

  AssertLinter 'staticcheck', ale#Env('GO111MODULE', 'off') . 'staticcheck .'