-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
/
Copy pathraises.py
1525 lines (1297 loc) · 59.1 KB
/
raises.py
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from __future__ import annotations
from abc import ABC
from abc import abstractmethod
import re
from re import Pattern
import sys
from textwrap import indent
from typing import Any
from typing import cast
from typing import final
from typing import Generic
from typing import get_args
from typing import get_origin
from typing import Literal
from typing import overload
from typing import TYPE_CHECKING
import warnings
from _pytest._code import ExceptionInfo
from _pytest._code.code import stringify_exception
from _pytest.deprecated import CALLABLE_RAISES
from _pytest.deprecated import deprecated
from _pytest.outcomes import fail
from _pytest.warning_types import PytestWarning
if TYPE_CHECKING:
from collections.abc import Callable
from collections.abc import Sequence
# for some reason Sphinx does not play well with 'from types import TracebackType'
import types
from typing_extensions import ParamSpec
from typing_extensions import TypeGuard
from typing_extensions import TypeVar
P = ParamSpec("P")
# this conditional definition is because we want to allow a TypeVar default
BaseExcT_co_default = TypeVar(
"BaseExcT_co_default",
bound=BaseException,
default=BaseException,
covariant=True,
)
# Use short name because it shows up in docs.
E = TypeVar("E", bound=BaseException, default=BaseException)
else:
from typing import TypeVar
BaseExcT_co_default = TypeVar(
"BaseExcT_co_default", bound=BaseException, covariant=True
)
# RaisesGroup doesn't work with a default.
BaseExcT_co = TypeVar("BaseExcT_co", bound=BaseException, covariant=True)
BaseExcT_1 = TypeVar("BaseExcT_1", bound=BaseException)
BaseExcT_2 = TypeVar("BaseExcT_2", bound=BaseException)
ExcT_1 = TypeVar("ExcT_1", bound=Exception)
ExcT_2 = TypeVar("ExcT_2", bound=Exception)
if sys.version_info < (3, 11):
from exceptiongroup import BaseExceptionGroup
from exceptiongroup import ExceptionGroup
# String patterns default to including the unicode flag.
_REGEX_NO_FLAGS = re.compile(r"").flags
# pytest.raises helper
@overload
def raises(
expected_exception: type[E] | tuple[type[E], ...],
*,
match: str | re.Pattern[str] | None = ...,
check: Callable[[E], bool] = ...,
) -> RaisesExc[E]: ...
@overload
def raises(
*,
match: str | re.Pattern[str],
# If exception_type is not provided, check() must do any typechecks itself.
check: Callable[[BaseException], bool] = ...,
) -> RaisesExc[BaseException]: ...
@overload
def raises(*, check: Callable[[BaseException], bool]) -> RaisesExc[BaseException]: ...
@overload
@deprecated("Use context-manager form instead")
def raises(
expected_exception: type[E] | tuple[type[E], ...],
func: Callable[P, object],
*args: P.args,
**kwargs: P.kwargs,
) -> ExceptionInfo[E]: ...
def raises(
expected_exception: type[E] | tuple[type[E], ...] | None = None,
func: Callable[P, object] | None = None,
*args: Any,
**kwargs: Any,
) -> RaisesExc[BaseException] | ExceptionInfo[E]:
r"""Assert that a code block/function call raises an exception type, or one of its subclasses.
:param expected_exception:
The expected exception type, or a tuple if one of multiple possible
exception types are expected. Note that subclasses of the passed exceptions
will also match.
This is not a required parameter, you may opt to only use ``match`` and/or
``check`` for verifying the raised exception.
:kwparam str | re.Pattern[str] | None match:
If specified, a string containing a regular expression,
or a regular expression object, that is tested against the string
representation of the exception and its :pep:`678` `__notes__`
using :func:`re.search`.
To match a literal string that may contain :ref:`special characters
<re-syntax>`, the pattern can first be escaped with :func:`re.escape`.
(This is only used when ``pytest.raises`` is used as a context manager,
and passed through to the function otherwise.
When using ``pytest.raises`` as a function, you can use:
``pytest.raises(Exc, func, match="passed on").match("my pattern")``.)
:kwparam Callable[[BaseException], bool] check:
.. versionadded:: 8.4
If specified, a callable that will be called with the exception as a parameter
after checking the type and the match regex if specified.
If it returns ``True`` it will be considered a match, if not it will
be considered a failed match.
Use ``pytest.raises`` as a context manager, which will capture the exception of the given
type, or any of its subclasses::
>>> import pytest
>>> with pytest.raises(ZeroDivisionError):
... 1/0
If the code block does not raise the expected exception (:class:`ZeroDivisionError` in the example
above), or no exception at all, the check will fail instead.
You can also use the keyword argument ``match`` to assert that the
exception matches a text or regex::
>>> with pytest.raises(ValueError, match='must be 0 or None'):
... raise ValueError("value must be 0 or None")
>>> with pytest.raises(ValueError, match=r'must be \d+$'):
... raise ValueError("value must be 42")
The ``match`` argument searches the formatted exception string, which includes any
`PEP-678 <https://peps.python.org/pep-0678/>`__ ``__notes__``:
>>> with pytest.raises(ValueError, match=r"had a note added"): # doctest: +SKIP
... e = ValueError("value must be 42")
... e.add_note("had a note added")
... raise e
The ``check`` argument, if provided, must return True when passed the raised exception
for the match to be successful, otherwise an :exc:`AssertionError` is raised.
>>> import errno
>>> with pytest.raises(OSError, check=lambda e: e.errno == errno.EACCES):
... raise OSError(errno.EACCES, "no permission to view")
The context manager produces an :class:`ExceptionInfo` object which can be used to inspect the
details of the captured exception::
>>> with pytest.raises(ValueError) as exc_info:
... raise ValueError("value must be 42")
>>> assert exc_info.type is ValueError
>>> assert exc_info.value.args[0] == "value must be 42"
.. warning::
Given that ``pytest.raises`` matches subclasses, be wary of using it to match :class:`Exception` like this::
# Careful, this will catch ANY exception raised.
with pytest.raises(Exception):
some_function()
Because :class:`Exception` is the base class of almost all exceptions, it is easy for this to hide
real bugs, where the user wrote this expecting a specific exception, but some other exception is being
raised due to a bug introduced during a refactoring.
Avoid using ``pytest.raises`` to catch :class:`Exception` unless certain that you really want to catch
**any** exception raised.
.. note::
When using ``pytest.raises`` as a context manager, it's worthwhile to
note that normal context manager rules apply and that the exception
raised *must* be the final line in the scope of the context manager.
Lines of code after that, within the scope of the context manager will
not be executed. For example::
>>> value = 15
>>> with pytest.raises(ValueError) as exc_info:
... if value > 10:
... raise ValueError("value must be <= 10")
... assert exc_info.type is ValueError # This will not execute.
Instead, the following approach must be taken (note the difference in
scope)::
>>> with pytest.raises(ValueError) as exc_info:
... if value > 10:
... raise ValueError("value must be <= 10")
...
>>> assert exc_info.type is ValueError
**Expecting exception groups**
When expecting exceptions wrapped in :exc:`BaseExceptionGroup` or
:exc:`ExceptionGroup`, you should instead use :class:`pytest.RaisesGroup`.
**Using with** ``pytest.mark.parametrize``
When using :ref:`pytest.mark.parametrize ref`
it is possible to parametrize tests such that
some runs raise an exception and others do not.
See :ref:`parametrizing_conditional_raising` for an example.
.. seealso::
:ref:`assertraises` for more examples and detailed discussion.
**Legacy form**
It is possible to specify a callable by passing a to-be-called lambda::
>>> raises(ZeroDivisionError, lambda: 1/0)
<ExceptionInfo ...>
or you can specify an arbitrary callable with arguments::
>>> def f(x): return 1/x
...
>>> raises(ZeroDivisionError, f, 0)
<ExceptionInfo ...>
>>> raises(ZeroDivisionError, f, x=0)
<ExceptionInfo ...>
The form above is going to be deprecated in a future pytest release as the
context manager form is regarded as more readable and less error-prone.
.. note::
Similar to caught exception objects in Python, explicitly clearing
local references to returned ``ExceptionInfo`` objects can
help the Python interpreter speed up its garbage collection.
Clearing those references breaks a reference cycle
(``ExceptionInfo`` --> caught exception --> frame stack raising
the exception --> current frame stack --> local variables -->
``ExceptionInfo``) which makes Python keep all objects referenced
from that cycle (including all local variables in the current
frame) alive until the next cyclic garbage collection run.
More detailed information can be found in the official Python
documentation for :ref:`the try statement <python:try>`.
"""
__tracebackhide__ = True
if func is None and not args:
if set(kwargs) - {"match", "check", "expected_exception"}:
msg = "Unexpected keyword arguments passed to pytest.raises: "
msg += ", ".join(sorted(kwargs))
msg += "\nUse context-manager form instead?"
raise TypeError(msg)
if expected_exception is None:
return RaisesExc(**kwargs)
return RaisesExc(expected_exception, **kwargs)
if not expected_exception:
raise ValueError(
f"Expected an exception type or a tuple of exception types, but got `{expected_exception!r}`. "
f"Raising exceptions is already understood as failing the test, so you don't need "
f"any special code to say 'this should never raise an exception'."
)
if not callable(func):
raise TypeError(f"{func!r} object (type: {type(func)}) must be callable")
warnings.warn(CALLABLE_RAISES, stacklevel=2)
with RaisesExc(expected_exception) as excinfo:
func(*args, **kwargs)
try:
return excinfo
finally:
del excinfo
# note: RaisesExc/RaisesGroup uses fail() internally, so this alias
# indicates (to [internal] plugins?) that `pytest.raises` will
# raise `_pytest.outcomes.Failed`, where
# `outcomes.Failed is outcomes.fail.Exception is raises.Exception`
# note: this is *not* the same as `_pytest.main.Failed`
# note: mypy does not recognize this attribute, and it's not possible
# to use a protocol/decorator like the others in outcomes due to
# https://github.com/python/mypy/issues/18715
raises.Exception = fail.Exception # type: ignore[attr-defined]
def _match_pattern(match: Pattern[str]) -> str | Pattern[str]:
"""Helper function to remove redundant `re.compile` calls when printing regex"""
return match.pattern if match.flags == _REGEX_NO_FLAGS else match
def repr_callable(fun: Callable[[BaseExcT_1], bool]) -> str:
"""Get the repr of a ``check`` parameter.
Split out so it can be monkeypatched (e.g. by hypothesis)
"""
return repr(fun)
def backquote(s: str) -> str:
return "`" + s + "`"
def _exception_type_name(
e: type[BaseException] | tuple[type[BaseException], ...],
) -> str:
if isinstance(e, type):
return e.__name__
if len(e) == 1:
return e[0].__name__
return "(" + ", ".join(ee.__name__ for ee in e) + ")"
def _check_raw_type(
expected_type: type[BaseException] | tuple[type[BaseException], ...] | None,
exception: BaseException,
) -> str | None:
if expected_type is None or expected_type == ():
return None
if not isinstance(
exception,
expected_type,
):
actual_type_str = backquote(_exception_type_name(type(exception)) + "()")
expected_type_str = backquote(_exception_type_name(expected_type))
if (
isinstance(exception, BaseExceptionGroup)
and isinstance(expected_type, type)
and not issubclass(expected_type, BaseExceptionGroup)
):
return f"Unexpected nested {actual_type_str}, expected {expected_type_str}"
return f"{actual_type_str} is not an instance of {expected_type_str}"
return None
def is_fully_escaped(s: str) -> bool:
# we know we won't compile with re.VERBOSE, so whitespace doesn't need to be escaped
metacharacters = "{}()+.*?^$[]"
return not any(
c in metacharacters and (i == 0 or s[i - 1] != "\\") for (i, c) in enumerate(s)
)
def unescape(s: str) -> str:
return re.sub(r"\\([{}()+-.*?^$\[\]\s\\])", r"\1", s)
# These classes conceptually differ from ExceptionInfo in that ExceptionInfo is tied, and
# constructed from, a particular exception - whereas these are constructed with expected
# exceptions, and later allow matching towards particular exceptions.
# But there's overlap in `ExceptionInfo.match` and `AbstractRaises._check_match`, as with
# `AbstractRaises.matches` and `ExceptionInfo.errisinstance`+`ExceptionInfo.group_contains`.
# The interaction between these classes should perhaps be improved.
class AbstractRaises(ABC, Generic[BaseExcT_co]):
"""ABC with common functionality shared between RaisesExc and RaisesGroup"""
def __init__(
self,
*,
match: str | Pattern[str] | None,
check: Callable[[BaseExcT_co], bool] | None,
) -> None:
if isinstance(match, str):
# juggle error in order to avoid context to fail (necessary?)
re_error = None
try:
self.match: Pattern[str] | None = re.compile(match)
except re.error as e:
re_error = e
if re_error is not None:
fail(f"Invalid regex pattern provided to 'match': {re_error}")
if match == "":
warnings.warn(
PytestWarning(
"matching against an empty string will *always* pass. If you want "
"to check for an empty message you need to pass '^$'. If you don't "
"want to match you should pass `None` or leave out the parameter."
),
stacklevel=2,
)
else:
self.match = match
# check if this is a fully escaped regex and has ^$ to match fully
# in which case we can do a proper diff on error
self.rawmatch: str | None = None
if isinstance(match, str) or (
isinstance(match, Pattern) and match.flags == _REGEX_NO_FLAGS
):
if isinstance(match, Pattern):
match = match.pattern
if (
match
and match[0] == "^"
and match[-1] == "$"
and is_fully_escaped(match[1:-1])
):
self.rawmatch = unescape(match[1:-1])
self.check = check
self._fail_reason: str | None = None
# used to suppress repeated printing of `repr(self.check)`
self._nested: bool = False
# set in self._parse_exc
self.is_baseexception = False
def _parse_exc(
self, exc: type[BaseExcT_1] | types.GenericAlias, expected: str
) -> type[BaseExcT_1]:
if isinstance(exc, type) and issubclass(exc, BaseException):
if not issubclass(exc, Exception):
self.is_baseexception = True
return exc
# because RaisesGroup does not support variable number of exceptions there's
# still a use for RaisesExc(ExceptionGroup[Exception]).
origin_exc: type[BaseException] | None = get_origin(exc)
if origin_exc and issubclass(origin_exc, BaseExceptionGroup):
exc_type = get_args(exc)[0]
if (
issubclass(origin_exc, ExceptionGroup) and exc_type in (Exception, Any)
) or (
issubclass(origin_exc, BaseExceptionGroup)
and exc_type in (BaseException, Any)
):
if not isinstance(exc, Exception):
self.is_baseexception = True
return cast(type[BaseExcT_1], origin_exc)
else:
raise ValueError(
f"Only `ExceptionGroup[Exception]` or `BaseExceptionGroup[BaseExeption]` "
f"are accepted as generic types but got `{exc}`. "
f"As `raises` will catch all instances of the specified group regardless of the "
f"generic argument specific nested exceptions has to be checked "
f"with `RaisesGroup`."
)
# unclear if the Type/ValueError distinction is even helpful here
msg = f"expected exception must be {expected}, not "
if isinstance(exc, type):
raise ValueError(msg + f"{exc.__name__!r}")
if isinstance(exc, BaseException):
raise TypeError(msg + f"an exception instance ({type(exc).__name__})")
raise TypeError(msg + repr(type(exc).__name__))
@property
def fail_reason(self) -> str | None:
"""Set after a call to :meth:`matches` to give a human-readable reason for why the match failed.
When used as a context manager the string will be printed as the reason for the
test failing."""
return self._fail_reason
def _check_check(
self: AbstractRaises[BaseExcT_1],
exception: BaseExcT_1,
) -> bool:
if self.check is None:
return True
if self.check(exception):
return True
check_repr = "" if self._nested else " " + repr_callable(self.check)
self._fail_reason = f"check{check_repr} did not return True"
return False
# TODO: harmonize with ExceptionInfo.match
def _check_match(self, e: BaseException) -> bool:
if self.match is None or re.search(
self.match,
stringified_exception := stringify_exception(
e, include_subexception_msg=False
),
):
return True
# if we're matching a group, make sure we're explicit to reduce confusion
# if they're trying to match an exception contained within the group
maybe_specify_type = (
f" the `{_exception_type_name(type(e))}()`"
if isinstance(e, BaseExceptionGroup)
else ""
)
if isinstance(self.rawmatch, str):
# TODO: it instructs to use `-v` to print leading text, but that doesn't work
# I also don't know if this is the proper entry point, or tool to use at all
from _pytest.assertion.util import _diff_text
from _pytest.assertion.util import dummy_highlighter
diff = _diff_text(self.rawmatch, stringified_exception, dummy_highlighter)
self._fail_reason = ("\n" if diff[0][0] == "-" else "") + "\n".join(diff)
return False
# I don't love "Regex"+"Input" vs something like "expected regex"+"exception message"
# when they're similar it's not always obvious which is which
self._fail_reason = (
f"Regex pattern did not match{maybe_specify_type}.\n"
f" Regex: {_match_pattern(self.match)!r}\n"
f" Input: {stringified_exception!r}"
)
if _match_pattern(self.match) == stringified_exception:
self._fail_reason += "\n Did you mean to `re.escape()` the regex?"
return False
@abstractmethod
def matches(
self: AbstractRaises[BaseExcT_1], exception: BaseException
) -> TypeGuard[BaseExcT_1]:
"""Check if an exception matches the requirements of this AbstractRaises.
If it fails, :meth:`AbstractRaises.fail_reason` should be set.
"""
@final
class RaisesExc(AbstractRaises[BaseExcT_co_default]):
"""
.. versionadded:: 8.4
This is the class constructed when calling :func:`pytest.raises`, but may be used
directly as a helper class with :class:`RaisesGroup` when you want to specify
requirements on sub-exceptions.
You don't need this if you only want to specify the type, since :class:`RaisesGroup`
accepts ``type[BaseException]``.
:param type[BaseException] | tuple[type[BaseException]] | None expected_exception:
The expected type, or one of several possible types.
May be ``None`` in order to only make use of ``match`` and/or ``check``
The type is checked with :func:`isinstance`, and does not need to be an exact match.
If that is wanted you can use the ``check`` parameter.
:kwparam str | Pattern[str] match
A regex to match.
:kwparam Callable[[BaseException], bool] check:
If specified, a callable that will be called with the exception as a parameter
after checking the type and the match regex if specified.
If it returns ``True`` it will be considered a match, if not it will
be considered a failed match.
:meth:`RaisesExc.matches` can also be used standalone to check individual exceptions.
Examples::
with RaisesGroup(RaisesExc(ValueError, match="string"))
...
with RaisesGroup(RaisesExc(check=lambda x: x.args == (3, "hello"))):
...
with RaisesGroup(RaisesExc(check=lambda x: type(x) is ValueError)):
...
"""
# Trio bundled hypothesis monkeypatching, we will probably instead assume that
# hypothesis will handle that in their pytest plugin by the time this is released.
# Alternatively we could add a version of get_pretty_function_description ourselves
# https://github.com/HypothesisWorks/hypothesis/blob/8ced2f59f5c7bea3344e35d2d53e1f8f8eb9fcd8/hypothesis-python/src/hypothesis/internal/reflection.py#L439
# At least one of the three parameters must be passed.
@overload
def __init__(
self: RaisesExc[BaseExcT_co_default],
expected_exception: (
type[BaseExcT_co_default] | tuple[type[BaseExcT_co_default], ...]
),
/,
*,
match: str | Pattern[str] | None = ...,
check: Callable[[BaseExcT_co_default], bool] | None = ...,
) -> None: ...
@overload
def __init__(
self: RaisesExc[BaseException], # Give E a value.
/,
*,
match: str | Pattern[str] | None,
# If exception_type is not provided, check() must do any typechecks itself.
check: Callable[[BaseException], bool] | None = ...,
) -> None: ...
@overload
def __init__(self, /, *, check: Callable[[BaseException], bool]) -> None: ...
def __init__(
self,
expected_exception: (
type[BaseExcT_co_default] | tuple[type[BaseExcT_co_default], ...] | None
) = None,
/,
*,
match: str | Pattern[str] | None = None,
check: Callable[[BaseExcT_co_default], bool] | None = None,
):
super().__init__(match=match, check=check)
if isinstance(expected_exception, tuple):
expected_exceptions = expected_exception
elif expected_exception is None:
expected_exceptions = ()
else:
expected_exceptions = (expected_exception,)
if (expected_exceptions == ()) and match is None and check is None:
raise ValueError("You must specify at least one parameter to match on.")
self.expected_exceptions = tuple(
self._parse_exc(e, expected="a BaseException type")
for e in expected_exceptions
)
self._just_propagate = False
def matches(
self,
exception: BaseException | None,
) -> TypeGuard[BaseExcT_co_default]:
"""Check if an exception matches the requirements of this :class:`RaisesExc`.
If it fails, :attr:`RaisesExc.fail_reason` will be set.
Examples::
assert RaisesExc(ValueError).matches(my_exception):
# is equivalent to
assert isinstance(my_exception, ValueError)
# this can be useful when checking e.g. the ``__cause__`` of an exception.
with pytest.raises(ValueError) as excinfo:
...
assert RaisesExc(SyntaxError, match="foo").matches(excinfo.value.__cause__)
# above line is equivalent to
assert isinstance(excinfo.value.__cause__, SyntaxError)
assert re.search("foo", str(excinfo.value.__cause__)
"""
self._just_propagate = False
if exception is None:
self._fail_reason = "exception is None"
return False
if not self._check_type(exception):
self._just_propagate = True
return False
if not self._check_match(exception):
return False
return self._check_check(exception)
def __repr__(self) -> str:
parameters = []
if self.expected_exceptions:
parameters.append(_exception_type_name(self.expected_exceptions))
if self.match is not None:
# If no flags were specified, discard the redundant re.compile() here.
parameters.append(
f"match={_match_pattern(self.match)!r}",
)
if self.check is not None:
parameters.append(f"check={repr_callable(self.check)}")
return f"RaisesExc({', '.join(parameters)})"
def _check_type(self, exception: BaseException) -> TypeGuard[BaseExcT_co_default]:
self._fail_reason = _check_raw_type(self.expected_exceptions, exception)
return self._fail_reason is None
def __enter__(self) -> ExceptionInfo[BaseExcT_co_default]:
self.excinfo: ExceptionInfo[BaseExcT_co_default] = ExceptionInfo.for_later()
return self.excinfo
# TODO: move common code into superclass
def __exit__(
self,
exc_type: type[BaseException] | None,
exc_val: BaseException | None,
exc_tb: types.TracebackType | None,
) -> bool:
__tracebackhide__ = True
if exc_type is None:
if not self.expected_exceptions:
fail("DID NOT RAISE any exception")
if len(self.expected_exceptions) > 1:
fail(f"DID NOT RAISE any of {self.expected_exceptions!r}")
fail(f"DID NOT RAISE {self.expected_exceptions[0]!r}")
assert self.excinfo is not None, (
"Internal error - should have been constructed in __enter__"
)
if not self.matches(exc_val):
if self._just_propagate:
return False
raise AssertionError(self._fail_reason)
# Cast to narrow the exception type now that it's verified....
# even though the TypeGuard in self.matches should be narrowing
exc_info = cast(
"tuple[type[BaseExcT_co_default], BaseExcT_co_default, types.TracebackType]",
(exc_type, exc_val, exc_tb),
)
self.excinfo.fill_unfilled(exc_info)
return True
@final
class RaisesGroup(AbstractRaises[BaseExceptionGroup[BaseExcT_co]]):
"""
.. versionadded:: 8.4
Contextmanager for checking for an expected :exc:`ExceptionGroup`.
This works similar to :func:`pytest.raises`, but allows for specifying the structure of an :exc:`ExceptionGroup`.
:meth:`ExceptionInfo.group_contains` also tries to handle exception groups,
but it is very bad at checking that you *didn't* get unexpected exceptions.
The catching behaviour differs from :ref:`except* <except_star>`, being much
stricter about the structure by default.
By using ``allow_unwrapped=True`` and ``flatten_subgroups=True`` you can match
:ref:`except* <except_star>` fully when expecting a single exception.
:param args:
Any number of exception types, :class:`RaisesGroup` or :class:`RaisesExc`
to specify the exceptions contained in this exception.
All specified exceptions must be present in the raised group, *and no others*.
If you expect a variable number of exceptions you need to use
:func:`pytest.raises(ExceptionGroup) <pytest.raises>` and manually check
the contained exceptions. Consider making use of :meth:`RaisesExc.matches`.
It does not care about the order of the exceptions, so
``RaisesGroup(ValueError, TypeError)``
is equivalent to
``RaisesGroup(TypeError, ValueError)``.
:kwparam str | re.Pattern[str] | None match:
If specified, a string containing a regular expression,
or a regular expression object, that is tested against the string
representation of the exception group and its :pep:`678` `__notes__`
using :func:`re.search`.
To match a literal string that may contain :ref:`special characters
<re-syntax>`, the pattern can first be escaped with :func:`re.escape`.
Note that " (5 subgroups)" will be stripped from the ``repr`` before matching.
:kwparam Callable[[E], bool] check:
If specified, a callable that will be called with the group as a parameter
after successfully matching the expected exceptions. If it returns ``True``
it will be considered a match, if not it will be considered a failed match.
:kwparam bool allow_unwrapped:
If expecting a single exception or :class:`RaisesExc` it will match even
if the exception is not inside an exceptiongroup.
Using this together with ``match``, ``check`` or expecting multiple exceptions
will raise an error.
:kwparam bool flatten_subgroups:
"flatten" any groups inside the raised exception group, extracting all exceptions
inside any nested groups, before matching. Without this it expects you to
fully specify the nesting structure by passing :class:`RaisesGroup` as expected
parameter.
Examples::
with RaisesGroup(ValueError):
raise ExceptionGroup("", (ValueError(),))
# match
with RaisesGroup(
ValueError,
ValueError,
RaisesExc(TypeError, match="^expected int$"),
match="^my group$",
):
raise ExceptionGroup(
"my group",
[
ValueError(),
TypeError("expected int"),
ValueError(),
],
)
# check
with RaisesGroup(
KeyboardInterrupt,
match="^hello$",
check=lambda x: isinstance(x.__cause__, ValueError),
):
raise BaseExceptionGroup("hello", [KeyboardInterrupt()]) from ValueError
# nested groups
with RaisesGroup(RaisesGroup(ValueError)):
raise ExceptionGroup("", (ExceptionGroup("", (ValueError(),)),))
# flatten_subgroups
with RaisesGroup(ValueError, flatten_subgroups=True):
raise ExceptionGroup("", (ExceptionGroup("", (ValueError(),)),))
# allow_unwrapped
with RaisesGroup(ValueError, allow_unwrapped=True):
raise ValueError
:meth:`RaisesGroup.matches` can also be used directly to check a standalone exception group.
The matching algorithm is greedy, which means cases such as this may fail::
with RaisesGroup(ValueError, RaisesExc(ValueError, match="hello")):
raise ExceptionGroup("", (ValueError("hello"), ValueError("goodbye")))
even though it generally does not care about the order of the exceptions in the group.
To avoid the above you should specify the first :exc:`ValueError` with a :class:`RaisesExc` as well.
.. note::
When raised exceptions don't match the expected ones, you'll get a detailed error
message explaining why. This includes ``repr(check)`` if set, which in Python can be
overly verbose, showing memory locations etc etc.
If installed and imported (in e.g. ``conftest.py``), the ``hypothesis`` library will
monkeypatch this output to provide shorter & more readable repr's.
"""
# allow_unwrapped=True requires: singular exception, exception not being
# RaisesGroup instance, match is None, check is None
@overload
def __init__(
self,
expected_exception: type[BaseExcT_co] | RaisesExc[BaseExcT_co],
/,
*,
allow_unwrapped: Literal[True],
flatten_subgroups: bool = False,
) -> None: ...
# flatten_subgroups = True also requires no nested RaisesGroup
@overload
def __init__(
self,
expected_exception: type[BaseExcT_co] | RaisesExc[BaseExcT_co],
/,
*other_exceptions: type[BaseExcT_co] | RaisesExc[BaseExcT_co],
flatten_subgroups: Literal[True],
match: str | Pattern[str] | None = None,
check: Callable[[BaseExceptionGroup[BaseExcT_co]], bool] | None = None,
) -> None: ...
# simplify the typevars if possible (the following 3 are equivalent but go simpler->complicated)
# ... the first handles RaisesGroup[ValueError], the second RaisesGroup[ExceptionGroup[ValueError]],
# the third RaisesGroup[ValueError | ExceptionGroup[ValueError]].
# ... otherwise, we will get results like RaisesGroup[ValueError | ExceptionGroup[Never]] (I think)
# (technically correct but misleading)
@overload
def __init__(
self: RaisesGroup[ExcT_1],
expected_exception: type[ExcT_1] | RaisesExc[ExcT_1],
/,
*other_exceptions: type[ExcT_1] | RaisesExc[ExcT_1],
match: str | Pattern[str] | None = None,
check: Callable[[ExceptionGroup[ExcT_1]], bool] | None = None,
) -> None: ...
@overload
def __init__(
self: RaisesGroup[ExceptionGroup[ExcT_2]],
expected_exception: RaisesGroup[ExcT_2],
/,
*other_exceptions: RaisesGroup[ExcT_2],
match: str | Pattern[str] | None = None,
check: Callable[[ExceptionGroup[ExceptionGroup[ExcT_2]]], bool] | None = None,
) -> None: ...
@overload
def __init__(
self: RaisesGroup[ExcT_1 | ExceptionGroup[ExcT_2]],
expected_exception: type[ExcT_1] | RaisesExc[ExcT_1] | RaisesGroup[ExcT_2],
/,
*other_exceptions: type[ExcT_1] | RaisesExc[ExcT_1] | RaisesGroup[ExcT_2],
match: str | Pattern[str] | None = None,
check: (
Callable[[ExceptionGroup[ExcT_1 | ExceptionGroup[ExcT_2]]], bool] | None
) = None,
) -> None: ...
# same as the above 3 but handling BaseException
@overload
def __init__(
self: RaisesGroup[BaseExcT_1],
expected_exception: type[BaseExcT_1] | RaisesExc[BaseExcT_1],
/,
*other_exceptions: type[BaseExcT_1] | RaisesExc[BaseExcT_1],
match: str | Pattern[str] | None = None,
check: Callable[[BaseExceptionGroup[BaseExcT_1]], bool] | None = None,
) -> None: ...
@overload
def __init__(
self: RaisesGroup[BaseExceptionGroup[BaseExcT_2]],
expected_exception: RaisesGroup[BaseExcT_2],
/,
*other_exceptions: RaisesGroup[BaseExcT_2],
match: str | Pattern[str] | None = None,
check: (
Callable[[BaseExceptionGroup[BaseExceptionGroup[BaseExcT_2]]], bool] | None
) = None,
) -> None: ...
@overload
def __init__(
self: RaisesGroup[BaseExcT_1 | BaseExceptionGroup[BaseExcT_2]],
expected_exception: type[BaseExcT_1]
| RaisesExc[BaseExcT_1]
| RaisesGroup[BaseExcT_2],
/,
*other_exceptions: type[BaseExcT_1]
| RaisesExc[BaseExcT_1]
| RaisesGroup[BaseExcT_2],
match: str | Pattern[str] | None = None,
check: (
Callable[
[BaseExceptionGroup[BaseExcT_1 | BaseExceptionGroup[BaseExcT_2]]],
bool,
]
| None
) = None,
) -> None: ...
def __init__(
self: RaisesGroup[ExcT_1 | BaseExcT_1 | BaseExceptionGroup[BaseExcT_2]],
expected_exception: type[BaseExcT_1]
| RaisesExc[BaseExcT_1]
| RaisesGroup[BaseExcT_2],
/,
*other_exceptions: type[BaseExcT_1]
| RaisesExc[BaseExcT_1]
| RaisesGroup[BaseExcT_2],
allow_unwrapped: bool = False,
flatten_subgroups: bool = False,
match: str | Pattern[str] | None = None,
check: (
Callable[[BaseExceptionGroup[BaseExcT_1]], bool]
| Callable[[ExceptionGroup[ExcT_1]], bool]
| None
) = None,
):
# The type hint on the `self` and `check` parameters uses different formats
# that are *very* hard to reconcile while adhering to the overloads, so we cast
# it to avoid an error when passing it to super().__init__
check = cast(
"Callable[["
"BaseExceptionGroup[ExcT_1|BaseExcT_1|BaseExceptionGroup[BaseExcT_2]]"
"], bool]",
check,
)
super().__init__(match=match, check=check)
self.allow_unwrapped = allow_unwrapped
self.flatten_subgroups: bool = flatten_subgroups
self.is_baseexception = False
if allow_unwrapped and other_exceptions:
raise ValueError(
"You cannot specify multiple exceptions with `allow_unwrapped=True.`"
" If you want to match one of multiple possible exceptions you should"
" use a `RaisesExc`."
" E.g. `RaisesExc(check=lambda e: isinstance(e, (...)))`",
)
if allow_unwrapped and isinstance(expected_exception, RaisesGroup):
raise ValueError(
"`allow_unwrapped=True` has no effect when expecting a `RaisesGroup`."
" You might want it in the expected `RaisesGroup`, or"
" `flatten_subgroups=True` if you don't care about the structure.",
)
if allow_unwrapped and (match is not None or check is not None):
raise ValueError(