f4d64f9f66
Pytest makes each scenario into individual selectable test. To be able to run each scenario separately is very useful for development. Change-Id: I4b1c990a1fd839ce327cd7faa27159a9b9632fed
87 lines
3.0 KiB
Python
87 lines
3.0 KiB
Python
import pytest
|
|
|
|
from jenkins_jobs import errors
|
|
|
|
|
|
def dispatch(exc, *args):
|
|
component_type = "type" # noqa
|
|
name = "name"
|
|
|
|
for value in [component_type, name]:
|
|
# prevent pep8 F841 "Unused Variable"
|
|
pass
|
|
|
|
raise exc(*args)
|
|
|
|
|
|
def gen_xml(exc, *args):
|
|
data = {"module": "data"} # noqa
|
|
|
|
raise exc(*args)
|
|
|
|
|
|
def test_no_valid_values():
|
|
# When given no valid values, InvalidAttributeError simply displays a
|
|
# message indicating the invalid value, the component type, the
|
|
# component name, and the attribute name.
|
|
message = "'{0}' is an invalid value for attribute {1}.{2}".format(
|
|
"fnord", "type.name", "fubar"
|
|
)
|
|
with pytest.raises(errors.InvalidAttributeError) as excinfo:
|
|
dispatch(errors.InvalidAttributeError, "fubar", "fnord")
|
|
assert str(excinfo.value) == message
|
|
|
|
|
|
def test_with_valid_values():
|
|
# When given valid values, InvalidAttributeError displays a message
|
|
# indicating the invalid value, the component type, the component name,
|
|
# and the attribute name; additionally, it lists the valid values for
|
|
# the current component type & name.
|
|
valid_values = ["herp", "derp"]
|
|
message = "'{0}' is an invalid value for attribute {1}.{2}".format(
|
|
"fnord", "type.name", "fubar"
|
|
)
|
|
message += "\nValid values include: {0}".format(
|
|
", ".join("'{0}'".format(value) for value in valid_values)
|
|
)
|
|
|
|
with pytest.raises(errors.InvalidAttributeError) as excinfo:
|
|
dispatch(errors.InvalidAttributeError, "fubar", "fnord", valid_values)
|
|
assert str(excinfo.value) == message
|
|
|
|
|
|
def test_with_single_missing_attribute():
|
|
# When passed a single missing attribute, display a message indicating
|
|
# * the missing attribute
|
|
# * which component type and component name is missing it.
|
|
missing_attribute = "herp"
|
|
message = "Missing {0} from an instance of '{1}'".format(
|
|
missing_attribute, "type.name"
|
|
)
|
|
|
|
with pytest.raises(errors.MissingAttributeError) as excinfo:
|
|
dispatch(errors.MissingAttributeError, missing_attribute)
|
|
assert str(excinfo.value) == message
|
|
|
|
with pytest.raises(errors.MissingAttributeError) as excinfo:
|
|
gen_xml(errors.MissingAttributeError, missing_attribute)
|
|
assert str(excinfo.value) == message.replace("type.name", "module")
|
|
|
|
|
|
def test_with_multiple_missing_attributes():
|
|
# When passed multiple missing attributes, display a message indicating
|
|
# * the missing attributes
|
|
# * which component type and component name is missing it.
|
|
missing_attribute = ["herp", "derp"]
|
|
message = "One of {0} must be present in '{1}'".format(
|
|
", ".join("'{0}'".format(value) for value in missing_attribute), "type.name"
|
|
)
|
|
|
|
with pytest.raises(errors.MissingAttributeError) as excinfo:
|
|
dispatch(errors.MissingAttributeError, missing_attribute)
|
|
assert str(excinfo.value) == message
|
|
|
|
with pytest.raises(errors.MissingAttributeError) as excinfo:
|
|
gen_xml(errors.MissingAttributeError, missing_attribute)
|
|
assert str(excinfo.value) == message.replace("type.name", "module")
|