3 from pybind11_tests
import exceptions
as m
4 import pybind11_cross_module_tests
as cm
8 with pytest.raises(RuntimeError)
as excinfo:
9 m.throw_std_exception()
10 assert msg(excinfo.value) ==
"This exception was intentionally thrown." 14 with pytest.raises(RuntimeError)
as excinfo:
15 m.throw_already_set(
False)
16 assert msg(excinfo.value) ==
"Unknown internal error occurred" 18 with pytest.raises(ValueError)
as excinfo:
19 m.throw_already_set(
True)
20 assert msg(excinfo.value) ==
"foo" 24 with pytest.raises(RuntimeError)
as excinfo:
25 cm.raise_runtime_error()
26 assert str(excinfo.value) ==
"My runtime error" 28 with pytest.raises(ValueError)
as excinfo:
29 cm.raise_value_error()
30 assert str(excinfo.value) ==
"My value error" 32 with pytest.raises(ValueError)
as excinfo:
33 cm.throw_pybind_value_error()
34 assert str(excinfo.value) ==
"pybind11 value error" 36 with pytest.raises(TypeError)
as excinfo:
37 cm.throw_pybind_type_error()
38 assert str(excinfo.value) ==
"pybind11 type error" 40 with pytest.raises(StopIteration)
as excinfo:
41 cm.throw_stop_iteration()
46 assert m.python_call_in_destructor(d)
is True 47 assert d[
"good"]
is True 51 assert m.exception_matches()
52 assert m.exception_matches_base()
53 assert m.modulenotfound_exception_matches_base()
58 with pytest.raises(m.MyException)
as excinfo:
60 assert msg(excinfo.value) ==
"this error should go to a custom type" 63 with pytest.raises(RuntimeError)
as excinfo:
65 assert msg(excinfo.value) ==
"this error should go to a standard Python exception" 68 with pytest.raises(RuntimeError)
as excinfo:
70 assert msg(excinfo.value) ==
"Caught an unknown exception!" 73 with pytest.raises(m.MyException)
as excinfo:
75 assert msg(excinfo.value) ==
"this error is rethrown" 78 with pytest.raises(RuntimeError)
as excinfo:
79 m.throws_logic_error()
80 assert msg(excinfo.value) ==
"this error should fall through to the standard handler" 83 with pytest.raises(m.MyException5)
as excinfo:
85 assert msg(excinfo.value) ==
"this is a helper-defined translated exception" 88 with pytest.raises(m.MyException5)
as excinfo:
90 assert msg(excinfo.value) ==
"MyException5 subclass" 91 assert isinstance(excinfo.value, m.MyException5_1)
93 with pytest.raises(m.MyException5_1)
as excinfo:
95 assert msg(excinfo.value) ==
"MyException5 subclass" 97 with pytest.raises(m.MyException5)
as excinfo:
100 except m.MyException5_1:
101 raise RuntimeError(
"Exception error: caught child from parent")
102 assert msg(excinfo.value) ==
"this is a helper-defined translated exception" 106 """Tests nested (e.g. C++ -> Python -> C++) exception handling""" 109 raise m.MyException(
"nested error")
112 raise m.MyException5(
"nested error 5")
118 m.try_catch(m.MyException5, throw_myex5)
119 assert str(capture).startswith(
"MyException5: nested error 5")
122 with pytest.raises(m.MyException)
as excinfo:
123 m.try_catch(m.MyException5, throw_myex)
124 assert str(excinfo.value) ==
"nested error" 126 def pycatch(exctype, f, *args):
129 except m.MyException
as e:
135 m.MyException5, pycatch, m.MyException, m.try_catch, m.MyException, throw_myex5)
136 assert str(capture).startswith(
"MyException5: nested error 5")
140 m.try_catch(m.MyException, pycatch, m.MyException5, m.throws4)
141 assert capture ==
"this error is rethrown" 144 with pytest.raises(m.MyException5)
as excinfo:
145 m.try_catch(m.MyException, pycatch, m.MyException, m.throws5)
146 assert str(excinfo.value) ==
"this is a helper-defined translated exception"
def test_std_exception(msg)
def test_exception_matches()
def test_cross_module_exceptions()
def test_error_already_set(msg)
return isinstance(obj, type)
def test_python_call_in_catch()
def test_nested_throws(capture)
void print(Args &&...args)