install.fairie/dotfiles/.vim/plugged/YouCompleteMe/python/ycm/tests/base_test.py
Git E2E Dev Test Username 1dcbe335e1 git subrepo clone (merge) https://github.com/ycm-core/YouCompleteMe.git ./dotfiles/.vim/plugged/YouCompleteMe
subrepo:
  subdir:   "dotfiles/.vim/plugged/YouCompleteMe"
  merged:   "99ccab251"
upstream:
  origin:   "https://github.com/ycm-core/YouCompleteMe.git"
  branch:   "master"
  commit:   "99ccab251"
git-subrepo:
  version:  "0.4.3"
  origin:   "???"
  commit:   "???"
2022-10-18 10:37:46 -04:00

309 lines
12 KiB
Python

# Copyright (C) 2013 Google Inc.
# 2020 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/>.
import contextlib
from hamcrest import assert_that, equal_to
from unittest import TestCase
from unittest.mock import patch
from ycm.tests.test_utils import MockVimModule
vim_mock = MockVimModule()
from ycm import base
@contextlib.contextmanager
def MockCurrentFiletypes( filetypes = [ '' ] ):
with patch( 'ycm.vimsupport.CurrentFiletypes', return_value = filetypes ):
yield
@contextlib.contextmanager
def MockCurrentColumnAndLineContents( column, line_contents ):
with patch( 'ycm.vimsupport.CurrentColumn', return_value = column ):
with patch( 'ycm.vimsupport.CurrentLineContents',
return_value = line_contents ):
yield
@contextlib.contextmanager
def MockTextAfterCursor( text ):
with patch( 'ycm.vimsupport.TextAfterCursor', return_value = text ):
yield
class BaseTest( TestCase ):
def test_AdjustCandidateInsertionText_Basic( self ):
with MockTextAfterCursor( 'bar' ):
assert_that( [ { 'word': 'foo', 'abbr': 'foobar' } ],
equal_to( base.AdjustCandidateInsertionText( [
{ 'word': 'foobar', 'abbr': '' } ] ) ) )
def test_AdjustCandidateInsertionText_ParenInTextAfterCursor( self ):
with MockTextAfterCursor( 'bar(zoo' ):
assert_that( [ { 'word': 'foo', 'abbr': 'foobar' } ],
equal_to( base.AdjustCandidateInsertionText( [
{ 'word': 'foobar', 'abbr': '' } ] ) ) )
def test_AdjustCandidateInsertionText_PlusInTextAfterCursor( self ):
with MockTextAfterCursor( 'bar+zoo' ):
assert_that( [ { 'word': 'foo', 'abbr': 'foobar' } ],
equal_to( base.AdjustCandidateInsertionText( [
{ 'word': 'foobar', 'abbr': '' } ] ) ) )
def test_AdjustCandidateInsertionText_WhitespaceInTextAfterCursor( self ):
with MockTextAfterCursor( 'bar zoo' ):
assert_that( [ { 'word': 'foo', 'abbr': 'foobar' } ],
equal_to( base.AdjustCandidateInsertionText( [
{ 'word': 'foobar', 'abbr': '' } ] ) ) )
def test_AdjustCandidateInsertionText_MoreThanWordMatchingAfterCursor( self ):
with MockTextAfterCursor( 'bar.h' ):
assert_that( [ { 'word': 'foo', 'abbr': 'foobar.h' } ],
equal_to( base.AdjustCandidateInsertionText( [
{ 'word': 'foobar.h', 'abbr': '' } ] ) ) )
with MockTextAfterCursor( 'bar(zoo' ):
assert_that( [ { 'word': 'foo', 'abbr': 'foobar(zoo' } ],
equal_to( base.AdjustCandidateInsertionText( [
{ 'word': 'foobar(zoo', 'abbr': '' } ] ) ) )
def test_AdjustCandidateInsertionText_NotSuffix( self ):
with MockTextAfterCursor( 'bar' ):
assert_that( [ { 'word': 'foofoo', 'abbr': 'foofoo' } ],
equal_to( base.AdjustCandidateInsertionText( [
{ 'word': 'foofoo', 'abbr': '' } ] ) ) )
def test_AdjustCandidateInsertionText_NothingAfterCursor( self ):
with MockTextAfterCursor( '' ):
assert_that( [ { 'word': 'foofoo', 'abbr': '' },
{ 'word': 'zobar', 'abbr': '' } ],
equal_to( base.AdjustCandidateInsertionText( [
{ 'word': 'foofoo', 'abbr': '' },
{ 'word': 'zobar', 'abbr': '' } ] ) ) )
def test_AdjustCandidateInsertionText_MultipleStrings( self ):
with MockTextAfterCursor( 'bar' ):
assert_that( [ { 'word': 'foo', 'abbr': 'foobar' },
{ 'word': 'zo', 'abbr': 'zobar' },
{ 'word': 'q', 'abbr': 'qbar' },
{ 'word': '', 'abbr': 'bar' }, ],
equal_to( base.AdjustCandidateInsertionText( [
{ 'word': 'foobar', 'abbr': '' },
{ 'word': 'zobar', 'abbr': '' },
{ 'word': 'qbar', 'abbr': '' },
{ 'word': 'bar', 'abbr': '' } ] ) ) )
def test_AdjustCandidateInsertionText_DontTouchAbbr( self ):
with MockTextAfterCursor( 'bar' ):
assert_that( [ { 'word': 'foo', 'abbr': '1234' } ],
equal_to( base.AdjustCandidateInsertionText( [
{ 'word': 'foobar', 'abbr': '1234' } ] ) ) )
def test_AdjustCandidateInsertionText_NoAbbr( self ):
with MockTextAfterCursor( 'bar' ):
assert_that( [ { 'word': 'foo', 'abbr': 'foobar' } ],
equal_to( base.AdjustCandidateInsertionText( [
{ 'word': 'foobar' } ] ) ) )
def test_OverlapLength_Basic( self ):
assert_that( 3, equal_to( base.OverlapLength( 'foo bar', 'bar zoo' ) ) )
assert_that( 3, equal_to( base.OverlapLength( 'foobar', 'barzoo' ) ) )
def test_OverlapLength_BasicWithUnicode( self ):
assert_that( 3, equal_to( base.OverlapLength( 'bar fäö', 'fäö bar' ) ) )
assert_that( 3, equal_to( base.OverlapLength( 'zoofäö', 'fäözoo' ) ) )
def test_OverlapLength_OneCharOverlap( self ):
assert_that( 1, equal_to( base.OverlapLength( 'foo b', 'b zoo' ) ) )
def test_OverlapLength_SameStrings( self ):
assert_that( 6, equal_to( base.OverlapLength( 'foobar', 'foobar' ) ) )
def test_OverlapLength_Substring( self ):
assert_that( 6, equal_to( base.OverlapLength( 'foobar', 'foobarzoo' ) ) )
assert_that( 6, equal_to( base.OverlapLength( 'zoofoobar', 'foobar' ) ) )
def test_OverlapLength_LongestOverlap( self ):
assert_that( 7, equal_to( base.OverlapLength( 'bar foo foo',
'foo foo bar' ) ) )
def test_OverlapLength_EmptyInput( self ):
assert_that( 0, equal_to( base.OverlapLength( '', 'goobar' ) ) )
assert_that( 0, equal_to( base.OverlapLength( 'foobar', '' ) ) )
assert_that( 0, equal_to( base.OverlapLength( '', '' ) ) )
def test_OverlapLength_NoOverlap( self ):
assert_that( 0, equal_to( base.OverlapLength( 'foobar', 'goobar' ) ) )
assert_that( 0, equal_to( base.OverlapLength( 'foobar', '(^($@#$#@' ) ) )
assert_that( 0, equal_to( base.OverlapLength( 'foo bar zoo',
'foo zoo bar' ) ) )
def test_LastEnteredCharIsIdentifierChar_Basic( self ):
with MockCurrentFiletypes():
with MockCurrentColumnAndLineContents( 3, 'abc' ):
assert_that( base.LastEnteredCharIsIdentifierChar() )
with MockCurrentColumnAndLineContents( 2, 'abc' ):
assert_that( base.LastEnteredCharIsIdentifierChar() )
with MockCurrentColumnAndLineContents( 1, 'abc' ):
assert_that( base.LastEnteredCharIsIdentifierChar() )
def test_LastEnteredCharIsIdentifierChar_FiletypeHtml( self ):
with MockCurrentFiletypes( [ 'html' ] ):
with MockCurrentColumnAndLineContents( 3, 'ab-' ):
assert_that( base.LastEnteredCharIsIdentifierChar() )
def test_LastEnteredCharIsIdentifierChar_ColumnIsZero( self ):
with MockCurrentColumnAndLineContents( 0, 'abc' ):
assert_that( not base.LastEnteredCharIsIdentifierChar() )
def test_LastEnteredCharIsIdentifierChar_LineEmpty( self ):
with MockCurrentFiletypes():
with MockCurrentColumnAndLineContents( 3, '' ):
assert_that( not base.LastEnteredCharIsIdentifierChar() )
with MockCurrentColumnAndLineContents( 0, '' ):
assert_that( not base.LastEnteredCharIsIdentifierChar() )
def test_LastEnteredCharIsIdentifierChar_NotIdentChar( self ):
with MockCurrentFiletypes():
with MockCurrentColumnAndLineContents( 3, 'ab;' ):
assert_that( not base.LastEnteredCharIsIdentifierChar() )
with MockCurrentColumnAndLineContents( 1, ';' ):
assert_that( not base.LastEnteredCharIsIdentifierChar() )
with MockCurrentColumnAndLineContents( 3, 'ab-' ):
assert_that( not base.LastEnteredCharIsIdentifierChar() )
def test_LastEnteredCharIsIdentifierChar_Unicode( self ):
with MockCurrentFiletypes():
# CurrentColumn returns a byte offset and character ø is 2 bytes length.
with MockCurrentColumnAndLineContents( 5, 'føo(' ):
assert_that( not base.LastEnteredCharIsIdentifierChar() )
with MockCurrentColumnAndLineContents( 4, 'føo(' ):
assert_that( base.LastEnteredCharIsIdentifierChar() )
with MockCurrentColumnAndLineContents( 3, 'føo(' ):
assert_that( base.LastEnteredCharIsIdentifierChar() )
with MockCurrentColumnAndLineContents( 1, 'føo(' ):
assert_that( base.LastEnteredCharIsIdentifierChar() )
def test_CurrentIdentifierFinished_Basic( self ):
with MockCurrentFiletypes():
with MockCurrentColumnAndLineContents( 3, 'ab;' ):
assert_that( base.CurrentIdentifierFinished() )
with MockCurrentColumnAndLineContents( 2, 'ab;' ):
assert_that( not base.CurrentIdentifierFinished() )
with MockCurrentColumnAndLineContents( 1, 'ab;' ):
assert_that( not base.CurrentIdentifierFinished() )
def test_CurrentIdentifierFinished_NothingBeforeColumn( self ):
with MockCurrentColumnAndLineContents( 0, 'ab;' ):
assert_that( base.CurrentIdentifierFinished() )
with MockCurrentColumnAndLineContents( 0, '' ):
assert_that( base.CurrentIdentifierFinished() )
def test_CurrentIdentifierFinished_InvalidColumn( self ):
with MockCurrentFiletypes():
with MockCurrentColumnAndLineContents( 5, '' ):
assert_that( base.CurrentIdentifierFinished() )
with MockCurrentColumnAndLineContents( 5, 'abc' ):
assert_that( not base.CurrentIdentifierFinished() )
with MockCurrentColumnAndLineContents( 4, 'ab;' ):
assert_that( base.CurrentIdentifierFinished() )
def test_CurrentIdentifierFinished_InMiddleOfLine( self ):
with MockCurrentFiletypes():
with MockCurrentColumnAndLineContents( 4, 'bar.zoo' ):
assert_that( base.CurrentIdentifierFinished() )
with MockCurrentColumnAndLineContents( 4, 'bar(zoo' ):
assert_that( base.CurrentIdentifierFinished() )
with MockCurrentColumnAndLineContents( 4, 'bar-zoo' ):
assert_that( base.CurrentIdentifierFinished() )
def test_CurrentIdentifierFinished_Html( self ):
with MockCurrentFiletypes( [ 'html' ] ):
with MockCurrentColumnAndLineContents( 4, 'bar-zoo' ):
assert_that( not base.CurrentIdentifierFinished() )
def test_CurrentIdentifierFinished_WhitespaceOnly( self ):
with MockCurrentFiletypes():
with MockCurrentColumnAndLineContents( 1, '\n' ):
assert_that( base.CurrentIdentifierFinished() )
with MockCurrentColumnAndLineContents( 3, '\n ' ):
assert_that( base.CurrentIdentifierFinished() )
with MockCurrentColumnAndLineContents( 3, '\t\t\t\t' ):
assert_that( base.CurrentIdentifierFinished() )
def test_CurrentIdentifierFinished_Unicode( self ):
with MockCurrentFiletypes():
# CurrentColumn returns a byte offset and character ø is 2 bytes length.
with MockCurrentColumnAndLineContents( 6, 'føo ' ):
assert_that( base.CurrentIdentifierFinished() )
with MockCurrentColumnAndLineContents( 5, 'føo ' ):
assert_that( base.CurrentIdentifierFinished() )
with MockCurrentColumnAndLineContents( 4, 'føo ' ):
assert_that( not base.CurrentIdentifierFinished() )
with MockCurrentColumnAndLineContents( 3, 'føo ' ):
assert_that( not base.CurrentIdentifierFinished() )