2013-05-19 17:20:13 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
2014-01-13 14:08:43 -05:00
|
|
|
# Copyright (C) 2011, 2012 Google Inc.
|
2013-05-19 17:20:13 -04: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 mock import MagicMock
|
|
|
|
import sys
|
|
|
|
|
2015-09-06 15:07:42 -04:00
|
|
|
# One-and only instance of mocked Vim object. The first 'import vim' that is
|
|
|
|
# executed binds the vim module to the instance of MagicMock that is created,
|
|
|
|
# and subsquent assignments to sys.modules[ 'vim' ] don't retrospectively update
|
|
|
|
# them. The result is that while running the tests, we must assign only one
|
|
|
|
# instance of MagicMock to sys.modules[ 'vim' ] and always return it.
|
|
|
|
#
|
|
|
|
# More explanation is available:
|
|
|
|
# https://github.com/Valloric/YouCompleteMe/pull/1694
|
|
|
|
VIM_MOCK = MagicMock()
|
|
|
|
|
2013-05-19 17:20:13 -04:00
|
|
|
def MockVimModule():
|
|
|
|
"""The 'vim' module is something that is only present when running inside the
|
2015-09-06 15:07:42 -04:00
|
|
|
Vim Python interpreter, so we replace it with a MagicMock for tests. If you
|
|
|
|
need to add additional mocks to vim module functions, then use 'patch' from
|
|
|
|
mock module, to ensure that the state of the vim mock is returned before the
|
|
|
|
next test. That is:
|
|
|
|
|
|
|
|
from ycm.test_utils import MockVimModule
|
|
|
|
from mock import patch
|
|
|
|
|
|
|
|
# Do this once
|
|
|
|
MockVimModule()
|
|
|
|
|
|
|
|
@patch( 'vim.eval', return_value='test' )
|
|
|
|
@patch( 'vim.command', side_effect=ValueError )
|
|
|
|
def test( vim_command, vim_eval ):
|
|
|
|
# use vim.command via vim_command, e.g.:
|
|
|
|
vim_command.assert_has_calls( ... )
|
|
|
|
|
|
|
|
Failure to use this approach may lead to unexpected failures in other
|
|
|
|
tests."""
|
2013-05-19 17:20:13 -04:00
|
|
|
|
2013-06-09 22:00:49 -04:00
|
|
|
def VimEval( value ):
|
|
|
|
if value == "g:ycm_min_num_of_chars_for_completion":
|
|
|
|
return 0
|
|
|
|
return ''
|
|
|
|
|
2015-09-06 15:07:42 -04:00
|
|
|
VIM_MOCK.eval = MagicMock( side_effect = VimEval )
|
|
|
|
sys.modules[ 'vim' ] = VIM_MOCK
|
2013-06-09 22:00:49 -04:00
|
|
|
|
2015-09-06 15:07:42 -04:00
|
|
|
return VIM_MOCK
|