958d8f1eb5
We display the detailed info text in the preview window. Vim's preview window is designed to display actual files, not scratch data. Our approach is to open a temporary file, even though that file is never written. This way, all of Vim's existing settings for the preview window (and people's configured mappings) just work. This is also consistent with showing the documentation in the preview window during completion. Other plugins have more complicated functions for this (such as eclim), or Scratch.vim, but this approach is simple and doesn't require external dependencies or additional settings. Tests: This required fixing a sort-of-bug in which the mock'd Vim module was always only set once, and could not be changed outside of the module which created it. This meant that it wasn't easy to have arbitrary tests, because it was dependent on the order in which the tests execute as to whether the return from MockVimModule() was actually the one in use. The solution was to make the mock'd vim module a singleton, and use mock's patch decorator to assign new MagicMock() instances to those methods in the vim module which a particular test is interested in.
134 lines
3.6 KiB
Python
134 lines
3.6 KiB
Python
#!/usr/bin/env python
|
|
#
|
|
# Copyright (C) 2015 YouCompleteMe Contributors
|
|
#
|
|
# This file is part of YouCompleteMe.
|
|
#
|
|
# YouCompleteMe is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# YouCompleteMe is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with YouCompleteMe. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
from nose.tools import eq_
|
|
from ycm.test_utils import MockVimModule
|
|
vim_mock = MockVimModule()
|
|
|
|
from .. import completion_request
|
|
|
|
class ConvertCompletionResponseToVimDatas_test:
|
|
""" This class tests the
|
|
completion_request._ConvertCompletionResponseToVimDatas method """
|
|
|
|
def _Check( self, completion_data, expected_vim_data ):
|
|
vim_data = completion_request.ConvertCompletionDataToVimData(
|
|
completion_data )
|
|
|
|
try:
|
|
eq_( expected_vim_data, vim_data )
|
|
except:
|
|
print "Expected:\n'{0}'\nwhen parsing:\n'{1}'\nBut found:\n'{2}'".format(
|
|
expected_vim_data,
|
|
completion_data,
|
|
vim_data )
|
|
raise
|
|
|
|
|
|
def All_Fields_test( self ):
|
|
self._Check( {
|
|
'insertion_text': 'INSERTION TEXT',
|
|
'menu_text': 'MENU TEXT',
|
|
'extra_menu_info': 'EXTRA MENU INFO',
|
|
'kind': 'K',
|
|
'detailed_info': 'DETAILED INFO',
|
|
'extra_data': {
|
|
'doc_string': 'DOC STRING',
|
|
},
|
|
}, {
|
|
'word': 'INSERTION TEXT',
|
|
'abbr': 'MENU TEXT',
|
|
'menu': 'EXTRA MENU INFO',
|
|
'kind': 'k',
|
|
'info': 'DETAILED INFO\nDOC STRING',
|
|
'dup' : 1,
|
|
} )
|
|
|
|
|
|
def Just_Detailed_Info_test( self ):
|
|
self._Check( {
|
|
'insertion_text': 'INSERTION TEXT',
|
|
'menu_text': 'MENU TEXT',
|
|
'extra_menu_info': 'EXTRA MENU INFO',
|
|
'kind': 'K',
|
|
'detailed_info': 'DETAILED INFO',
|
|
}, {
|
|
'word': 'INSERTION TEXT',
|
|
'abbr': 'MENU TEXT',
|
|
'menu': 'EXTRA MENU INFO',
|
|
'kind': 'k',
|
|
'info': 'DETAILED INFO',
|
|
'dup' : 1,
|
|
} )
|
|
|
|
|
|
def Just_Doc_String_test( self ):
|
|
self._Check( {
|
|
'insertion_text': 'INSERTION TEXT',
|
|
'menu_text': 'MENU TEXT',
|
|
'extra_menu_info': 'EXTRA MENU INFO',
|
|
'kind': 'K',
|
|
'extra_data': {
|
|
'doc_string': 'DOC STRING',
|
|
},
|
|
}, {
|
|
'word': 'INSERTION TEXT',
|
|
'abbr': 'MENU TEXT',
|
|
'menu': 'EXTRA MENU INFO',
|
|
'kind': 'k',
|
|
'info': 'DOC STRING',
|
|
'dup' : 1,
|
|
} )
|
|
|
|
|
|
def Extra_Info_No_Doc_String_test( self ):
|
|
self._Check( {
|
|
'insertion_text': 'INSERTION TEXT',
|
|
'menu_text': 'MENU TEXT',
|
|
'extra_menu_info': 'EXTRA MENU INFO',
|
|
'kind': 'K',
|
|
'extra_data': {
|
|
},
|
|
}, {
|
|
'word': 'INSERTION TEXT',
|
|
'abbr': 'MENU TEXT',
|
|
'menu': 'EXTRA MENU INFO',
|
|
'kind': 'k',
|
|
'dup' : 1,
|
|
} )
|
|
|
|
|
|
def Extra_Info_No_Doc_String_With_Detailed_Info_test( self ):
|
|
self._Check( {
|
|
'insertion_text': 'INSERTION TEXT',
|
|
'menu_text': 'MENU TEXT',
|
|
'extra_menu_info': 'EXTRA MENU INFO',
|
|
'kind': 'K',
|
|
'detailed_info': 'DETAILED INFO',
|
|
'extra_data': {
|
|
},
|
|
}, {
|
|
'word': 'INSERTION TEXT',
|
|
'abbr': 'MENU TEXT',
|
|
'menu': 'EXTRA MENU INFO',
|
|
'kind': 'k',
|
|
'info': 'DETAILED INFO',
|
|
'dup' : 1,
|
|
} )
|