blob: 990b4059d236d1298ec9dc5a2efb00f4d9015665 [file] [log] [blame]
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import click
import pytest
from buildstream._frontend.app import _prefix_choice_value_proc
def test_prefix_choice_value_proc_full_match():
value_proc = _prefix_choice_value_proc(["foo", "bar", "baz"])
assert value_proc("foo") == "foo"
assert value_proc("bar") == "bar"
assert value_proc("baz") == "baz"
def test_prefix_choice_value_proc_prefix_match():
value_proc = _prefix_choice_value_proc(["foo"])
assert value_proc("f") == "foo"
def test_prefix_choice_value_proc_ambigous_match():
value_proc = _prefix_choice_value_proc(["bar", "baz"])
assert value_proc("bar") == "bar"
assert value_proc("baz") == "baz"
with pytest.raises(click.UsageError):
value_proc("ba")
def test_prefix_choice_value_proc_value_not_in_choices():
value_proc = _prefix_choice_value_proc(["bar", "baz"])
with pytest.raises(click.UsageError):
value_proc("foo")