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 64 65 66 67 68 69 70
|
"""Test suite prance.util.exceptions."""
__author__ = "Jens Finkhaeuser"
__copyright__ = "Copyright (c) 2018 Jens Finkhaeuser"
__license__ = "MIT"
__all__ = ()
import pytest
from prance.util import exceptions
from prance import ValidationError
def test_reraise_without_value_no_extra_message():
with pytest.raises(ValidationError) as caught:
exceptions.raise_from(ValidationError, None)
# The first is obvious from pytest.raises. The rest tests
# known attributes
assert caught.type == ValidationError
assert str(caught.value) == ""
def test_reraise_without_value_extra_message():
with pytest.raises(ValidationError) as caught:
exceptions.raise_from(ValidationError, None, "asdf")
# The first is obvious from pytest.raises. The rest tests
# known attributes
assert caught.type == ValidationError
assert str(caught.value) == "asdf"
def test_reraise_with_value_no_extra_message():
with pytest.raises(ValidationError) as caught:
try:
raise RuntimeError("foo")
except RuntimeError as inner:
exceptions.raise_from(ValidationError, inner)
# The first is obvious from pytest.raises. The rest tests
# known attributes
assert caught.type == ValidationError
assert str(caught.value) == "foo"
def test_reraise_with_value_extra_message():
with pytest.raises(ValidationError) as caught:
try:
raise RuntimeError("foo")
except RuntimeError as inner:
exceptions.raise_from(ValidationError, inner, "asdf")
# The first is obvious from pytest.raises. The rest tests
# known attributes
assert caught.type == ValidationError
assert str(caught.value) == "foo -- asdf"
def test_reraise_with_empty_value_string_extra_message():
with pytest.raises(ValidationError) as caught:
try:
raise RuntimeError()
except RuntimeError as inner:
exceptions.raise_from(ValidationError, inner, "asdf")
# The first is obvious from pytest.raises. The rest tests
# known attributes
assert caught.type == ValidationError
assert str(caught.value) == "asdf"
|