YouCompleteMe/python/ycm/tests/command_test.py

169 lines
5.4 KiB
Python
Raw Normal View History

2018-02-07 13:57:45 -05:00
# Copyright (C) 2016-2018 YouCompleteMe contributors
2016-12-10 17:36:27 -05:00
#
# 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 __future__ import unicode_literals
from __future__ import print_function
from __future__ import division
from __future__ import absolute_import
# Not installing aliases from python-future; it's unreliable and slow.
2016-12-10 17:36:27 -05:00
from builtins import * # noqa
from ycm.tests.test_utils import MockVimModule, MockVimBuffers, VimBuffer
2016-12-10 17:36:27 -05:00
MockVimModule()
2018-02-07 13:57:45 -05:00
from hamcrest import assert_that, contains, has_entries
2016-12-10 17:36:27 -05:00
from mock import patch
from ycm.tests import YouCompleteMeInstance
@YouCompleteMeInstance( { 'g:ycm_extra_conf_vim_data': [ 'tempname()' ] } )
2018-02-07 13:57:45 -05:00
def SendCommandRequest_ExtraConfVimData_Works_test( ycm ):
2016-12-10 17:36:27 -05:00
current_buffer = VimBuffer( 'buffer' )
2018-05-17 08:52:40 -04:00
with MockVimBuffers( [ current_buffer ], [ current_buffer ] ):
with patch( 'ycm.youcompleteme.SendCommandRequest' ) as send_request:
ycm.SendCommandRequest( [ 'GoTo' ], 'aboveleft', False, 1, 1 )
2016-12-10 17:36:27 -05:00
assert_that(
2018-02-07 13:57:45 -05:00
# Positional arguments passed to SendCommandRequest.
send_request.call_args[ 0 ],
contains(
contains( 'GoTo' ),
2018-07-24 11:12:50 -04:00
'aboveleft',
'same-buffer',
2018-02-07 13:57:45 -05:00
has_entries( {
'options': has_entries( {
'tab_size': 2,
'insert_spaces': True,
} ),
'extra_conf_data': has_entries( {
'tempname()': '_TEMP_FILE_'
} ),
} )
)
2016-12-10 17:36:27 -05:00
)
@YouCompleteMeInstance( { 'g:ycm_extra_conf_vim_data': [ 'undefined_value' ] } )
def SendCommandRequest_ExtraConfData_UndefinedValue_test( ycm ):
current_buffer = VimBuffer( 'buffer' )
2018-05-17 08:52:40 -04:00
with MockVimBuffers( [ current_buffer ], [ current_buffer ] ):
with patch( 'ycm.youcompleteme.SendCommandRequest' ) as send_request:
ycm.SendCommandRequest( [ 'GoTo' ], 'belowright', False, 1, 1 )
2018-02-07 13:57:45 -05:00
assert_that(
# Positional arguments passed to SendCommandRequest.
send_request.call_args[ 0 ],
contains(
contains( 'GoTo' ),
2018-07-24 11:12:50 -04:00
'belowright',
'same-buffer',
2018-02-07 13:57:45 -05:00
has_entries( {
'options': has_entries( {
'tab_size': 2,
'insert_spaces': True,
} )
} )
)
)
@YouCompleteMeInstance()
def SendCommandRequest_BuildRange_NoVisualMarks_test( ycm, *args ):
current_buffer = VimBuffer( 'buffer', contents = [ 'first line',
'second line' ] )
2018-05-17 08:52:40 -04:00
with MockVimBuffers( [ current_buffer ], [ current_buffer ] ):
2018-02-07 13:57:45 -05:00
with patch( 'ycm.youcompleteme.SendCommandRequest' ) as send_request:
ycm.SendCommandRequest( [ 'GoTo' ], '', True, 1, 2 )
send_request.assert_called_once_with(
2018-02-07 13:57:45 -05:00
[ 'GoTo' ],
2018-07-24 11:12:50 -04:00
'',
'same-buffer',
2018-02-07 13:57:45 -05:00
{
'options': {
'tab_size': 2,
'insert_spaces': True
},
'range': {
'start': {
'line_num': 1,
'column_num': 1
},
'end': {
'line_num': 2,
'column_num': 12
}
}
}
)
2018-02-07 13:57:45 -05:00
@YouCompleteMeInstance()
def SendCommandRequest_BuildRange_VisualMarks_test( ycm, *args ):
current_buffer = VimBuffer( 'buffer',
contents = [ 'first line',
'second line' ],
visual_start = [ 1, 4 ],
visual_end = [ 2, 8 ] )
2018-05-17 08:52:40 -04:00
with MockVimBuffers( [ current_buffer ], [ current_buffer ] ):
2018-02-07 13:57:45 -05:00
with patch( 'ycm.youcompleteme.SendCommandRequest' ) as send_request:
ycm.SendCommandRequest( [ 'GoTo' ], 'tab', True, 1, 2 )
2018-02-07 13:57:45 -05:00
send_request.assert_called_once_with(
[ 'GoTo' ],
2018-07-24 11:12:50 -04:00
'tab',
'same-buffer',
2018-02-07 13:57:45 -05:00
{
'options': {
'tab_size': 2,
'insert_spaces': True
},
'range': {
'start': {
'line_num': 1,
'column_num': 5
},
'end': {
'line_num': 2,
'column_num': 9
}
}
}
)
@YouCompleteMeInstance()
def SendCommandRequest_IgnoreFileTypeOption_test( ycm, *args ):
current_buffer = VimBuffer( 'buffer' )
with MockVimBuffers( [ current_buffer ], [ current_buffer ] ):
expected_args = (
[ 'GoTo' ],
'',
'same-buffer',
{
'options': {
'tab_size': 2,
'insert_spaces': True
},
}
)
with patch( 'ycm.youcompleteme.SendCommandRequest' ) as send_request:
ycm.SendCommandRequest( [ 'ft=ycm:ident', 'GoTo' ], '', False, 1, 1 )
send_request.assert_called_once_with( *expected_args )
with patch( 'ycm.youcompleteme.SendCommandRequest' ) as send_request:
ycm.SendCommandRequest( [ 'GoTo', 'ft=python' ], '', False, 1, 1 )
send_request.assert_called_once_with( *expected_args )