246 lines
8.5 KiB
Python
246 lines
8.5 KiB
Python
#!/usr/bin/env python
|
|
#
|
|
# Copyright (C) 2013 Strahinja Val Markovic <val@markovic.io>
|
|
#
|
|
# 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 ..server_utils import SetUpPythonPath
|
|
SetUpPythonPath()
|
|
import time
|
|
import httplib
|
|
from .test_utils import Setup, BuildRequest, PathToTestFile
|
|
from webtest import TestApp
|
|
from nose.tools import eq_, with_setup
|
|
from hamcrest import ( assert_that, has_items, has_entry,
|
|
contains_inanyorder )
|
|
from ..responses import BuildCompletionData, UnknownExtraConf
|
|
from .. import handlers
|
|
import bottle
|
|
|
|
bottle.debug( True )
|
|
|
|
|
|
# TODO: Make the other tests use this helper too instead of BuildCompletionData
|
|
def CompletionEntryMatcher( insertion_text ):
|
|
return has_entry( 'insertion_text', insertion_text )
|
|
|
|
|
|
@with_setup( Setup )
|
|
def GetCompletions_IdentifierCompleter_Works_test():
|
|
app = TestApp( handlers.app )
|
|
event_data = BuildRequest( contents = 'foo foogoo ba',
|
|
event_name = 'FileReadyToParse' )
|
|
|
|
app.post_json( '/event_notification', event_data )
|
|
|
|
completion_data = BuildRequest( contents = 'oo foo foogoo ba',
|
|
query = 'oo',
|
|
column_num = 2 )
|
|
|
|
eq_( [ BuildCompletionData( 'foo' ),
|
|
BuildCompletionData( 'foogoo' ) ],
|
|
app.post_json( '/completions', completion_data ).json )
|
|
|
|
|
|
@with_setup( Setup )
|
|
def GetCompletions_CsCompleter_Works_test():
|
|
app = TestApp( handlers.app )
|
|
filepath = PathToTestFile( 'testy/Program.cs' )
|
|
contents = open( filepath ).read()
|
|
event_data = BuildRequest( filepath = filepath,
|
|
filetype = 'cs',
|
|
contents = contents,
|
|
event_name = 'FileReadyToParse' )
|
|
|
|
app.post_json( '/event_notification', event_data )
|
|
|
|
# We need to wait until the server has started up.
|
|
while True:
|
|
result = app.post_json( '/run_completer_command',
|
|
BuildRequest( completer_target = 'filetype_default',
|
|
command_arguments = ['ServerRunning'],
|
|
filetype = 'cs' ) ).json
|
|
if result:
|
|
break
|
|
time.sleep( 0.2 )
|
|
|
|
completion_data = BuildRequest( filepath = filepath,
|
|
filetype = 'cs',
|
|
contents = contents,
|
|
line_num = 8,
|
|
column_num = 11,
|
|
start_column = 11 )
|
|
|
|
results = app.post_json( '/completions', completion_data ).json
|
|
assert_that( results, has_items( CompletionEntryMatcher( 'CursorLeft' ),
|
|
CompletionEntryMatcher( 'CursorSize' ) ) )
|
|
|
|
|
|
@with_setup( Setup )
|
|
def GetCompletions_ClangCompleter_WorksWithExplicitFlags_test():
|
|
app = TestApp( handlers.app )
|
|
contents = """
|
|
struct Foo {
|
|
int x;
|
|
int y;
|
|
char c;
|
|
};
|
|
|
|
int main()
|
|
{
|
|
Foo foo;
|
|
foo.
|
|
}
|
|
"""
|
|
|
|
# 0-based line and column!
|
|
completion_data = BuildRequest( filepath = '/foo.cpp',
|
|
filetype = 'cpp',
|
|
contents = contents,
|
|
line_num = 10,
|
|
column_num = 6,
|
|
start_column = 6,
|
|
compilation_flags = ['-x', 'c++'] )
|
|
|
|
results = app.post_json( '/completions', completion_data ).json
|
|
assert_that( results, has_items( CompletionEntryMatcher( 'c' ),
|
|
CompletionEntryMatcher( 'x' ),
|
|
CompletionEntryMatcher( 'y' ) ) )
|
|
|
|
|
|
@with_setup( Setup )
|
|
def GetCompletions_ClangCompleter_UnknownExtraConfException_test():
|
|
app = TestApp( handlers.app )
|
|
filepath = PathToTestFile( 'basic.cpp' )
|
|
completion_data = BuildRequest( filepath = filepath,
|
|
filetype = 'cpp',
|
|
contents = open( filepath ).read(),
|
|
force_semantic = True )
|
|
|
|
response = app.post_json( '/completions',
|
|
completion_data,
|
|
expect_errors = True )
|
|
|
|
eq_( response.status_code, httplib.INTERNAL_SERVER_ERROR )
|
|
assert_that( response.json,
|
|
has_entry( 'exception',
|
|
has_entry( 'TYPE', UnknownExtraConf.__name__ ) ) )
|
|
|
|
|
|
@with_setup( Setup )
|
|
def GetCompletions_ClangCompleter_WorksWhenExtraConfExplicitlyAllowed_test():
|
|
app = TestApp( handlers.app )
|
|
app.post_json( '/load_extra_conf_file',
|
|
{ 'filepath': PathToTestFile( '.ycm_extra_conf.py' ) } )
|
|
|
|
filepath = PathToTestFile( 'basic.cpp' )
|
|
completion_data = BuildRequest( filepath = filepath,
|
|
filetype = 'cpp',
|
|
contents = open( filepath ).read(),
|
|
line_num = 10,
|
|
column_num = 6,
|
|
start_column = 6 )
|
|
|
|
results = app.post_json( '/completions', completion_data ).json
|
|
assert_that( results, has_items( CompletionEntryMatcher( 'c' ),
|
|
CompletionEntryMatcher( 'x' ),
|
|
CompletionEntryMatcher( 'y' ) ) )
|
|
|
|
|
|
@with_setup( Setup )
|
|
def GetCompletions_ClangCompleter_ForceSemantic_OnlyFileteredCompletions_test():
|
|
app = TestApp( handlers.app )
|
|
contents = """
|
|
int main()
|
|
{
|
|
int foobar;
|
|
int floozar;
|
|
int gooboo;
|
|
int bleble;
|
|
|
|
fooar
|
|
}
|
|
"""
|
|
|
|
# 0-based line and column!
|
|
completion_data = BuildRequest( filepath = '/foo.cpp',
|
|
filetype = 'cpp',
|
|
force_semantic = True,
|
|
contents = contents,
|
|
line_num = 8,
|
|
column_num = 7,
|
|
start_column = 7,
|
|
query = 'fooar',
|
|
compilation_flags = ['-x', 'c++'] )
|
|
|
|
results = app.post_json( '/completions', completion_data ).json
|
|
assert_that( results,
|
|
contains_inanyorder( CompletionEntryMatcher( 'foobar' ),
|
|
CompletionEntryMatcher( 'floozar' ) ) )
|
|
|
|
|
|
@with_setup( Setup )
|
|
def GetCompletions_ForceSemantic_Works_test():
|
|
app = TestApp( handlers.app )
|
|
|
|
completion_data = BuildRequest( filetype = 'python',
|
|
force_semantic = True )
|
|
|
|
results = app.post_json( '/completions', completion_data ).json
|
|
assert_that( results, has_items( CompletionEntryMatcher( 'abs' ),
|
|
CompletionEntryMatcher( 'open' ),
|
|
CompletionEntryMatcher( 'bool' ) ) )
|
|
|
|
|
|
@with_setup( Setup )
|
|
def GetCompletions_IdentifierCompleter_SyntaxKeywordsAdded_test():
|
|
app = TestApp( handlers.app )
|
|
event_data = BuildRequest( event_name = 'FileReadyToParse',
|
|
syntax_keywords = ['foo', 'bar', 'zoo'] )
|
|
|
|
app.post_json( '/event_notification', event_data )
|
|
|
|
completion_data = BuildRequest( contents = 'oo ',
|
|
query = 'oo',
|
|
column_num = 2 )
|
|
|
|
eq_( [ BuildCompletionData( 'foo' ),
|
|
BuildCompletionData( 'zoo' ) ],
|
|
app.post_json( '/completions', completion_data ).json )
|
|
|
|
|
|
@with_setup( Setup )
|
|
def GetCompletions_UltiSnipsCompleter_Works_test():
|
|
app = TestApp( handlers.app )
|
|
event_data = BuildRequest(
|
|
event_name = 'BufferVisit',
|
|
ultisnips_snippets = [
|
|
{'trigger': 'foo', 'description': 'bar'},
|
|
{'trigger': 'zoo', 'description': 'goo'},
|
|
] )
|
|
|
|
app.post_json( '/event_notification', event_data )
|
|
|
|
completion_data = BuildRequest( contents = 'oo ',
|
|
query = 'oo',
|
|
column_num = 2 )
|
|
|
|
eq_( [ BuildCompletionData( 'foo', '<snip> bar' ),
|
|
BuildCompletionData( 'zoo', '<snip> goo' ) ],
|
|
app.post_json( '/completions', completion_data ).json )
|
|
|
|
|