123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 |
- # Copyright (C) 2016 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 ycm.tests.test_utils import ExtendedMock, MockVimModule
- MockVimModule()
- import json
- from hamcrest import assert_that
- from unittest import TestCase
- from unittest.mock import patch, call
- from ycm.client.command_request import CommandRequest
- def GoToTest( command, response ):
- with patch( 'ycm.vimsupport.JumpToLocation' ) as jump_to_location:
- request = CommandRequest( [ command ] )
- request._response = response
- request.RunPostCommandActionsIfNeeded( 'rightbelow' )
- jump_to_location.assert_called_with(
- response[ 'filepath' ],
- response[ 'line_num' ],
- response[ 'column_num' ],
- 'rightbelow',
- 'same-buffer' )
- def GoToListTest( command, response ):
- # Note: the detail of these called are tested by
- # GoToResponse_QuickFix_test, so here we just check that the right call is
- # made
- with patch( 'ycm.vimsupport.SetQuickFixList' ) as set_qf_list:
- with patch( 'ycm.vimsupport.OpenQuickFixList' ) as open_qf_list:
- request = CommandRequest( [ command ] )
- request._response = response
- request.RunPostCommandActionsIfNeeded( 'tab' )
- assert_that( set_qf_list.called )
- assert_that( open_qf_list.called )
- BASIC_GOTO = {
- 'filepath': 'test',
- 'line_num': 10,
- 'column_num': 100,
- }
- BASIC_FIXIT = {
- 'fixits': [ {
- 'resolve': False,
- 'chunks': [ {
- 'dummy chunk contents': True
- } ]
- } ]
- }
- BASIC_FIXIT_CHUNKS = BASIC_FIXIT[ 'fixits' ][ 0 ][ 'chunks' ]
- MULTI_FIXIT = {
- 'fixits': [ {
- 'text': 'first',
- 'resolve': False,
- 'chunks': [ {
- 'dummy chunk contents': True
- } ]
- }, {
- 'text': 'second',
- 'resolve': False,
- 'chunks': [ {
- 'dummy chunk contents': False
- } ]
- } ]
- }
- MULTI_FIXIT_FIRST_CHUNKS = MULTI_FIXIT[ 'fixits' ][ 0 ][ 'chunks' ]
- MULTI_FIXIT_SECOND_CHUNKS = MULTI_FIXIT[ 'fixits' ][ 1 ][ 'chunks' ]
- class GoToResponse_QuickFixTest( TestCase ):
- """This class tests the generation of QuickFix lists for GoTo responses which
- return multiple locations, such as the Python completer and JavaScript
- completer. It mostly proves that we use 1-based indexing for the column
- number."""
- def setUp( self ):
- self._request = CommandRequest( [ 'GoToTest' ] )
- def tearDown( self ):
- self._request = None
- def test_GoTo_EmptyList( self ):
- self._CheckGoToList( [], [] )
- def test_GoTo_SingleItem_List( self ):
- self._CheckGoToList( [ {
- 'filepath': 'dummy_file',
- 'line_num': 10,
- 'column_num': 1,
- 'description': 'this is some text',
- } ], [ {
- 'filename': 'dummy_file',
- 'text': 'this is some text',
- 'lnum': 10,
- 'col': 1
- } ] )
- def test_GoTo_MultiItem_List( self ):
- self._CheckGoToList( [ {
- 'filepath': 'dummy_file',
- 'line_num': 10,
- 'column_num': 1,
- 'description': 'this is some other text',
- }, {
- 'filepath': 'dummy_file2',
- 'line_num': 1,
- 'column_num': 21,
- 'description': 'this is some text',
- } ], [ {
- 'filename': 'dummy_file',
- 'text': 'this is some other text',
- 'lnum': 10,
- 'col': 1
- }, {
- 'filename': 'dummy_file2',
- 'text': 'this is some text',
- 'lnum': 1,
- 'col': 21
- } ] )
- @patch( 'ycm.vimsupport.VariableExists', return_value = True )
- @patch( 'ycm.vimsupport.SetFittingHeightForCurrentWindow' )
- @patch( 'vim.command', new_callable = ExtendedMock )
- @patch( 'vim.eval', new_callable = ExtendedMock )
- def _CheckGoToList( self,
- completer_response,
- expected_qf_list,
- vim_eval,
- vim_command,
- set_fitting_height,
- variable_exists ):
- self._request._response = completer_response
- self._request.RunPostCommandActionsIfNeeded( 'aboveleft' )
- vim_eval.assert_has_exact_calls( [
- call( f'setqflist( { json.dumps( expected_qf_list ) } )' )
- ] )
- vim_command.assert_has_exact_calls( [
- call( 'botright copen' ),
- call( 'augroup ycmquickfix' ),
- call( 'autocmd! * <buffer>' ),
- call( 'autocmd WinLeave <buffer> '
- 'if bufnr( "%" ) == expand( "<abuf>" ) | q | endif '
- '| autocmd! ycmquickfix' ),
- call( 'augroup END' ),
- call( 'doautocmd User YcmQuickFixOpened' )
- ] )
- set_fitting_height.assert_called_once_with()
- class Response_Detection_Test( TestCase ):
- def test_BasicResponse( self ):
- def _BasicResponseTest( command, response ):
- with patch( 'vim.command' ) as vim_command:
- request = CommandRequest( [ command ] )
- request._response = response
- request.RunPostCommandActionsIfNeeded( 'belowright' )
- vim_command.assert_called_with( f"echo '{ response }'" )
- for command, response in [
- [ 'AnythingYouLike', True ],
- [ 'GoToEvenWorks', 10 ],
- [ 'FixItWorks', 'String!' ],
- [ 'and8434fd andy garbag!', 10.3 ],
- ]:
- with self.subTest( command = command, response = response ):
- _BasicResponseTest( command, response )
- def test_FixIt_Response_Empty( self ):
- # Ensures we recognise and handle fixit responses which indicate that there
- # are no fixits available
- def EmptyFixItTest( command ):
- with patch( 'ycm.vimsupport.ReplaceChunks' ) as replace_chunks:
- with patch( 'ycm.vimsupport.PostVimMessage' ) as post_vim_message:
- request = CommandRequest( [ command ] )
- request._response = {
- 'fixits': []
- }
- request.RunPostCommandActionsIfNeeded( 'botright' )
- post_vim_message.assert_called_with(
- 'No fixits found for current line', warning = False )
- replace_chunks.assert_not_called()
- for command in [ 'FixIt', 'Refactor', 'GoToHell', 'any_old_garbade!!!21' ]:
- with self.subTest( command = command ):
- EmptyFixItTest( command )
- def test_FixIt_Response( self ):
- # Ensures we recognise and handle fixit responses with some dummy chunk data
- def FixItTest( command, response, chunks, selection, silent ):
- with patch( 'ycm.vimsupport.ReplaceChunks' ) as replace_chunks:
- with patch( 'ycm.vimsupport.PostVimMessage' ) as post_vim_message:
- with patch( 'ycm.vimsupport.SelectFromList',
- return_value = selection ):
- request = CommandRequest( [ command ] )
- request._response = response
- request.RunPostCommandActionsIfNeeded( 'leftabove' )
- replace_chunks.assert_called_with( chunks, silent = silent )
- post_vim_message.assert_not_called()
- for command, response, chunks, selection, silent in [
- [ 'AnythingYouLike',
- BASIC_FIXIT, BASIC_FIXIT_CHUNKS, 0, False ],
- [ 'GoToEvenWorks',
- BASIC_FIXIT, BASIC_FIXIT_CHUNKS, 0, False ],
- [ 'FixItWorks',
- BASIC_FIXIT, BASIC_FIXIT_CHUNKS, 0, False ],
- [ 'and8434fd andy garbag!',
- BASIC_FIXIT, BASIC_FIXIT_CHUNKS, 0, False ],
- [ 'Format',
- BASIC_FIXIT, BASIC_FIXIT_CHUNKS, 0, True ],
- [ 'select from multiple 1',
- MULTI_FIXIT, MULTI_FIXIT_FIRST_CHUNKS, 0, False ],
- [ 'select from multiple 2',
- MULTI_FIXIT, MULTI_FIXIT_SECOND_CHUNKS, 1, False ],
- ]:
- with self.subTest( command = command,
- response = response,
- chunks = chunks,
- selection = selection,
- silent = silent ):
- FixItTest( command, response, chunks, selection, silent )
- def test_Message_Response( self ):
- # Ensures we correctly recognise and handle responses with a message to show
- # to the user
- def MessageTest( command, message ):
- with patch( 'ycm.vimsupport.PostVimMessage' ) as post_vim_message:
- request = CommandRequest( [ command ] )
- request._response = { 'message': message }
- request.RunPostCommandActionsIfNeeded( 'rightbelow' )
- post_vim_message.assert_called_with( message, warning = False )
- for command, message in [
- [ '___________', 'This is a message' ],
- [ '', 'this is also a message' ],
- [ 'GetType', 'std::string' ],
- ]:
- with self.subTest( command = command, message = message ):
- MessageTest( command, message )
- def test_Detailed_Info( self ):
- # Ensures we correctly detect and handle detailed_info responses which are
- # used to display information in the preview window
- def DetailedInfoTest( command, info ):
- with patch( 'ycm.vimsupport.WriteToPreviewWindow' ) as write_to_preview:
- request = CommandRequest( [ command ] )
- request._response = { 'detailed_info': info }
- request.RunPostCommandActionsIfNeeded( 'topleft' )
- write_to_preview.assert_called_with( info, 'topleft' )
- for command, info in [
- [ '___________', 'This is a message' ],
- [ '', 'this is also a message' ],
- [ 'GetDoc', 'std::string\netc\netc' ],
- ]:
- with self.subTest( command = command, info = info ):
- DetailedInfoTest( command, info )
- def test_GoTo_Single( self ):
- for test, command, response in [
- [ GoToTest, 'AnythingYouLike', BASIC_GOTO ],
- [ GoToTest, 'GoTo', BASIC_GOTO ],
- [ GoToTest, 'FindAThing', BASIC_GOTO ],
- [ GoToTest, 'FixItGoto', BASIC_GOTO ],
- [ GoToListTest, 'AnythingYouLike', [ BASIC_GOTO ] ],
- [ GoToListTest, 'GoTo', [] ],
- [ GoToListTest, 'FixItGoto', [ BASIC_GOTO, BASIC_GOTO ] ],
- ]:
- with self.subTest( test = test, command = command, response = response ):
- test( command, response )
|