2018-12-17 06:33:49 -05:00
|
|
|
" don't spam the user when Vim is started in Vi compatibility mode
|
|
|
|
let s:cpo_save = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
|
|
|
function! Test_GoDebugStart_Empty() abort
|
|
|
|
call s:debug()
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! Test_GoDebugStart_RelativePackage() abort
|
2019-01-08 05:11:54 -05:00
|
|
|
call s:debug('./debug/debugmain')
|
2018-12-17 06:33:49 -05:00
|
|
|
endfunction
|
|
|
|
|
2019-08-22 11:36:17 -04:00
|
|
|
function! Test_GoDebugStart_RelativePackage_NullModule() abort
|
|
|
|
call s:debug('./debug/debugmain', 1)
|
|
|
|
endfunction
|
|
|
|
|
2018-12-17 06:33:49 -05:00
|
|
|
function! Test_GoDebugStart_Package() abort
|
2019-01-08 05:11:54 -05:00
|
|
|
call s:debug('debug/debugmain')
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! Test_GoDebugStart_Errors() abort
|
|
|
|
if !go#util#has_job()
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
|
|
|
try
|
2019-11-16 10:28:42 -05:00
|
|
|
let l:tmp = gotest#load_fixture('debug/compilerror/main.go')
|
|
|
|
|
2019-01-08 05:11:54 -05:00
|
|
|
let l:expected = [
|
|
|
|
\ {'lnum': 0, 'bufnr': 0, 'col': 0, 'valid': 0, 'vcol': 0, 'nr': -1, 'type': '', 'pattern': '', 'text': '# debug/compilerror'},
|
2019-11-16 10:28:42 -05:00
|
|
|
\ {'lnum': 6, 'bufnr': bufnr('%'), 'col': 22, 'valid': 1, 'vcol': 0, 'nr': -1, 'type': '', 'pattern': '', 'text': ' syntax error: unexpected newline, expecting comma or )'},
|
2019-01-08 05:11:54 -05:00
|
|
|
\ {'lnum': 0, 'bufnr': 0, 'col': 0, 'valid': 0, 'vcol': 0, 'nr': -1, 'type': '', 'pattern': '', 'text': 'exit status 2'}
|
|
|
|
\]
|
|
|
|
call setqflist([], 'r')
|
|
|
|
|
|
|
|
call assert_false(exists(':GoDebugStop'))
|
|
|
|
|
|
|
|
let l:cd = exists('*haslocaldir') && haslocaldir() ? 'lcd' : 'cd'
|
|
|
|
execute l:cd . ' debug/compilerror'
|
|
|
|
|
|
|
|
call go#debug#Start(0)
|
|
|
|
|
|
|
|
let l:actual = getqflist()
|
|
|
|
let l:start = reltime()
|
|
|
|
while len(l:actual) == 0 && reltimefloat(reltime(l:start)) < 10
|
|
|
|
sleep 100m
|
|
|
|
let l:actual = getqflist()
|
|
|
|
endwhile
|
|
|
|
|
|
|
|
call gotest#assert_quickfix(l:actual, l:expected)
|
|
|
|
call assert_false(exists(':GoDebugStop'))
|
|
|
|
|
|
|
|
finally
|
|
|
|
call delete(l:tmp, 'rf')
|
|
|
|
" clear the quickfix lists
|
|
|
|
call setqflist([], 'r')
|
|
|
|
endtry
|
2018-12-17 06:33:49 -05:00
|
|
|
endfunction
|
|
|
|
|
2019-08-22 11:36:17 -04:00
|
|
|
" s:debug takes 2 optional arguments. The first is a package to debug. The
|
|
|
|
" second is a flag to indicate whether to reset GOPATH after
|
|
|
|
" gotest#load_fixture is called in order to test behavior outside of GOPATH.
|
2018-12-17 06:33:49 -05:00
|
|
|
function! s:debug(...) abort
|
|
|
|
if !go#util#has_job()
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
|
|
|
try
|
2019-08-22 11:36:17 -04:00
|
|
|
let $oldgopath = $GOPATH
|
2019-01-08 05:11:54 -05:00
|
|
|
let l:tmp = gotest#load_fixture('debug/debugmain/debugmain.go')
|
2018-12-17 06:33:49 -05:00
|
|
|
|
2019-08-22 11:36:17 -04:00
|
|
|
if a:0 > 1 && a:2 == 1
|
|
|
|
let $GOPATH = $oldgopath
|
|
|
|
endif
|
|
|
|
|
2018-12-17 06:33:49 -05:00
|
|
|
call go#debug#Breakpoint(6)
|
|
|
|
|
|
|
|
call assert_false(exists(':GoDebugStop'))
|
|
|
|
|
|
|
|
if a:0 == 0
|
|
|
|
let l:cd = exists('*haslocaldir') && haslocaldir() ? 'lcd' : 'cd'
|
2019-01-08 05:11:54 -05:00
|
|
|
execute l:cd . ' debug/debugmain'
|
|
|
|
let l:job = go#debug#Start(0)
|
2018-12-17 06:33:49 -05:00
|
|
|
else
|
2019-01-08 05:11:54 -05:00
|
|
|
let l:job = go#debug#Start(0, a:1)
|
2018-12-17 06:33:49 -05:00
|
|
|
endif
|
|
|
|
|
|
|
|
let l:start = reltime()
|
|
|
|
while !exists(':GoDebugStop') && reltimefloat(reltime(l:start)) < 10
|
|
|
|
sleep 100m
|
|
|
|
endwhile
|
|
|
|
|
2019-01-08 05:11:54 -05:00
|
|
|
call assert_true(exists(':GoDebugStop'))
|
|
|
|
call gotest#assert_quickfix(getqflist(), [])
|
|
|
|
|
2018-12-17 06:33:49 -05:00
|
|
|
call go#debug#Stop()
|
|
|
|
|
2019-01-08 05:11:54 -05:00
|
|
|
if !has('nvim')
|
|
|
|
call assert_equal(job_status(l:job), 'dead')
|
|
|
|
endif
|
|
|
|
|
2018-12-17 06:33:49 -05:00
|
|
|
call assert_false(exists(':GoDebugStop'))
|
2019-01-08 05:11:54 -05:00
|
|
|
|
2018-12-17 06:33:49 -05:00
|
|
|
finally
|
2019-03-08 06:04:56 -05:00
|
|
|
call go#debug#Breakpoint(6)
|
2018-12-17 06:33:49 -05:00
|
|
|
call delete(l:tmp, 'rf')
|
|
|
|
endtry
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" restore Vi compatibility settings
|
|
|
|
let &cpo = s:cpo_save
|
|
|
|
unlet s:cpo_save
|
|
|
|
|
|
|
|
" vim: sw=2 ts=2 et
|