omni_completion_request_tests.py 2.7 KB

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