summaryrefslogtreecommitdiff
path: root/test/handler/test_golangci_lint_handler.vader
blob: 58815f5668448e287de3fd8cde0fc926c7e21a86 (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:
  runtime ale_linters/go/golangci_lint.vim

After:
  call ale#linter#Reset()

Execute (The golangci-lint handler should handle names with spaces):
  " We can't test Windows paths with the path resovling on Linux, but we can
  " test the regex.
  AssertEqual
  \ [
  \   [
  \     'C:\something\file with spaces.go',
  \     '12',
  \     '3',
  \     'expected ''package'', found ''IDENT'' gibberish',
  \     'staticcheck',
  \   ],
  \   [
  \     'C:\something\file with spaces.go',
  \     '37',
  \     '5',
  \     'expected ''package'', found ''IDENT'' gibberish',
  \     'golint',
  \   ],
  \ ],
  \ map(ale_linters#go#golangci_lint#GetMatches([
  \   'C:\something\file with spaces.go:12:3: expected ''package'', found ''IDENT'' gibberish (staticcheck)',
  \   'C:\something\file with spaces.go:37:5: expected ''package'', found ''IDENT'' gibberish (golint)',
  \ ]), 'v:val[1:5]')

Execute (The golangci-lint handler should handle paths correctly):
  call ale#test#SetFilename('app/test.go')

  let file = ale#path#GetAbsPath(expand('%:p:h'), 'test.go')

  AssertEqual
  \ [
  \   {
  \     'lnum': 12,
  \     'col': 3,
  \     'text': 'expected ''package'', found ''IDENT'' gibberish (staticcheck)',
  \     'type': 'W',
  \     'filename': ale#path#Simplify(expand('%:p:h') . '/test.go'),
  \   },
  \   {
  \     'lnum': 37,
  \     'col': 5,
  \     'text': 'expected ''package'', found ''IDENT'' gibberish (golint)',
  \     'type': 'W',
  \     'filename': ale#path#Simplify(expand('%:p:h') . '/test.go'),
  \   },
  \ ],
  \ ale_linters#go#golangci_lint#Handler(bufnr(''), [
  \   file . ':12:3: expected ''package'', found ''IDENT'' gibberish (staticcheck)',
  \   file . ':37:5: expected ''package'', found ''IDENT'' gibberish (golint)',
  \ ])

Execute (The golangci-lint handler should handle only typecheck lines as errors):
  call ale#test#SetFilename('app/main.go')

  let file = ale#path#GetAbsPath(expand('%:p:h'), 'test.go')

  AssertEqual
  \ [
  \   {
  \     'lnum': 30,
  \     'col': 5,
  \     'text': 'variable ''err'' is not used (typecheck)',
  \     'type': 'E',
  \     'filename': ale#path#Simplify(expand('%:p:h') . '/test.go'),
  \   },
  \   {
  \     'lnum': 505,
  \     'col': 75,
  \     'text': 'Magic number: 404, in <argument> detected (gomnd)',
  \     'type': 'W',
  \     'filename': ale#path#Simplify(expand('%:p:h') . '/test.go'),
  \   }
  \ ],
  \ ale_linters#go#golangci_lint#Handler(bufnr(''), [
  \   file . ':30:5: variable ''err'' is not used (typecheck)',
  \   file . ':505:75: Magic number: 404, in <argument> detected (gomnd)',
  \ ])