47 lines
1.3 KiB
Text
47 lines
1.3 KiB
Text
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):
|
|
AssertLinter 'staticcheck',
|
|
\ ale#path#CdString(expand('%:p:h'))
|
|
\ . 'staticcheck '
|
|
\ . ale#Escape(expand('%' . ':t'))
|
|
|
|
Execute(The staticcheck callback should use configured options):
|
|
let b:ale_go_staticcheck_options = '-test'
|
|
|
|
AssertLinter 'staticcheck',
|
|
\ ale#path#CdString(expand('%:p:h'))
|
|
\ . 'staticcheck '
|
|
\ . '-test ' . ale#Escape(expand('%' . ':t'))
|
|
|
|
Execute(The staticcheck `lint_package` option should use the correct command):
|
|
let b:ale_go_staticcheck_lint_package = 1
|
|
|
|
AssertLinter 'staticcheck',
|
|
\ ale#path#CdString(expand('%:p:h')) . 'staticcheck .',
|
|
|
|
Execute(The staticcheck callback should use the `GO111MODULE` option if set):
|
|
let b:ale_go_go111module = 'off'
|
|
|
|
AssertLinter 'staticcheck',
|
|
\ ale#path#CdString(expand('%:p:h'))
|
|
\ . ale#Env('GO111MODULE', 'off')
|
|
\ . 'staticcheck '
|
|
\ . ale#Escape(expand('%' . ':t'))
|
|
|
|
" Test with lint_package option set
|
|
let b:ale_go_staticcheck_lint_package = 1
|
|
|
|
AssertLinter 'staticcheck',
|
|
\ ale#path#CdString(expand('%:p:h'))
|
|
\ . ale#Env('GO111MODULE', 'off')
|
|
\ . 'staticcheck .'
|