1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
#############################################################################
# Copyright (c) 2015-2016 Balabit
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 as published
# by the Free Software Foundation, or (at your option) any later version.
#
# This program 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 this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# As an additional exemption you are allowed to compile & link against the
# OpenSSL libraries as published by the OpenSSL project. See the file
# COPYING for details.
#
#############################################################################
from __future__ import print_function, absolute_import
import unittest
class CompleterTestCase(unittest.TestCase):
def setUp(self):
self._completer = self._construct_completer()
def _construct_completer(self):
raise NotImplementedError
def _get_completions(self, word, entire_input=None):
return self._completer.complete(entire_input or word, word)
def _assert_completion_offered(self, word, completion):
self._assert_completions_offered(word, [completion])
def _assert_completion_not_offered(self, word, completion):
self._assert_completions_not_offered(word, [completion])
def _assert_no_completions_are_offered(self, word, entire_input=None):
completions = self._get_completions(word, entire_input=entire_input)
self.assertEqual(completions, [])
def _assert_completions_offered(self, word, expected_completions, entire_input=None):
completions = self._get_completions(word, entire_input=entire_input)
for completion in expected_completions:
self.assertIn(completion, completions)
self.assertEqual(completions, sorted(completions))
def _assert_completions_not_offered(self, word, unexpected_completions, entire_input=None):
completions = self._get_completions(word, entire_input=entire_input)
for completion in unexpected_completions:
self.assertNotIn(completion, completions)
def _assert_completions_start_with_word(self, word):
completions = self._get_completions(word)
for completion in completions:
self.assertTrue(completion.startswith(word),
msg=f"Completion {completion} does not start with the word to be completed {word}")
|