summaryrefslogtreecommitdiff
path: root/test/linter/test_golangci_lint.vader
blob: c4dfb79bbc3973a1f7ea86bdaeb280768f5c0955 (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
Before:
  Save g:ale_go_go111module

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

After:
  Restore

  unlet! b:ale_go_go111module

  call ale#assert#TearDownLinterTest()

Execute(The golangci-lint defaults should be correct):
  AssertLinterCwd '%s:h',
  AssertLinter 'golangci-lint',
  \ ale#Escape('golangci-lint')
  \   . ' run ' . ale#Escape(expand('%' . ':t'))
  \   . ' '

Execute(The golangci-lint callback should use a configured executable):
  let b:ale_go_golangci_lint_executable = 'something else'

  AssertLinter 'something else',
  \ ale#Escape('something else')
  \   . ' run ' . ale#Escape(expand('%' . ':t'))
  \   . ' '

Execute(The golangci-lint callback should use configured options):
  let b:ale_go_golangci_lint_options = '--foobar'

  AssertLinter 'golangci-lint',
  \ ale#Escape('golangci-lint')
  \   . ' run ' . ale#Escape(expand('%' . ':t'))
  \   . ' --foobar'

Execute(The golangci-lint callback should support environment variables):
  let b:ale_go_go111module = 'on'

  AssertLinter 'golangci-lint',
  \ ale#Env('GO111MODULE', 'on')
  \   . ale#Escape('golangci-lint')
  \   . ' run ' . ale#Escape(expand('%' . ':t'))
  \   . ' '

Execute(The golangci-lint `lint_package` option should use the correct command):
  let b:ale_go_golangci_lint_package = 1

  AssertLinter 'golangci-lint',
  \ ale#Escape('golangci-lint') . ' run '