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 63
|
#############################################################################
# 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
from .test_completer import CompleterTestCase
from ..choicecompleter import ChoiceCompleter
class TestChoiceCompleter(CompleterTestCase):
# pylint: disable=arguments-differ
def _construct_completer(self, choices=None, prefix=None, suffix=None):
return ChoiceCompleter(choices or ['foo', 'bar', 'baz'],
prefix=prefix,
suffix=suffix)
def test_all_choices_are_offered_for_an_empty_string(self):
self._completer = self._construct_completer(suffix='')
self._assert_completions_offered('', ['foo', 'bar', 'baz'])
def test_only_completions_that_start_with_word_are_listed_as_completions(self):
for word in ('f', 'b'):
self._assert_completions_start_with_word(word)
def test_suffix_is_attached_to_all_potential_matches(self):
self._completer = self._construct_completer(suffix=' ')
self._assert_completions_offered('b', ['bar ', 'baz '])
self._assert_completions_not_offered('b', ['bar', 'baz'])
def test_prefix_is_attached_to_all_potential_matches(self):
self._completer = self._construct_completer(prefix='$', suffix='')
self._assert_completions_offered('$b', ['$bar', '$baz'])
self._assert_completions_not_offered('$b', ['bar', 'baz'])
def test_only_prefix_is_offered_if_entire_input_is_shorter(self):
self._completer = self._construct_completer(prefix='$@', suffix='@')
self._assert_completion_offered('', '$@')
self._assert_completion_offered('$', '$@')
self._assert_completion_not_offered('', '$@bar@')
self._assert_completion_not_offered('$', '$@bar@')
self._assert_completions_offered('$@', ['$@foo@', '$@bar@', '$@baz@'])
def test_not_even_the_prefix_is_offered_if_the_entire_input_diverged_already(self):
self._completer = self._construct_completer(prefix='$@', suffix='@')
self._assert_completions_not_offered('q', ['$', '$@', '$@foo@'])
|