123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623 |
- # encoding: utf-8
- #
- # 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 __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.
- from builtins import * # noqa
- from hamcrest import assert_that, contains, contains_string, empty, has_entries
- from ycm.tests.test_utils import ( ExpectedFailure, MockVimBuffers,
- MockVimModule, ToBytesOnPY2, VimBuffer )
- MockVimModule()
- from ycm.tests import YouCompleteMeInstance
- @YouCompleteMeInstance( { 'cache_omnifunc': 1 } )
- def OmniCompleter_GetCompletions_Cache_List_test( ycm ):
- def Omnifunc( findstart, base ):
- if findstart:
- return 5
- return [ 'a', 'b', 'cdef' ]
- current_buffer = VimBuffer( 'buffer',
- contents = [ 'test.' ],
- filetype = 'java',
- omnifunc = Omnifunc )
- with MockVimBuffers( [ current_buffer ], current_buffer, ( 1, 5 ) ):
- # Make sure there is an omnifunc set up.
- ycm.OnFileReadyToParse()
- ycm.SendCompletionRequest()
- assert_that(
- ycm.GetCompletionResponse(),
- has_entries( {
- 'completions': ToBytesOnPY2( [ 'a', 'b', 'cdef' ] ),
- 'completion_start_column': 6
- } )
- )
- @YouCompleteMeInstance( { 'cache_omnifunc': 1 } )
- def OmniCompleter_GetCompletions_Cache_ListFilter_test( ycm ):
- def Omnifunc( findstart, base ):
- if findstart:
- return 5
- return [ 'a', 'b', 'cdef' ]
- current_buffer = VimBuffer( 'buffer',
- contents = [ 'test.t' ],
- filetype = 'java',
- omnifunc = Omnifunc )
- with MockVimBuffers( [ current_buffer ], current_buffer, ( 1, 6 ) ):
- # Make sure there is an omnifunc set up.
- ycm.OnFileReadyToParse()
- ycm.SendCompletionRequest()
- assert_that(
- ycm.GetCompletionResponse(),
- has_entries( {
- 'completions': empty(),
- 'completion_start_column': 6
- } )
- )
- @YouCompleteMeInstance( { 'cache_omnifunc': 0 } )
- def OmniCompleter_GetCompletions_NoCache_List_test( ycm ):
- def Omnifunc( findstart, base ):
- if findstart:
- return 5
- return [ 'a', 'b', 'cdef' ]
- current_buffer = VimBuffer( 'buffer',
- contents = [ 'test.' ],
- filetype = 'java',
- omnifunc = Omnifunc )
- with MockVimBuffers( [ current_buffer ], current_buffer, ( 1, 5 ) ):
- # Make sure there is an omnifunc set up.
- ycm.OnFileReadyToParse()
- ycm.SendCompletionRequest()
- assert_that(
- ycm.GetCompletionResponse(),
- has_entries( {
- 'completions': ToBytesOnPY2( [ 'a', 'b', 'cdef' ] ),
- 'completion_start_column': 6
- } )
- )
- @YouCompleteMeInstance( { 'cache_omnifunc': 0 } )
- def OmniCompleter_GetCompletions_NoCache_ListFilter_test( ycm ):
- def Omnifunc( findstart, base ):
- if findstart:
- return 5
- return [ 'a', 'b', 'cdef' ]
- current_buffer = VimBuffer( 'buffer',
- contents = [ 'test.t' ],
- filetype = 'java',
- omnifunc = Omnifunc )
- with MockVimBuffers( [ current_buffer ], current_buffer, ( 1, 6 ) ):
- # Make sure there is an omnifunc set up.
- ycm.OnFileReadyToParse()
- ycm.SendCompletionRequest()
- # Actual result is that the results are not filtered, as we expect the
- # omnifunc or vim itself to do this filtering.
- assert_that(
- ycm.GetCompletionResponse(),
- has_entries( {
- 'completions': ToBytesOnPY2( [ 'a', 'b', 'cdef' ] ),
- 'completion_start_column': 6
- } )
- )
- @YouCompleteMeInstance( { 'cache_omnifunc': 0 } )
- def OmniCompleter_GetCompletions_NoCache_UseFindStart_test( ycm ):
- def Omnifunc( findstart, base ):
- if findstart:
- return 0
- return [ 'a', 'b', 'cdef' ]
- current_buffer = VimBuffer( 'buffer',
- contents = [ 'test.t' ],
- filetype = 'java',
- omnifunc = Omnifunc )
- with MockVimBuffers( [ current_buffer ], current_buffer, ( 1, 6 ) ):
- # Make sure there is an omnifunc set up.
- ycm.OnFileReadyToParse()
- ycm.SendCompletionRequest()
- # Actual result is that the results are not filtered, as we expect the
- # omnifunc or vim itself to do this filtering.
- assert_that(
- ycm.GetCompletionResponse(),
- has_entries( {
- 'completions': ToBytesOnPY2( [ 'a', 'b', 'cdef' ] ),
- 'completion_start_column': 1
- } )
- )
- @YouCompleteMeInstance( { 'cache_omnifunc': 1 } )
- def OmniCompleter_GetCompletions_Cache_UseFindStart_test( ycm ):
- def Omnifunc( findstart, base ):
- if findstart:
- return 0
- return [ 'a', 'b', 'cdef' ]
- current_buffer = VimBuffer( 'buffer',
- contents = [ 'test.t' ],
- filetype = 'java',
- omnifunc = Omnifunc )
- with MockVimBuffers( [ current_buffer ], current_buffer, ( 1, 6 ) ):
- # Make sure there is an omnifunc set up.
- ycm.OnFileReadyToParse()
- ycm.SendCompletionRequest()
- # There are no results because the query 'test.t' doesn't match any
- # candidate (and cache_omnifunc=1, so we FilterAndSortCandidates).
- assert_that(
- ycm.GetCompletionResponse(),
- has_entries( {
- 'completions': empty(),
- 'completion_start_column': 1
- } )
- )
- @YouCompleteMeInstance( { 'cache_omnifunc': 1 } )
- def OmniCompleter_GetCompletions_Cache_Object_test( ycm ):
- def Omnifunc( findstart, base ):
- if findstart:
- return 5
- return { 'words': [ 'a', 'b', 'CDtEF' ] }
- current_buffer = VimBuffer( 'buffer',
- contents = [ 'test.t' ],
- filetype = 'java',
- omnifunc = Omnifunc )
- with MockVimBuffers( [ current_buffer ], current_buffer, ( 1, 6 ) ):
- # Make sure there is an omnifunc set up.
- ycm.OnFileReadyToParse()
- ycm.SendCompletionRequest()
- assert_that(
- ycm.GetCompletionResponse(),
- has_entries( {
- 'completions': [ 'CDtEF' ],
- 'completion_start_column': 6
- } )
- )
- @YouCompleteMeInstance( { 'cache_omnifunc': 1 } )
- def OmniCompleter_GetCompletions_Cache_ObjectList_test( ycm ):
- def Omnifunc( findstart, base ):
- if findstart:
- return 5
- return [
- {
- 'word': 'a',
- 'abbr': 'ABBR',
- 'menu': 'MENU',
- 'info': 'INFO',
- 'kind': 'K'
- },
- {
- 'word': 'test',
- 'abbr': 'ABBRTEST',
- 'menu': 'MENUTEST',
- 'info': 'INFOTEST',
- 'kind': 'T'
- }
- ]
- current_buffer = VimBuffer( 'buffer',
- contents = [ 'test.tt' ],
- filetype = 'java',
- omnifunc = Omnifunc )
- with MockVimBuffers( [ current_buffer ], current_buffer, ( 1, 7 ) ):
- # Make sure there is an omnifunc set up.
- ycm.OnFileReadyToParse()
- ycm.SendCompletionRequest()
- assert_that(
- ycm.GetCompletionResponse(),
- has_entries( {
- 'completions': contains( {
- 'word': 'test',
- 'abbr': 'ABBRTEST',
- 'menu': 'MENUTEST',
- 'info': 'INFOTEST',
- 'kind': 'T'
- } ),
- 'completion_start_column': 6
- } )
- )
- @YouCompleteMeInstance( { 'cache_omnifunc': 0 } )
- def OmniCompleter_GetCompletions_NoCache_ObjectList_test( ycm ):
- def Omnifunc( findstart, base ):
- if findstart:
- return 5
- return [
- {
- 'word': 'a',
- 'abbr': 'ABBR',
- 'menu': 'MENU',
- 'info': 'INFO',
- 'kind': 'K'
- },
- {
- 'word': 'test',
- 'abbr': 'ABBRTEST',
- 'menu': 'MENUTEST',
- 'info': 'INFOTEST',
- 'kind': 'T'
- }
- ]
- current_buffer = VimBuffer( 'buffer',
- contents = [ 'test.tt' ],
- filetype = 'java',
- omnifunc = Omnifunc )
- with MockVimBuffers( [ current_buffer ], current_buffer, ( 1, 7 ) ):
- # Make sure there is an omnifunc set up.
- ycm.OnFileReadyToParse()
- ycm.SendCompletionRequest()
- # We don't filter the result - we expect the omnifunc to do that
- # based on the query we supplied (Note: that means no fuzzy matching!).
- assert_that(
- ycm.GetCompletionResponse(),
- has_entries( {
- 'completions': ToBytesOnPY2( [ {
- 'word': 'a',
- 'abbr': 'ABBR',
- 'menu': 'MENU',
- 'info': 'INFO',
- 'kind': 'K'
- }, {
- 'word': 'test',
- 'abbr': 'ABBRTEST',
- 'menu': 'MENUTEST',
- 'info': 'INFOTEST',
- 'kind': 'T'
- } ] ),
- 'completion_start_column': 6
- } )
- )
- @YouCompleteMeInstance( { 'cache_omnifunc': 1 } )
- def OmniCompleter_GetCompletions_Cache_ObjectListObject_test( ycm ):
- def Omnifunc( findstart, base ):
- if findstart:
- return 5
- return { 'words': [
- {
- 'word': 'a',
- 'abbr': 'ABBR',
- 'menu': 'MENU',
- 'info': 'INFO',
- 'kind': 'K'
- },
- {
- 'word': 'test',
- 'abbr': 'ABBRTEST',
- 'menu': 'MENUTEST',
- 'info': 'INFOTEST',
- 'kind': 'T'
- }
- ] }
- current_buffer = VimBuffer( 'buffer',
- contents = [ 'test.tt' ],
- filetype = 'java',
- omnifunc = Omnifunc )
- with MockVimBuffers( [ current_buffer ], current_buffer, ( 1, 7 ) ):
- # Make sure there is an omnifunc set up.
- ycm.OnFileReadyToParse()
- ycm.SendCompletionRequest()
- assert_that(
- ycm.GetCompletionResponse(),
- has_entries( {
- 'completions': ToBytesOnPY2( [ {
- 'word': 'test',
- 'abbr': 'ABBRTEST',
- 'menu': 'MENUTEST',
- 'info': 'INFOTEST',
- 'kind': 'T'
- } ] ),
- 'completion_start_column': 6
- } )
- )
- @YouCompleteMeInstance( { 'cache_omnifunc': 0 } )
- def OmniCompleter_GetCompletions_NoCache_ObjectListObject_test( ycm ):
- def Omnifunc( findstart, base ):
- if findstart:
- return 5
- return { 'words': [
- {
- 'word': 'a',
- 'abbr': 'ABBR',
- 'menu': 'MENU',
- 'info': 'INFO',
- 'kind': 'K'
- },
- {
- 'word': 'test',
- 'abbr': 'ABBRTEST',
- 'menu': 'MENUTEST',
- 'info': 'INFOTEST',
- 'kind': 'T'
- }
- ] }
- current_buffer = VimBuffer( 'buffer',
- contents = [ 'test.tt' ],
- filetype = 'java',
- omnifunc = Omnifunc )
- with MockVimBuffers( [ current_buffer ], current_buffer, ( 1, 7 ) ):
- # Make sure there is an omnifunc set up.
- ycm.OnFileReadyToParse()
- ycm.SendCompletionRequest()
- # No FilterAndSortCandidates for cache_omnifunc=0 (we expect the omnifunc
- # to do the filtering?)
- assert_that(
- ycm.GetCompletionResponse(),
- has_entries( {
- 'completions': ToBytesOnPY2( [ {
- 'word': 'a',
- 'abbr': 'ABBR',
- 'menu': 'MENU',
- 'info': 'INFO',
- 'kind': 'K'
- }, {
- 'word': 'test',
- 'abbr': 'ABBRTEST',
- 'menu': 'MENUTEST',
- 'info': 'INFOTEST',
- 'kind': 'T'
- } ] ),
- 'completion_start_column': 6
- } )
- )
- @YouCompleteMeInstance( { 'cache_omnifunc': 1 } )
- def OmniCompleter_GetCompletions_Cache_List_Unicode_test( ycm ):
- def Omnifunc( findstart, base ):
- if findstart:
- return 12
- return [ '†est', 'å_unicode_identifier', 'πππππππ yummy πie' ]
- current_buffer = VimBuffer( 'buffer',
- contents = [ '†åsty_π.' ],
- filetype = 'java',
- omnifunc = Omnifunc )
- with MockVimBuffers( [ current_buffer ], current_buffer, ( 1, 12 ) ):
- # Make sure there is an omnifunc set up.
- ycm.OnFileReadyToParse()
- ycm.SendCompletionRequest()
- assert_that(
- ycm.GetCompletionResponse(),
- has_entries( {
- 'completions': ToBytesOnPY2( [ '†est',
- 'å_unicode_identifier',
- 'πππππππ yummy πie' ] ),
- 'completion_start_column': 13
- } )
- )
- @YouCompleteMeInstance( { 'cache_omnifunc': 0 } )
- def OmniCompleter_GetCompletions_NoCache_List_Unicode_test( ycm ):
- def Omnifunc( findstart, base ):
- if findstart:
- return 12
- return [ '†est', 'å_unicode_identifier', 'πππππππ yummy πie' ]
- current_buffer = VimBuffer( 'buffer',
- contents = [ '†åsty_π.' ],
- filetype = 'java',
- omnifunc = Omnifunc )
- with MockVimBuffers( [ current_buffer ], current_buffer, ( 1, 12 ) ):
- # Make sure there is an omnifunc set up.
- ycm.OnFileReadyToParse()
- ycm.SendCompletionRequest()
- assert_that(
- ycm.GetCompletionResponse(),
- has_entries( {
- 'completions': ToBytesOnPY2( [ '†est',
- 'å_unicode_identifier',
- 'πππππππ yummy πie' ] ),
- 'completion_start_column': 13
- } )
- )
- @ExpectedFailure( 'Filtering on unicode is not supported by the server',
- contains_string( "value for 'completions' was <[]>" ) )
- @YouCompleteMeInstance( { 'cache_omnifunc': 1 } )
- def OmniCompleter_GetCompletions_Cache_List_Filter_Unicode_test( ycm ):
- def Omnifunc( findstart, base ):
- if findstart:
- return 12
- return [ '†est', 'å_unicode_identifier', 'πππππππ yummy πie' ]
- current_buffer = VimBuffer( 'buffer',
- contents = [ '†åsty_π.ππ' ],
- filetype = 'java',
- omnifunc = Omnifunc )
- with MockVimBuffers( [ current_buffer ], current_buffer, ( 1, 17 ) ):
- # Make sure there is an omnifunc set up.
- ycm.OnFileReadyToParse()
- ycm.SendCompletionRequest()
- assert_that(
- ycm.GetCompletionResponse(),
- has_entries( {
- 'completions': ToBytesOnPY2( [ 'πππππππ yummy πie' ] ),
- 'completion_start_column': 13
- } )
- )
- @YouCompleteMeInstance( { 'cache_omnifunc': 0 } )
- def OmniCompleter_GetCompletions_NoCache_List_Filter_Unicode_test( ycm ):
- def Omnifunc( findstart, base ):
- if findstart:
- return 12
- return [ 'πππππππ yummy πie' ]
- current_buffer = VimBuffer( 'buffer',
- contents = [ '†åsty_π.ππ' ],
- filetype = 'java',
- omnifunc = Omnifunc )
- with MockVimBuffers( [ current_buffer ], current_buffer, ( 1, 17 ) ):
- # Make sure there is an omnifunc set up.
- ycm.OnFileReadyToParse()
- ycm.SendCompletionRequest()
- assert_that(
- ycm.GetCompletionResponse(),
- has_entries( {
- 'completions': ToBytesOnPY2( [ 'πππππππ yummy πie' ] ),
- 'completion_start_column': 13
- } )
- )
- @ExpectedFailure( 'Filtering on unicode is not supported by the server',
- contains_string( "value for 'completions' was <[]>" ) )
- @YouCompleteMeInstance( { 'cache_omnifunc': 1 } )
- def OmniCompleter_GetCompletions_Cache_ObjectList_Unicode_test( ycm ):
- def Omnifunc( findstart, base ):
- if findstart:
- return 12
- return [
- {
- 'word': 'ålpha∫et',
- 'abbr': 'å∫∫®',
- 'menu': 'µ´~¨á',
- 'info': '^~fo',
- 'kind': '˚'
- },
- {
- 'word': 'π†´ß†π',
- 'abbr': 'ÅııÂʉÍÊ',
- 'menu': '˜‰ˆËʉÍÊ',
- 'info': 'ȈÏØʉÍÊ',
- 'kind': 'Ê'
- }
- ]
- current_buffer = VimBuffer( 'buffer',
- contents = [ '†åsty_π.ππ' ],
- filetype = 'java',
- omnifunc = Omnifunc )
- with MockVimBuffers( [ current_buffer ], current_buffer, ( 1, 17 ) ):
- # Make sure there is an omnifunc set up.
- ycm.OnFileReadyToParse()
- ycm.SendCompletionRequest()
- assert_that(
- ycm.GetCompletionResponse(),
- has_entries( {
- 'completions': ToBytesOnPY2( [ {
- 'word': 'π†´ß†π',
- 'abbr': 'ÅııÂʉÍÊ',
- 'menu': '˜‰ˆËʉÍÊ',
- 'info': 'ȈÏØʉÍÊ',
- 'kind': 'Ê'
- } ] ),
- 'completion_start_column': 13
- } )
- )
- @YouCompleteMeInstance( { 'cache_omnifunc': 1 } )
- def OmniCompleter_GetCompletions_Cache_ObjectListObject_Unicode_test( ycm ):
- def Omnifunc( findstart, base ):
- if findstart:
- return 12
- return {
- 'words': [
- {
- 'word': 'ålpha∫et',
- 'abbr': 'å∫∫®',
- 'menu': 'µ´~¨á',
- 'info': '^~fo',
- 'kind': '˚'
- },
- {
- 'word': 'π†´ß†π',
- 'abbr': 'ÅııÂʉÍÊ',
- 'menu': '˜‰ˆËʉÍÊ',
- 'info': 'ȈÏØʉÍÊ',
- 'kind': 'Ê'
- },
- {
- 'word': 'test',
- 'abbr': 'ÅııÂʉÍÊ',
- 'menu': '˜‰ˆËʉÍÊ',
- 'info': 'ȈÏØʉÍÊ',
- 'kind': 'Ê'
- }
- ]
- }
- current_buffer = VimBuffer( 'buffer',
- contents = [ '†åsty_π.t' ],
- filetype = 'java',
- omnifunc = Omnifunc )
- with MockVimBuffers( [ current_buffer ], current_buffer, ( 1, 13 ) ):
- # Make sure there is an omnifunc set up.
- ycm.OnFileReadyToParse()
- ycm.SendCompletionRequest()
- assert_that(
- ycm.GetCompletionResponse(),
- has_entries( {
- 'completions': contains( {
- 'word': 'test',
- 'abbr': 'ÅııÂʉÍÊ',
- 'menu': '˜‰ˆËʉÍÊ',
- 'info': 'ȈÏØʉÍÊ',
- 'kind': 'Ê'
- } ),
- 'completion_start_column': 13
- } )
- )
|