omni_completion_request_tests.py 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. from future import standard_library
  22. standard_library.install_aliases()
  23. from builtins import * # noqa
  24. from mock import MagicMock
  25. from nose.tools import eq_
  26. from hamcrest import assert_that, has_entries
  27. from ycm.client.omni_completion_request import OmniCompletionRequest
  28. def BuildOmnicompletionRequest( results ):
  29. omni_completer = MagicMock()
  30. omni_completer.ComputeCandidates = MagicMock( return_value = results )
  31. request = OmniCompletionRequest( omni_completer, None )
  32. request.Start()
  33. return request
  34. def Done_AlwaysTrue_test():
  35. request = BuildOmnicompletionRequest( [] )
  36. eq_( request.Done(), True )
  37. def Response_FromOmniCompleter_test():
  38. results = [ { "word": "test" } ]
  39. request = BuildOmnicompletionRequest( results )
  40. eq_( request.Response(), results )
  41. def RawResponse_ConvertedFromOmniCompleter_test():
  42. vim_results = [
  43. { "word": "WORD", "abbr": "ABBR", "menu": "MENU",
  44. "kind": "KIND", "info": "INFO" },
  45. { "word": "WORD2", "abbr": "ABBR2", "menu": "MENU2",
  46. "kind": "KIND2", "info": "INFO" },
  47. { "word": "WORD", "abbr": "ABBR", },
  48. { },
  49. ]
  50. expected_results = [
  51. has_entries( { "insertion_text": "WORD", "menu_text": "ABBR",
  52. "extra_menu_info": "MENU", "kind": [ "KIND" ],
  53. "detailed_info": "INFO" } ),
  54. has_entries( { "insertion_text": "WORD2", "menu_text": "ABBR2",
  55. "extra_menu_info": "MENU2", "kind": [ "KIND2" ],
  56. "detailed_info": "INFO" } ),
  57. has_entries( { "insertion_text": "WORD", "menu_text": "ABBR", } ),
  58. has_entries( { } ),
  59. ]
  60. request = BuildOmnicompletionRequest( vim_results )
  61. results = request.RawResponse()
  62. eq_( len( results ), len( expected_results ) )
  63. for result, expected_result in zip( results, expected_results ):
  64. assert_that( result, expected_result )