omni_completion_request_tests.py 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. # Copyright (C) 2016 YouCompleteMe contributors
  2. #
  3. # This file is part of YouCompleteMe.
  4. #
  5. # YouCompleteMe is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation, either version 3 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # YouCompleteMe is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with YouCompleteMe. If not, see <http://www.gnu.org/licenses/>.
  17. from __future__ import unicode_literals
  18. from __future__ import print_function
  19. from __future__ import division
  20. from __future__ import absolute_import
  21. # Not installing aliases from python-future; it's unreliable and slow.
  22. from builtins import * # noqa
  23. from mock import MagicMock
  24. from nose.tools import eq_
  25. from hamcrest import assert_that, has_entries
  26. from ycm.client.omni_completion_request import OmniCompletionRequest
  27. def BuildOmnicompletionRequest( results, start_column = 1 ):
  28. omni_completer = MagicMock()
  29. omni_completer.ComputeCandidates = MagicMock( return_value = results )
  30. request_data = {
  31. 'start_column': start_column
  32. }
  33. request = OmniCompletionRequest( omni_completer, request_data )
  34. request.Start()
  35. return request
  36. def Done_AlwaysTrue_test():
  37. request = BuildOmnicompletionRequest( [] )
  38. eq_( request.Done(), True )
  39. def Response_FromOmniCompleter_test():
  40. results = [ { "word": "test" } ]
  41. request = BuildOmnicompletionRequest( results )
  42. eq_( request.Response(), {
  43. 'completions': results,
  44. 'completion_start_column': 1
  45. } )
  46. def RawResponse_ConvertedFromOmniCompleter_test():
  47. vim_results = [
  48. { "word": "WORD", "abbr": "ABBR", "menu": "MENU",
  49. "kind": "KIND", "info": "INFO" },
  50. { "word": "WORD2", "abbr": "ABBR2", "menu": "MENU2",
  51. "kind": "KIND2", "info": "INFO" },
  52. { "word": "WORD", "abbr": "ABBR", },
  53. { },
  54. ]
  55. expected_results = [
  56. has_entries( { "insertion_text": "WORD", "menu_text": "ABBR",
  57. "extra_menu_info": "MENU", "kind": [ "KIND" ],
  58. "detailed_info": "INFO" } ),
  59. has_entries( { "insertion_text": "WORD2", "menu_text": "ABBR2",
  60. "extra_menu_info": "MENU2", "kind": [ "KIND2" ],
  61. "detailed_info": "INFO" } ),
  62. has_entries( { "insertion_text": "WORD", "menu_text": "ABBR", } ),
  63. has_entries( { } ),
  64. ]
  65. request = BuildOmnicompletionRequest( vim_results )
  66. results = request.RawResponse()[ 'completions' ]
  67. eq_( len( results ), len( expected_results ) )
  68. for result, expected_result in zip( results, expected_results ):
  69. assert_that( result, expected_result )