ale/test/linter/test_golangci_lint.vader

51 lines
1.4 KiB
Plaintext
Raw Normal View History

2018-09-06 19:31:12 +00:00
Before:
2019-08-02 08:09:10 +00:00
Save g:ale_go_go111module
2018-09-06 19:31:12 +00:00
call ale#assert#SetUpLinterTest('go', 'golangci_lint')
call ale#test#SetFilename('test.go')
After:
2019-08-02 08:09:10 +00:00
Restore
unlet! b:ale_go_go111module
2018-09-06 19:31:12 +00:00
call ale#assert#TearDownLinterTest()
Execute(The golangci-lint defaults should be correct):
AssertLinterCwd '%s:h',
2018-09-06 19:31:12 +00:00
AssertLinter 'golangci-lint',
\ ale#Escape('golangci-lint')
2018-09-14 08:47:33 +00:00
\ . ' run ' . ale#Escape(expand('%' . ':t'))
2018-09-06 19:31:12 +00:00
\ . ' --enable-all'
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')
2018-09-14 08:47:33 +00:00
\ . ' run ' . ale#Escape(expand('%' . ':t'))
2018-09-06 19:31:12 +00:00
\ . ' --enable-all'
Execute(The golangci-lint callback should use configured options):
let b:ale_go_golangci_lint_options = '--foobar'
AssertLinter 'golangci-lint',
\ ale#Escape('golangci-lint')
2018-09-14 08:47:33 +00:00
\ . ' run ' . ale#Escape(expand('%' . ':t'))
2018-09-06 19:31:12 +00:00
\ . ' --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'))
\ . ' --enable-all'
2018-09-06 19:31:12 +00:00
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 --enable-all'