mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-06 20:54:26 +08:00
Fix 4913 - use JSON output for golangci-lint instead of regexps. (#4917)
Some checks are pending
CI / build_image (push) Waiting to run
CI / test_ale (--linters-only) (push) Blocked by required conditions
CI / test_ale (--neovim-06-only) (push) Blocked by required conditions
CI / test_ale (--neovim-08-only) (push) Blocked by required conditions
CI / test_ale (--vim-80-only) (push) Blocked by required conditions
CI / test_ale (--vim-90-only) (push) Blocked by required conditions
Some checks are pending
CI / build_image (push) Waiting to run
CI / test_ale (--linters-only) (push) Blocked by required conditions
CI / test_ale (--neovim-06-only) (push) Blocked by required conditions
CI / test_ale (--neovim-08-only) (push) Blocked by required conditions
CI / test_ale (--vim-80-only) (push) Blocked by required conditions
CI / test_ale (--vim-90-only) (push) Blocked by required conditions
* Fix 4913 - use JSON output for golangci-lint instead of regexps. * Check for empty array
This commit is contained in:
@@ -15,39 +15,41 @@ function! ale_linters#go#golangci_lint#GetCommand(buffer) abort
|
|||||||
return ale#go#EnvString(a:buffer)
|
return ale#go#EnvString(a:buffer)
|
||||||
\ . '%e run '
|
\ . '%e run '
|
||||||
\ . l:options
|
\ . l:options
|
||||||
|
\ . ' --out-format=json'
|
||||||
|
\ . ' --show-stats=0'
|
||||||
endif
|
endif
|
||||||
|
|
||||||
return ale#go#EnvString(a:buffer)
|
return ale#go#EnvString(a:buffer)
|
||||||
\ . '%e run '
|
\ . '%e run '
|
||||||
\ . ale#Escape(l:filename)
|
\ . ale#Escape(l:filename)
|
||||||
\ . ' ' . l:options
|
\ . ' ' . l:options
|
||||||
endfunction
|
\ . ' --out-format=json'
|
||||||
|
\ . ' --show-stats=0'
|
||||||
function! ale_linters#go#golangci_lint#GetMatches(lines) abort
|
|
||||||
let l:pattern = '\v^([a-zA-Z]?:?[^:]+):(\d+):?(\d+)?:?:?:?\s\*?(.+)\s+\((.+)\)$'
|
|
||||||
|
|
||||||
return ale#util#GetMatches(a:lines, l:pattern)
|
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! ale_linters#go#golangci_lint#Handler(buffer, lines) abort
|
function! ale_linters#go#golangci_lint#Handler(buffer, lines) abort
|
||||||
let l:dir = expand('#' . a:buffer . ':p:h')
|
let l:dir = expand('#' . a:buffer . ':p:h')
|
||||||
let l:output = []
|
let l:output = []
|
||||||
|
|
||||||
for l:match in ale_linters#go#golangci_lint#GetMatches(a:lines)
|
let l:matches = ale#util#FuzzyJSONDecode(a:lines, [])
|
||||||
if l:match[5] is# 'typecheck'
|
|
||||||
|
if empty(l:matches)
|
||||||
|
return []
|
||||||
|
endif
|
||||||
|
|
||||||
|
for l:match in l:matches['Issues']
|
||||||
|
if l:match['FromLinter'] is# 'typecheck'
|
||||||
let l:msg_type = 'E'
|
let l:msg_type = 'E'
|
||||||
else
|
else
|
||||||
let l:msg_type = 'W'
|
let l:msg_type = 'W'
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" l:match[1] will already be an absolute path, output from
|
|
||||||
" golangci_lint
|
|
||||||
call add(l:output, {
|
call add(l:output, {
|
||||||
\ 'filename': ale#path#GetAbsPath(l:dir, l:match[1]),
|
\ 'filename': ale#path#GetAbsPath(l:dir, l:match['Pos']['Filename']),
|
||||||
\ 'lnum': l:match[2] + 0,
|
\ 'lnum': l:match['Pos']['Line'] + 0,
|
||||||
\ 'col': l:match[3] + 0,
|
\ 'col': l:match['Pos']['Column'] + 0,
|
||||||
\ 'type': l:msg_type,
|
\ 'type': l:msg_type,
|
||||||
\ 'text': l:match[4] . ' (' . l:match[5] . ')',
|
\ 'text': match['FromLinter'] . ' - ' . l:match['Text'],
|
||||||
\})
|
\})
|
||||||
endfor
|
endfor
|
||||||
|
|
||||||
|
|||||||
@@ -4,63 +4,107 @@ Before:
|
|||||||
After:
|
After:
|
||||||
call ale#linter#Reset()
|
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',
|
|
||||||
\ ],
|
|
||||||
\ ],
|
|
||||||
\ map(ale_linters#go#golangci_lint#GetMatches([
|
|
||||||
\ 'C:\something\file with spaces.go:12:3: expected ''package'', found ''IDENT'' gibberish (staticcheck)',
|
|
||||||
\ ]), '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'),
|
|
||||||
\ },
|
|
||||||
\ ],
|
|
||||||
\ ale_linters#go#golangci_lint#Handler(bufnr(''), [
|
|
||||||
\ file . ':12:3: expected ''package'', found ''IDENT'' gibberish (staticcheck)',
|
|
||||||
\ ])
|
|
||||||
|
|
||||||
Execute (The golangci-lint handler should handle only typecheck lines as errors):
|
Execute (The golangci-lint handler should handle only typecheck lines as errors):
|
||||||
call ale#test#SetFilename('app/main.go')
|
call ale#test#SetFilename('app/main.go')
|
||||||
|
|
||||||
AssertEqual
|
AssertEqual
|
||||||
\ [
|
\ [
|
||||||
\ {
|
\ {
|
||||||
\ 'lnum': 30,
|
\ 'lnum': 1,
|
||||||
\ 'col': 5,
|
\ 'col': 0,
|
||||||
\ 'text': 'variable ''err'' is not used (typecheck)',
|
\ 'text': 'typecheck - found packages main (main.go) and validator (validation.go) in ',
|
||||||
\ 'type': 'E',
|
\ 'type': 'E',
|
||||||
\ 'filename': ale#path#Simplify(expand('%:p:h') . '/test.go'),
|
\ 'filename': ale#path#Simplify(expand('%:p:h') . '/main.go'),
|
||||||
|
\ },
|
||||||
|
\ {
|
||||||
|
\ 'lnum': 1,
|
||||||
|
\ 'col': 1,
|
||||||
|
\ 'text': 'typecheck - package validator_test; expected package main_test',
|
||||||
|
\ 'type': 'E',
|
||||||
|
\ 'filename': ale#path#Simplify(expand('%:p:h') . '/validation_encoder_test.go'),
|
||||||
|
\ },
|
||||||
|
\ {
|
||||||
|
\ 'lnum': 1,
|
||||||
|
\ 'col': 1,
|
||||||
|
\ 'text': 'typecheck - package validator_test; expected package main_test',
|
||||||
|
\ 'type': 'E',
|
||||||
|
\ 'filename': ale#path#Simplify(expand('%:p:h') . '/validation_error_test.go'),
|
||||||
\ },
|
\ },
|
||||||
\ {
|
\ {
|
||||||
\ 'lnum': 505,
|
\ 'lnum': 505,
|
||||||
\ 'col': 75,
|
\ 'col': 75,
|
||||||
\ 'text': 'Magic number: 404, in <argument> detected (gomnd)',
|
\ 'text': 'gomnd - Magic number: 404, in <argument> detected',
|
||||||
\ 'type': 'W',
|
\ 'type': 'W',
|
||||||
\ 'filename': ale#path#Simplify(expand('%:p:h') . '/test.go'),
|
\ 'filename': ale#path#Simplify(expand('%:p:h') . '/main.go'),
|
||||||
\ }
|
\ }
|
||||||
\ ],
|
\ ],
|
||||||
\ ale_linters#go#golangci_lint#Handler(bufnr(''), [
|
\ ale_linters#go#golangci_lint#Handler(bufnr(''), [
|
||||||
\ ale#path#GetAbsPath(expand('%:p:h'), 'test.go') . ':30:5: variable ''err'' is not used (typecheck)',
|
\ '{',
|
||||||
\ ale#path#GetAbsPath(expand('%:p:h'), 'test.go') . ':505:75: Magic number: 404, in <argument> detected (gomnd)',
|
\ ' "Issues": [',
|
||||||
|
\ ' {',
|
||||||
|
\ ' "FromLinter": "typecheck",',
|
||||||
|
\ ' "Text": "found packages main (main.go) and validator (validation.go) in ",',
|
||||||
|
\ ' "Severity": "",',
|
||||||
|
\ ' "SourceLines": [',
|
||||||
|
\ ' "package main"',
|
||||||
|
\ ' ],',
|
||||||
|
\ ' "Pos": {',
|
||||||
|
\ ' "Filename": "main.go",',
|
||||||
|
\ ' "Offset": 0,',
|
||||||
|
\ ' "Line": 1,',
|
||||||
|
\ ' "Column": 0',
|
||||||
|
\ ' },',
|
||||||
|
\ ' "ExpectNoLint": false,',
|
||||||
|
\ ' "ExpectedNoLintLinter": ""',
|
||||||
|
\ ' },',
|
||||||
|
\ ' {',
|
||||||
|
\ ' "FromLinter": "typecheck",',
|
||||||
|
\ ' "Text": "package validator_test; expected package main_test",',
|
||||||
|
\ ' "Severity": "",',
|
||||||
|
\ ' "SourceLines": [',
|
||||||
|
\ ' "package validator_test"',
|
||||||
|
\ ' ],',
|
||||||
|
\ ' "Pos": {',
|
||||||
|
\ ' "Filename": "validation_encoder_test.go",',
|
||||||
|
\ ' "Offset": 0,',
|
||||||
|
\ ' "Line": 1,',
|
||||||
|
\ ' "Column": 1',
|
||||||
|
\ ' },',
|
||||||
|
\ ' "ExpectNoLint": false,',
|
||||||
|
\ ' "ExpectedNoLintLinter": ""',
|
||||||
|
\ ' },',
|
||||||
|
\ ' {',
|
||||||
|
\ ' "FromLinter": "typecheck",',
|
||||||
|
\ ' "Text": "package validator_test; expected package main_test",',
|
||||||
|
\ ' "Severity": "",',
|
||||||
|
\ ' "SourceLines": [',
|
||||||
|
\ ' "package validator_test"',
|
||||||
|
\ ' ],',
|
||||||
|
\ ' "Pos": {',
|
||||||
|
\ ' "Filename": "validation_error_test.go",',
|
||||||
|
\ ' "Offset": 0,',
|
||||||
|
\ ' "Line": 1,',
|
||||||
|
\ ' "Column": 1',
|
||||||
|
\ ' },',
|
||||||
|
\ ' "ExpectNoLint": false,',
|
||||||
|
\ ' "ExpectedNoLintLinter": ""',
|
||||||
|
\ ' },',
|
||||||
|
\ ' {',
|
||||||
|
\ ' "FromLinter": "gomnd",',
|
||||||
|
\ ' "Text": "Magic number: 404, in <argument> detected",',
|
||||||
|
\ ' "Severity": "",',
|
||||||
|
\ ' "SourceLines": [',
|
||||||
|
\ ' "package validator_test"',
|
||||||
|
\ ' ],',
|
||||||
|
\ ' "Pos": {',
|
||||||
|
\ ' "Filename": "main.go",',
|
||||||
|
\ ' "Offset": 0,',
|
||||||
|
\ ' "Line": 505,',
|
||||||
|
\ ' "Column": 75',
|
||||||
|
\ ' },',
|
||||||
|
\ ' "ExpectNoLint": false,',
|
||||||
|
\ ' "ExpectedNoLintLinter": ""',
|
||||||
|
\ ' }',
|
||||||
|
\ ' ]',
|
||||||
|
\ '}',
|
||||||
\ ])
|
\ ])
|
||||||
|
|||||||
@@ -14,14 +14,14 @@ After:
|
|||||||
Execute(The golangci-lint defaults should be correct):
|
Execute(The golangci-lint defaults should be correct):
|
||||||
AssertLinterCwd '%s:h',
|
AssertLinterCwd '%s:h',
|
||||||
AssertLinter 'golangci-lint',
|
AssertLinter 'golangci-lint',
|
||||||
\ ale#Escape('golangci-lint') . ' run '
|
\ ale#Escape('golangci-lint') . ' run --out-format=json --show-stats=0'
|
||||||
|
|
||||||
Execute(The golangci-lint callback should use a configured executable):
|
Execute(The golangci-lint callback should use a configured executable):
|
||||||
let b:ale_go_golangci_lint_executable = 'something else'
|
let b:ale_go_golangci_lint_executable = 'something else'
|
||||||
|
|
||||||
AssertLinter 'something else',
|
AssertLinter 'something else',
|
||||||
\ ale#Escape('something else')
|
\ ale#Escape('something else')
|
||||||
\ . ' run '
|
\ . ' run --out-format=json --show-stats=0'
|
||||||
|
|
||||||
Execute(The golangci-lint callback should use configured options):
|
Execute(The golangci-lint callback should use configured options):
|
||||||
let b:ale_go_golangci_lint_options = '--foobar'
|
let b:ale_go_golangci_lint_options = '--foobar'
|
||||||
@@ -29,7 +29,9 @@ Execute(The golangci-lint callback should use configured options):
|
|||||||
AssertLinter 'golangci-lint',
|
AssertLinter 'golangci-lint',
|
||||||
\ ale#Escape('golangci-lint')
|
\ ale#Escape('golangci-lint')
|
||||||
\ . ' run '
|
\ . ' run '
|
||||||
\ . '--foobar'
|
\ . '--foobar '
|
||||||
|
\ . '--out-format=json '
|
||||||
|
\ . '--show-stats=0'
|
||||||
|
|
||||||
Execute(The golangci-lint callback should support environment variables):
|
Execute(The golangci-lint callback should support environment variables):
|
||||||
let b:ale_go_go111module = 'on'
|
let b:ale_go_go111module = 'on'
|
||||||
@@ -37,11 +39,13 @@ Execute(The golangci-lint callback should support environment variables):
|
|||||||
AssertLinter 'golangci-lint',
|
AssertLinter 'golangci-lint',
|
||||||
\ ale#Env('GO111MODULE', 'on')
|
\ ale#Env('GO111MODULE', 'on')
|
||||||
\ . ale#Escape('golangci-lint')
|
\ . ale#Escape('golangci-lint')
|
||||||
\ . ' run '
|
\ . ' run '
|
||||||
|
\ . '--out-format=json '
|
||||||
|
\ . '--show-stats=0'
|
||||||
|
|
||||||
Execute(The golangci-lint `lint_package` option should use the correct command):
|
Execute(The golangci-lint `lint_package` option should use the correct command):
|
||||||
let b:ale_go_golangci_lint_package = 0
|
let b:ale_go_golangci_lint_package = 0
|
||||||
AssertLinter 'golangci-lint',
|
AssertLinter 'golangci-lint',
|
||||||
\ ale#Escape('golangci-lint')
|
\ ale#Escape('golangci-lint')
|
||||||
\ . ' run ' . ale#Escape(expand('%' . ':t'))
|
\ . ' run ' . ale#Escape(expand('%' . ':t'))
|
||||||
\ . ' '
|
\ . ' --out-format=json --show-stats=0'
|
||||||
|
|||||||
Reference in New Issue
Block a user