install.fairie/dotfiles/.vim/plugged/YouCompleteMe/test/diagnostics.test.vim

266 lines
8.6 KiB
VimL
Raw Normal View History

function! SetUp()
let g:ycm_use_clangd = 1
let g:ycm_confirm_extra_conf = 0
let g:ycm_auto_trigger = 1
let g:ycm_keep_logfiles = 1
let g:ycm_log_level = 'DEBUG'
let g:ycm_always_populate_location_list = 1
" diagnostics take ages
let g:ycm_test_min_delay = 7
call youcompleteme#test#setup#SetUp()
endfunction
function! TearDown()
call youcompleteme#test#setup#CleanUp()
endfunction
function! Test_Diagnostics_Update_In_Insert_Mode()
call youcompleteme#test#setup#OpenFile(
\ '/test/testdata/cpp/new_file.cpp', {} )
" Required to trigger TextChangedI
" https://github.com/vim/vim/issues/4665#event-2480928194
call test_override( 'char_avail', 1 )
" Must do the checks in a timer callback because we need to stay in insert
" mode until done.
function! Check( id ) closure
call WaitForAssert( {-> assert_true( len( sign_getplaced(
\ '%',
\ { 'group': 'ycm_signs' } )[ 0 ][ 'signs' ] ) ) } )
call feedkeys( "\<ESC>" )
endfunction
call FeedAndCheckMain( 'imain(', funcref( 'Check' ) )
call test_override( 'ALL', 0 )
endfunction
function! SetUp_Test_Disable_Diagnostics_Update_In_insert_Mode()
call youcompleteme#test#setup#PushGlobal(
\ 'ycm_update_diagnostics_in_insert_mode', 0 )
endfunction
function! Test_Disable_Diagnostics_Update_In_insert_Mode()
call youcompleteme#test#setup#OpenFile(
\ '/test/testdata/cpp/new_file.cpp', {} )
" Required to trigger TextChangedI
" https://github.com/vim/vim/issues/4665#event-2480928194
call test_override( 'char_avail', 1 )
" Must do the checks in a timer callback because we need to stay in insert
" mode until done.
function! Check( id ) closure
call WaitForAssert( {->
\ assert_true(
\ py3eval(
\ 'len( ycm_state.CurrentBuffer()._diag_interface._diagnostics )'
\ ) ) } )
call WaitForAssert( {-> assert_false( len( sign_getplaced(
\ '%',
\ { 'group': 'ycm_signs' } )[ 0 ][ 'signs' ] ) ) } )
call FeedAndCheckAgain( " \<BS>\<BS>\<BS>", funcref( 'CheckAgain' ) )
endfunction
function! CheckAgain( id ) closure
call WaitForAssert( {->
\ assert_true(
\ py3eval(
\ 'len( ycm_state.CurrentBuffer()._diag_interface._diagnostics )'
\ ) ) } )
call WaitForAssert( {-> assert_false( len( sign_getplaced(
\ '%',
\ { 'group': 'ycm_signs' } )[ 0 ][ 'signs' ] ) ) } )
call feedkeys( "\<ESC>" )
endfunction
call FeedAndCheckMain( 'imain(', funcref( 'Check' ) )
call test_override( 'ALL', 0 )
endfunction
function! TearDown_Test_Disable_Diagnostics_Update_In_insert_Mode()
call youcompleteme#test#setup#PopGlobal(
\ 'ycm_update_diagnostics_in_insert_mode' )
endfunction
function! Test_Changing_Filetype_Refreshes_Diagnostics()
call youcompleteme#test#setup#OpenFile(
\ '/test/testdata/diagnostics/foo.xml',
\ { 'native_ft': 0 } )
call assert_equal( 'xml', &ft )
call assert_false(
\ pyxeval( 'ycm_state._buffers[' . bufnr( '%' ) . ']._async_diags' ) )
call assert_true( empty( sign_getplaced(
\ '%',
\ { 'group': 'ycm_signs' } )[ 0 ][ 'signs' ] ) )
setf typescript
call assert_equal( 'typescript', &ft )
call assert_false(
\ pyxeval( 'ycm_state._buffers[' . bufnr( '%' ) . ']._async_diags' ) )
" Diagnostics are async, so wait for the assert to return 0 for a while.
call WaitForAssert( {-> assert_equal( 1, len( sign_getplaced(
\ '%',
\ { 'group': 'ycm_signs' } )[ 0 ][ 'signs' ] ) ) } )
call assert_equal( 1, len( sign_getplaced(
\ '%',
\ { 'group': 'ycm_signs' } )[ 0 ][ 'signs' ] ) )
call assert_equal(
\ 'YcmError',
\ sign_getplaced(
\ '%',
\ { 'group': 'ycm_signs' } )[ 0 ][ 'signs' ][ 0 ][ 'name' ] )
call assert_false( empty( getloclist( 0 ) ) )
endfunction
function! Test_MessagePoll_After_LocationList()
call youcompleteme#test#setup#OpenFile(
\ '/test/testdata/diagnostics/foo.cpp', {} )
setf cpp
call assert_equal( 'cpp', &ft )
call WaitForAssert( {-> assert_equal( 2, len( sign_getplaced(
\ '%',
\ { 'group': 'ycm_signs' } )[ 0 ][ 'signs' ] ) ) } )
call setline( 1, '' )
" Wait for the parse request to be complete otherwise we won't send another
" one when the TextChanged event fires
call WaitFor( {-> pyxeval( 'ycm_state.FileParseRequestReady()' ) } )
doautocmd TextChanged
call WaitForAssert( {-> assert_true( empty( sign_getplaced(
\ '%',
\ { 'group': 'ycm_signs' } )[ 0 ][ 'signs' ] ) ) } )
call assert_true( empty( getloclist( 0 ) ) )
endfunction
function! Test_MessagePoll_Multiple_Filetypes()
call youcompleteme#test#setup#OpenFile(
\ '/third_party/ycmd/ycmd/tests/java/testdata/simple_eclipse_project' .
\ '/src/com/test/TestLauncher.java', {} )
call WaitForAssert( {->
\ assert_true( len( sign_getplaced(
\ '%',
\ { 'group': 'ycm_signs' } )[ 0 ][ 'signs' ] ) ) } )
let java_signs = sign_getplaced(
\ '%',
\ { 'group': 'ycm_signs' } )[ 0 ][ 'signs' ]
silent vsplit testdata/diagnostics/foo.cpp
" Make sure we've left the java buffer
call assert_equal( java_signs,
\ sign_getplaced( '#', { 'group': 'ycm_signs' } )[ 0 ][ 'signs' ] )
" Clangd emits two diagnostics for foo.cpp.
call WaitForAssert( {->
\ assert_equal(
\ 2,
\ len( sign_getplaced(
\ '%',
\ { 'group': 'ycm_signs' } )[ 0 ][ 'signs' ] ) ) } )
let cpp_signs = sign_getplaced( '%',
\ { 'group': 'ycm_signs' } )[ 0 ][ 'signs' ]
call assert_false( java_signs == cpp_signs )
endfunction
function! Test_BufferWithoutAssociatedFile_HighlightingWorks()
enew
call setbufline( '%', 1, 'iiii' )
setf c
call WaitForAssert( {->
\ assert_true( len( sign_getplaced(
\ '%',
\ { 'group': 'ycm_signs' } )[ 0 ][ 'signs' ] ) ) } )
let expected_properties = [
\ { 'id': 4,
\ 'col': 1,
\ 'end': 1,
\ 'type': 'YcmErrorProperty',
\ 'length': 0,
\ 'start': 1 },
\ { 'id': 3,
\ 'col': 1,
\ 'end': 1,
\ 'type': 'YcmErrorProperty',
\ 'length': 0,
\ 'start': 1 },
\ { 'id': 2,
\ 'col': 1,
\ 'end': 1,
\ 'type': 'YcmErrorProperty',
\ 'length': 4,
\ 'start': 1 },
\ { 'id': 1,
\ 'col': 1,
\ 'end': 1,
\ 'type': 'YcmErrorProperty',
\ 'length': 4,
\ 'start': 1 } ]
call CheckListOfDicts( prop_list( 1 ), expected_properties )
endfunction
function! Test_ThirdPartyDeletesItsTextProperty()
enew
call prop_type_add( 'ThirdPartyProperty', { 'highlight': 'Error' } )
call prop_add( 1, 1, { 'type': 'ThirdPartyProperty', 'bufnr': bufnr('%'), 'id': 42 } )
call prop_type_delete( 'ThirdPartyProperty' )
py3 from ycm.vimsupport import GetTextProperties, GetIntValue
call assert_equal( [], py3eval( 'GetTextProperties( GetIntValue( """bufnr( "%" )""" ) )' ) )
endfunction
function! Test_ShowDetailedDiagnostic_CmdLine()
call youcompleteme#test#setup#OpenFile(
\ '/test/testdata/cpp/fixit.cpp', {} )
call cursor( [ 3, 1 ] )
redir => output
YcmShowDetailedDiagnostic
redir END
call assert_equal(
\ "Format specifies type 'char *' but the argument has type 'int' "
\ . '(fix available)',
\ trim( output ) )
%bwipe!
endfunction
function! Test_ShowDetailedDiagnostic_PopupAtCursor()
call youcompleteme#test#setup#OpenFile(
\ '/test/testdata/cpp/fixit.cpp', {} )
call cursor( [ 3, 1 ] )
YcmShowDetailedDiagnostic popup
let id = popup_locate( 4, 1 )
call assert_notequal( 0, id, "Couldn't find popup!" )
if exists( '*popup_list' )
let popups = popup_list()
call assert_equal( 1, len( popups ) )
endif
call youcompleteme#test#popup#CheckPopupPosition( id, {
\ 'visible': 1,
\ 'col': 1,
\ 'line': 4,
\ } )
call assert_equal(
\ [
\ "Format specifies type 'char *' but the argument has type 'int' "
\ . '(fix available)',
\ ],
\ getbufline( winbufnr(id), 1, '$' ) )
" From vim's test_popupwin.vim
" trigger the check for last_cursormoved by going into insert mode
call test_override( 'char_avail', 1 )
call feedkeys( "ji\<Esc>", 'xt' )
call assert_equal( {}, popup_getpos( id ) )
call test_override( 'ALL', 0 )
%bwipe!
endfunction