2013-09-20 20:24:34 -04:00
|
|
|
#!/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 webtest import TestApp
|
2013-09-24 17:04:08 -04:00
|
|
|
from .. import ycmd
|
2013-09-20 20:24:34 -04:00
|
|
|
from ..responses import BuildCompletionData
|
2013-09-25 13:56:46 -04:00
|
|
|
from nose.tools import ok_, eq_, with_setup
|
2013-09-20 20:24:34 -04:00
|
|
|
import bottle
|
|
|
|
|
|
|
|
bottle.debug( True )
|
|
|
|
|
2013-09-24 13:04:22 -04:00
|
|
|
# 'contents' should be just one line of text
|
|
|
|
def RequestDataForFileWithContents( filename, contents ):
|
|
|
|
return {
|
2013-09-20 20:24:34 -04:00
|
|
|
'filetypes': ['foo'],
|
2013-09-24 13:04:22 -04:00
|
|
|
'filepath': filename,
|
|
|
|
'line_value': contents,
|
2013-09-20 20:24:34 -04:00
|
|
|
'file_data': {
|
2013-09-24 13:04:22 -04:00
|
|
|
filename: {
|
|
|
|
'contents': contents,
|
2013-09-20 20:24:34 -04:00
|
|
|
'filetypes': ['foo']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-24 13:04:22 -04:00
|
|
|
|
2013-09-25 13:56:46 -04:00
|
|
|
def Setup():
|
|
|
|
ycmd.SetServerStateToDefaults()
|
|
|
|
|
|
|
|
|
|
|
|
@with_setup( Setup )
|
|
|
|
def GetCompletions_IdentifierCompleter_Works_test():
|
2013-09-24 17:04:08 -04:00
|
|
|
app = TestApp( ycmd.app )
|
2013-09-24 13:04:22 -04:00
|
|
|
event_data = RequestDataForFileWithContents( '/foo/bar', 'foo foogoo ba' )
|
|
|
|
event_data.update( {
|
|
|
|
'event_name': 'FileReadyToParse',
|
|
|
|
} )
|
|
|
|
|
2013-09-20 20:24:34 -04:00
|
|
|
app.post_json( '/event_notification', event_data )
|
|
|
|
|
2013-09-24 13:04:22 -04:00
|
|
|
completion_data = RequestDataForFileWithContents( '/foo/bar',
|
|
|
|
'oo foo foogoo ba' )
|
|
|
|
completion_data.update( {
|
2013-09-20 20:24:34 -04:00
|
|
|
'query': 'oo',
|
|
|
|
'line_num': 0,
|
|
|
|
'column_num': 2,
|
|
|
|
'start_column': 0,
|
2013-09-24 13:04:22 -04:00
|
|
|
} )
|
2013-09-20 20:24:34 -04:00
|
|
|
|
|
|
|
eq_( [ BuildCompletionData( 'foo' ),
|
|
|
|
BuildCompletionData( 'foogoo' ) ],
|
|
|
|
app.post_json( '/get_completions', completion_data ).json )
|
|
|
|
|
|
|
|
|
2013-09-25 13:56:46 -04:00
|
|
|
@with_setup( Setup )
|
2013-09-23 18:31:11 -04:00
|
|
|
def GetCompletions_IdentifierCompleter_SyntaxKeywordsAdded_test():
|
2013-09-24 17:04:08 -04:00
|
|
|
app = TestApp( ycmd.app )
|
2013-09-24 13:04:22 -04:00
|
|
|
event_data = RequestDataForFileWithContents( '/foo/bar', '' )
|
|
|
|
event_data.update( {
|
2013-09-23 18:31:11 -04:00
|
|
|
'event_name': 'FileReadyToParse',
|
|
|
|
'syntax_keywords': ['foo', 'bar', 'zoo']
|
2013-09-24 13:04:22 -04:00
|
|
|
} )
|
2013-09-23 18:31:11 -04:00
|
|
|
|
|
|
|
app.post_json( '/event_notification', event_data )
|
|
|
|
|
2013-09-24 13:04:22 -04:00
|
|
|
completion_data = RequestDataForFileWithContents( '/foo/bar',
|
|
|
|
'oo ' )
|
|
|
|
completion_data.update( {
|
2013-09-23 18:31:11 -04:00
|
|
|
'query': 'oo',
|
|
|
|
'line_num': 0,
|
|
|
|
'column_num': 2,
|
|
|
|
'start_column': 0,
|
2013-09-24 13:04:22 -04:00
|
|
|
} )
|
2013-09-23 18:31:11 -04:00
|
|
|
|
|
|
|
eq_( [ BuildCompletionData( 'foo' ),
|
|
|
|
BuildCompletionData( 'zoo' ) ],
|
|
|
|
app.post_json( '/get_completions', completion_data ).json )
|
|
|
|
|
|
|
|
|
2013-09-25 13:56:46 -04:00
|
|
|
@with_setup( Setup )
|
|
|
|
def GetCompletions_UltiSnipsCompleter_Works_test():
|
|
|
|
app = TestApp( ycmd.app )
|
|
|
|
event_data = RequestDataForFileWithContents( '/foo/bar', '' )
|
|
|
|
event_data.update( {
|
|
|
|
'event_name': 'BufferVisit',
|
|
|
|
'ultisnips_snippets': [
|
|
|
|
{'trigger': 'foo', 'description': 'bar'},
|
|
|
|
{'trigger': 'zoo', 'description': 'goo'},
|
|
|
|
]
|
|
|
|
} )
|
|
|
|
|
|
|
|
app.post_json( '/event_notification', event_data )
|
|
|
|
|
|
|
|
completion_data = RequestDataForFileWithContents( '/foo/bar', 'oo ' )
|
|
|
|
completion_data.update( {
|
|
|
|
'query': 'oo',
|
|
|
|
'line_num': 0,
|
|
|
|
'column_num': 2,
|
|
|
|
'start_column': 0,
|
|
|
|
} )
|
|
|
|
|
|
|
|
eq_( [ BuildCompletionData( 'foo', '<snip> bar' ),
|
|
|
|
BuildCompletionData( 'zoo', '<snip> goo' ) ],
|
|
|
|
app.post_json( '/get_completions', completion_data ).json )
|
|
|
|
|
|
|
|
|
|
|
|
@with_setup( Setup )
|
2013-09-20 20:24:34 -04:00
|
|
|
def FiletypeCompletionAvailable_Works_test():
|
2013-09-24 17:04:08 -04:00
|
|
|
app = TestApp( ycmd.app )
|
2013-09-20 20:24:34 -04:00
|
|
|
request_data = {
|
|
|
|
'filetypes': ['cpp']
|
|
|
|
}
|
|
|
|
|
|
|
|
ok_( app.post_json( '/filetype_completion_available',
|
|
|
|
request_data ).json )
|
2013-09-24 15:53:44 -04:00
|
|
|
|
|
|
|
|
2013-09-25 13:56:46 -04:00
|
|
|
@with_setup( Setup )
|
2013-09-24 15:53:44 -04:00
|
|
|
def UserOptions_Works_test():
|
2013-09-24 17:04:08 -04:00
|
|
|
app = TestApp( ycmd.app )
|
2013-09-24 15:53:44 -04:00
|
|
|
options = app.get( '/user_options' ).json
|
|
|
|
ok_( len( options ) )
|
|
|
|
|
|
|
|
options[ 'foobar' ] = 'zoo'
|
|
|
|
|
|
|
|
app.post_json( '/user_options', options )
|
|
|
|
eq_( options, app.get( '/user_options' ).json )
|
|
|
|
|