Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1 | """Test case implementation""" |
| 2 | |
| 3 | import sys |
| 4 | import functools |
| 5 | import difflib |
| 6 | import pprint |
| 7 | import re |
| 8 | import warnings |
Raymond Hettinger | 6e165b3 | 2010-11-27 09:31:37 +0000 | [diff] [blame] | 9 | import collections |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 10 | import contextlib |
Antoine Pitrou | 9681022 | 2014-04-29 01:23:50 +0200 | [diff] [blame] | 11 | import traceback |
Naitree Zhu | d5fd75c | 2019-09-09 22:06:48 +0800 | [diff] [blame] | 12 | import types |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 13 | |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 14 | from . import result |
Florent Xicluna | c53ae58 | 2011-11-04 08:25:54 +0100 | [diff] [blame] | 15 | from .util import (strclass, safe_repr, _count_diff_all_purpose, |
Serhiy Storchaka | 77622f5 | 2013-09-23 23:07:00 +0300 | [diff] [blame] | 16 | _count_diff_hashable, _common_shorten_repr) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 17 | |
Benjamin Peterson | dccc1fc | 2010-03-22 00:15:53 +0000 | [diff] [blame] | 18 | __unittest = True |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 19 | |
Berker Peksag | 16ea19f | 2016-09-21 19:34:15 +0300 | [diff] [blame] | 20 | _subtest_msg_sentinel = object() |
Michael Foord | 9dad32e | 2010-06-05 13:49:56 +0000 | [diff] [blame] | 21 | |
| 22 | DIFF_OMITTED = ('\nDiff is %s characters long. ' |
| 23 | 'Set self.maxDiff to None to see it.') |
| 24 | |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 25 | class SkipTest(Exception): |
| 26 | """ |
| 27 | Raise this exception in a test to skip it. |
| 28 | |
Ezio Melotti | 265281a | 2013-03-27 20:11:55 +0200 | [diff] [blame] | 29 | Usually you can use TestCase.skipTest() or one of the skipping decorators |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 30 | instead of raising this directly. |
| 31 | """ |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 32 | |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 33 | class _ShouldStop(Exception): |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 34 | """ |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 35 | The test should stop. |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 36 | """ |
| 37 | |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 38 | class _UnexpectedSuccess(Exception): |
| 39 | """ |
| 40 | The test was supposed to fail, but it didn't! |
| 41 | """ |
Michael Foord | b3468f7 | 2010-12-19 03:19:47 +0000 | [diff] [blame] | 42 | |
| 43 | |
| 44 | class _Outcome(object): |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 45 | def __init__(self, result=None): |
| 46 | self.expecting_failure = False |
| 47 | self.result = result |
| 48 | self.result_supports_subtests = hasattr(result, "addSubTest") |
Michael Foord | b3468f7 | 2010-12-19 03:19:47 +0000 | [diff] [blame] | 49 | self.success = True |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 50 | self.skipped = [] |
Michael Foord | b3468f7 | 2010-12-19 03:19:47 +0000 | [diff] [blame] | 51 | self.expectedFailure = None |
| 52 | self.errors = [] |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 53 | |
| 54 | @contextlib.contextmanager |
| 55 | def testPartExecutor(self, test_case, isTest=False): |
| 56 | old_success = self.success |
| 57 | self.success = True |
| 58 | try: |
| 59 | yield |
| 60 | except KeyboardInterrupt: |
| 61 | raise |
| 62 | except SkipTest as e: |
| 63 | self.success = False |
| 64 | self.skipped.append((test_case, str(e))) |
| 65 | except _ShouldStop: |
| 66 | pass |
| 67 | except: |
| 68 | exc_info = sys.exc_info() |
| 69 | if self.expecting_failure: |
| 70 | self.expectedFailure = exc_info |
| 71 | else: |
| 72 | self.success = False |
| 73 | self.errors.append((test_case, exc_info)) |
Victor Stinner | 031bd53 | 2013-12-09 01:52:50 +0100 | [diff] [blame] | 74 | # explicitly break a reference cycle: |
| 75 | # exc_info -> frame -> exc_info |
| 76 | exc_info = None |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 77 | else: |
| 78 | if self.result_supports_subtests and self.success: |
| 79 | self.errors.append((test_case, None)) |
| 80 | finally: |
| 81 | self.success = self.success and old_success |
Michael Foord | b3468f7 | 2010-12-19 03:19:47 +0000 | [diff] [blame] | 82 | |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 83 | |
| 84 | def _id(obj): |
| 85 | return obj |
| 86 | |
Lisa Roach | 0f221d0 | 2018-11-08 18:34:33 -0800 | [diff] [blame] | 87 | |
| 88 | _module_cleanups = [] |
Serhiy Storchaka | 2085bd0 | 2019-06-01 11:00:15 +0300 | [diff] [blame] | 89 | def addModuleCleanup(function, /, *args, **kwargs): |
Lisa Roach | 0f221d0 | 2018-11-08 18:34:33 -0800 | [diff] [blame] | 90 | """Same as addCleanup, except the cleanup items are called even if |
| 91 | setUpModule fails (unlike tearDownModule).""" |
| 92 | _module_cleanups.append((function, args, kwargs)) |
| 93 | |
| 94 | |
| 95 | def doModuleCleanups(): |
| 96 | """Execute all module cleanup functions. Normally called for you after |
| 97 | tearDownModule.""" |
| 98 | exceptions = [] |
| 99 | while _module_cleanups: |
| 100 | function, args, kwargs = _module_cleanups.pop() |
| 101 | try: |
| 102 | function(*args, **kwargs) |
| 103 | except Exception as exc: |
| 104 | exceptions.append(exc) |
| 105 | if exceptions: |
| 106 | # Swallows all but first exception. If a multi-exception handler |
| 107 | # gets written we should use that here instead. |
| 108 | raise exceptions[0] |
| 109 | |
| 110 | |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 111 | def skip(reason): |
| 112 | """ |
| 113 | Unconditionally skip a test. |
| 114 | """ |
| 115 | def decorator(test_item): |
Antoine Pitrou | b05ac86 | 2012-04-25 14:56:46 +0200 | [diff] [blame] | 116 | if not isinstance(test_item, type): |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 117 | @functools.wraps(test_item) |
| 118 | def skip_wrapper(*args, **kwargs): |
| 119 | raise SkipTest(reason) |
| 120 | test_item = skip_wrapper |
| 121 | |
| 122 | test_item.__unittest_skip__ = True |
| 123 | test_item.__unittest_skip_why__ = reason |
| 124 | return test_item |
Naitree Zhu | d5fd75c | 2019-09-09 22:06:48 +0800 | [diff] [blame] | 125 | if isinstance(reason, types.FunctionType): |
| 126 | test_item = reason |
| 127 | reason = '' |
| 128 | return decorator(test_item) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 129 | return decorator |
| 130 | |
| 131 | def skipIf(condition, reason): |
| 132 | """ |
| 133 | Skip a test if the condition is true. |
| 134 | """ |
| 135 | if condition: |
| 136 | return skip(reason) |
| 137 | return _id |
| 138 | |
| 139 | def skipUnless(condition, reason): |
| 140 | """ |
| 141 | Skip a test unless the condition is true. |
| 142 | """ |
| 143 | if not condition: |
| 144 | return skip(reason) |
| 145 | return _id |
| 146 | |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 147 | def expectedFailure(test_item): |
| 148 | test_item.__unittest_expecting_failure__ = True |
| 149 | return test_item |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 150 | |
Serhiy Storchaka | 041dd8e | 2015-05-21 20:15:40 +0300 | [diff] [blame] | 151 | def _is_subtype(expected, basetype): |
| 152 | if isinstance(expected, tuple): |
| 153 | return all(_is_subtype(e, basetype) for e in expected) |
| 154 | return isinstance(expected, type) and issubclass(expected, basetype) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 155 | |
Antoine Pitrou | 0715b9f | 2013-09-14 19:45:47 +0200 | [diff] [blame] | 156 | class _BaseTestCaseContext: |
| 157 | |
| 158 | def __init__(self, test_case): |
| 159 | self.test_case = test_case |
| 160 | |
| 161 | def _raiseFailure(self, standardMsg): |
| 162 | msg = self.test_case._formatMessage(self.msg, standardMsg) |
| 163 | raise self.test_case.failureException(msg) |
| 164 | |
Antoine Pitrou | 0715b9f | 2013-09-14 19:45:47 +0200 | [diff] [blame] | 165 | class _AssertRaisesBaseContext(_BaseTestCaseContext): |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 166 | |
Serhiy Storchaka | df573d6 | 2015-05-16 16:29:50 +0300 | [diff] [blame] | 167 | def __init__(self, expected, test_case, expected_regex=None): |
Antoine Pitrou | 0715b9f | 2013-09-14 19:45:47 +0200 | [diff] [blame] | 168 | _BaseTestCaseContext.__init__(self, test_case) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 169 | self.expected = expected |
Ezio Melotti | b4dc250 | 2011-05-06 15:01:41 +0300 | [diff] [blame] | 170 | self.test_case = test_case |
R David Murray | ef1c267 | 2014-03-25 15:31:50 -0400 | [diff] [blame] | 171 | if expected_regex is not None: |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 172 | expected_regex = re.compile(expected_regex) |
| 173 | self.expected_regex = expected_regex |
Serhiy Storchaka | df573d6 | 2015-05-16 16:29:50 +0300 | [diff] [blame] | 174 | self.obj_name = None |
Ezio Melotti | b4dc250 | 2011-05-06 15:01:41 +0300 | [diff] [blame] | 175 | self.msg = None |
| 176 | |
Serhiy Storchaka | df573d6 | 2015-05-16 16:29:50 +0300 | [diff] [blame] | 177 | def handle(self, name, args, kwargs): |
Ezio Melotti | b4dc250 | 2011-05-06 15:01:41 +0300 | [diff] [blame] | 178 | """ |
Serhiy Storchaka | df573d6 | 2015-05-16 16:29:50 +0300 | [diff] [blame] | 179 | If args is empty, assertRaises/Warns is being used as a |
Ezio Melotti | b4dc250 | 2011-05-06 15:01:41 +0300 | [diff] [blame] | 180 | context manager, so check for a 'msg' kwarg and return self. |
Serhiy Storchaka | df573d6 | 2015-05-16 16:29:50 +0300 | [diff] [blame] | 181 | If args is not empty, call a callable passing positional and keyword |
| 182 | arguments. |
Ezio Melotti | b4dc250 | 2011-05-06 15:01:41 +0300 | [diff] [blame] | 183 | """ |
Serhiy Storchaka | df573d6 | 2015-05-16 16:29:50 +0300 | [diff] [blame] | 184 | try: |
Victor Stinner | bbd3cf8 | 2017-03-28 00:56:28 +0200 | [diff] [blame] | 185 | if not _is_subtype(self.expected, self._base_type): |
| 186 | raise TypeError('%s() arg 1 must be %s' % |
| 187 | (name, self._base_type_str)) |
Victor Stinner | bbd3cf8 | 2017-03-28 00:56:28 +0200 | [diff] [blame] | 188 | if not args: |
| 189 | self.msg = kwargs.pop('msg', None) |
| 190 | if kwargs: |
Serhiy Storchaka | 77d5781 | 2018-08-19 10:00:11 +0300 | [diff] [blame] | 191 | raise TypeError('%r is an invalid keyword argument for ' |
| 192 | 'this function' % (next(iter(kwargs)),)) |
Victor Stinner | bbd3cf8 | 2017-03-28 00:56:28 +0200 | [diff] [blame] | 193 | return self |
| 194 | |
| 195 | callable_obj, *args = args |
| 196 | try: |
| 197 | self.obj_name = callable_obj.__name__ |
| 198 | except AttributeError: |
| 199 | self.obj_name = str(callable_obj) |
| 200 | with self: |
| 201 | callable_obj(*args, **kwargs) |
| 202 | finally: |
| 203 | # bpo-23890: manually break a reference cycle |
| 204 | self = None |
Ezio Melotti | b4dc250 | 2011-05-06 15:01:41 +0300 | [diff] [blame] | 205 | |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 206 | |
Antoine Pitrou | 4bc12ef | 2010-09-06 19:25:46 +0000 | [diff] [blame] | 207 | class _AssertRaisesContext(_AssertRaisesBaseContext): |
| 208 | """A context manager used to implement TestCase.assertRaises* methods.""" |
| 209 | |
Serhiy Storchaka | 041dd8e | 2015-05-21 20:15:40 +0300 | [diff] [blame] | 210 | _base_type = BaseException |
| 211 | _base_type_str = 'an exception type or tuple of exception types' |
| 212 | |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 213 | def __enter__(self): |
Ezio Melotti | 4900823 | 2010-02-08 21:57:48 +0000 | [diff] [blame] | 214 | return self |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 215 | |
| 216 | def __exit__(self, exc_type, exc_value, tb): |
| 217 | if exc_type is None: |
| 218 | try: |
| 219 | exc_name = self.expected.__name__ |
| 220 | except AttributeError: |
| 221 | exc_name = str(self.expected) |
| 222 | if self.obj_name: |
Ezio Melotti | b4dc250 | 2011-05-06 15:01:41 +0300 | [diff] [blame] | 223 | self._raiseFailure("{} not raised by {}".format(exc_name, |
| 224 | self.obj_name)) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 225 | else: |
Ezio Melotti | b4dc250 | 2011-05-06 15:01:41 +0300 | [diff] [blame] | 226 | self._raiseFailure("{} not raised".format(exc_name)) |
Antoine Pitrou | 9681022 | 2014-04-29 01:23:50 +0200 | [diff] [blame] | 227 | else: |
| 228 | traceback.clear_frames(tb) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 229 | if not issubclass(exc_type, self.expected): |
| 230 | # let unexpected exceptions pass through |
| 231 | return False |
Ezio Melotti | 4900823 | 2010-02-08 21:57:48 +0000 | [diff] [blame] | 232 | # store exception, without traceback, for later retrieval |
| 233 | self.exception = exc_value.with_traceback(None) |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 234 | if self.expected_regex is None: |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 235 | return True |
| 236 | |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 237 | expected_regex = self.expected_regex |
| 238 | if not expected_regex.search(str(exc_value)): |
Ezio Melotti | b4dc250 | 2011-05-06 15:01:41 +0300 | [diff] [blame] | 239 | self._raiseFailure('"{}" does not match "{}"'.format( |
| 240 | expected_regex.pattern, str(exc_value))) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 241 | return True |
| 242 | |
Batuhan TaÅŸkaya | 0361556 | 2020-04-10 17:46:36 +0300 | [diff] [blame] | 243 | __class_getitem__ = classmethod(types.GenericAlias) |
| 244 | |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 245 | |
Antoine Pitrou | 4bc12ef | 2010-09-06 19:25:46 +0000 | [diff] [blame] | 246 | class _AssertWarnsContext(_AssertRaisesBaseContext): |
| 247 | """A context manager used to implement TestCase.assertWarns* methods.""" |
| 248 | |
Serhiy Storchaka | 041dd8e | 2015-05-21 20:15:40 +0300 | [diff] [blame] | 249 | _base_type = Warning |
| 250 | _base_type_str = 'a warning type or tuple of warning types' |
| 251 | |
Antoine Pitrou | 4bc12ef | 2010-09-06 19:25:46 +0000 | [diff] [blame] | 252 | def __enter__(self): |
| 253 | # The __warningregistry__'s need to be in a pristine state for tests |
| 254 | # to work properly. |
kernc | 46398fb | 2020-06-11 20:03:29 +0200 | [diff] [blame] | 255 | for v in list(sys.modules.values()): |
Antoine Pitrou | 4bc12ef | 2010-09-06 19:25:46 +0000 | [diff] [blame] | 256 | if getattr(v, '__warningregistry__', None): |
| 257 | v.__warningregistry__ = {} |
| 258 | self.warnings_manager = warnings.catch_warnings(record=True) |
| 259 | self.warnings = self.warnings_manager.__enter__() |
| 260 | warnings.simplefilter("always", self.expected) |
| 261 | return self |
| 262 | |
| 263 | def __exit__(self, exc_type, exc_value, tb): |
| 264 | self.warnings_manager.__exit__(exc_type, exc_value, tb) |
| 265 | if exc_type is not None: |
| 266 | # let unexpected exceptions pass through |
| 267 | return |
| 268 | try: |
| 269 | exc_name = self.expected.__name__ |
| 270 | except AttributeError: |
| 271 | exc_name = str(self.expected) |
| 272 | first_matching = None |
| 273 | for m in self.warnings: |
| 274 | w = m.message |
| 275 | if not isinstance(w, self.expected): |
| 276 | continue |
| 277 | if first_matching is None: |
| 278 | first_matching = w |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 279 | if (self.expected_regex is not None and |
| 280 | not self.expected_regex.search(str(w))): |
Antoine Pitrou | 4bc12ef | 2010-09-06 19:25:46 +0000 | [diff] [blame] | 281 | continue |
| 282 | # store warning for later retrieval |
| 283 | self.warning = w |
| 284 | self.filename = m.filename |
| 285 | self.lineno = m.lineno |
| 286 | return |
| 287 | # Now we simply try to choose a helpful failure message |
| 288 | if first_matching is not None: |
Ezio Melotti | b4dc250 | 2011-05-06 15:01:41 +0300 | [diff] [blame] | 289 | self._raiseFailure('"{}" does not match "{}"'.format( |
| 290 | self.expected_regex.pattern, str(first_matching))) |
Antoine Pitrou | 4bc12ef | 2010-09-06 19:25:46 +0000 | [diff] [blame] | 291 | if self.obj_name: |
Ezio Melotti | b4dc250 | 2011-05-06 15:01:41 +0300 | [diff] [blame] | 292 | self._raiseFailure("{} not triggered by {}".format(exc_name, |
| 293 | self.obj_name)) |
Antoine Pitrou | 4bc12ef | 2010-09-06 19:25:46 +0000 | [diff] [blame] | 294 | else: |
Ezio Melotti | b4dc250 | 2011-05-06 15:01:41 +0300 | [diff] [blame] | 295 | self._raiseFailure("{} not triggered".format(exc_name)) |
Antoine Pitrou | 4bc12ef | 2010-09-06 19:25:46 +0000 | [diff] [blame] | 296 | |
| 297 | |
Serhiy Storchaka | 48fbe52 | 2017-06-23 21:47:39 +0300 | [diff] [blame] | 298 | class _OrderedChainMap(collections.ChainMap): |
| 299 | def __iter__(self): |
| 300 | seen = set() |
| 301 | for mapping in self.maps: |
| 302 | for k in mapping: |
| 303 | if k not in seen: |
| 304 | seen.add(k) |
| 305 | yield k |
| 306 | |
| 307 | |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 308 | class TestCase(object): |
| 309 | """A class whose instances are single test cases. |
| 310 | |
| 311 | By default, the test code itself should be placed in a method named |
| 312 | 'runTest'. |
| 313 | |
| 314 | If the fixture may be used for many test cases, create as |
| 315 | many test methods as are needed. When instantiating such a TestCase |
| 316 | subclass, specify in the constructor arguments the name of the test method |
| 317 | that the instance is to execute. |
| 318 | |
| 319 | Test authors should subclass TestCase for their own tests. Construction |
| 320 | and deconstruction of the test's environment ('fixture') can be |
| 321 | implemented by overriding the 'setUp' and 'tearDown' methods respectively. |
| 322 | |
| 323 | If it is necessary to override the __init__ method, the base class |
| 324 | __init__ method must always be called. It is important that subclasses |
| 325 | should not change the signature of their __init__ method, since instances |
| 326 | of the classes are instantiated automatically by parts of the framework |
| 327 | in order to be run. |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 328 | |
Ezio Melotti | 31797e5 | 2013-03-29 03:42:29 +0200 | [diff] [blame] | 329 | When subclassing TestCase, you can set these attributes: |
| 330 | * failureException: determines which exception will be raised when |
| 331 | the instance's assertion methods fail; test methods raising this |
| 332 | exception will be deemed to have 'failed' rather than 'errored'. |
| 333 | * longMessage: determines whether long messages (including repr of |
| 334 | objects used in assert methods) will be printed on failure in *addition* |
| 335 | to any explicit message passed. |
| 336 | * maxDiff: sets the maximum length of a diff in failure messages |
| 337 | by assert methods using difflib. It is looked up as an instance |
| 338 | attribute so can be configured by individual tests if required. |
| 339 | """ |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 340 | |
| 341 | failureException = AssertionError |
| 342 | |
Michael Foord | 5074df6 | 2010-12-03 00:53:09 +0000 | [diff] [blame] | 343 | longMessage = True |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 344 | |
Michael Foord | 085dfd3 | 2010-06-05 12:17:02 +0000 | [diff] [blame] | 345 | maxDiff = 80*8 |
| 346 | |
Ezio Melotti | edd117f | 2011-04-27 10:20:38 +0300 | [diff] [blame] | 347 | # If a string is longer than _diffThreshold, use normal comparison instead |
| 348 | # of difflib. See #11763. |
| 349 | _diffThreshold = 2**16 |
| 350 | |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 351 | # Attribute used by TestSuite for classSetUp |
| 352 | |
| 353 | _classSetupFailed = False |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 354 | |
Lisa Roach | 0f221d0 | 2018-11-08 18:34:33 -0800 | [diff] [blame] | 355 | _class_cleanups = [] |
| 356 | |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 357 | def __init__(self, methodName='runTest'): |
| 358 | """Create an instance of the class that will use the named test |
| 359 | method when executed. Raises a ValueError if the instance does |
| 360 | not have a method with the specified name. |
| 361 | """ |
| 362 | self._testMethodName = methodName |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 363 | self._outcome = None |
Michael Foord | 32e1d83 | 2011-01-03 17:00:11 +0000 | [diff] [blame] | 364 | self._testMethodDoc = 'No test' |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 365 | try: |
| 366 | testMethod = getattr(self, methodName) |
| 367 | except AttributeError: |
Michael Foord | 32e1d83 | 2011-01-03 17:00:11 +0000 | [diff] [blame] | 368 | if methodName != 'runTest': |
| 369 | # we allow instantiation with no explicit method name |
| 370 | # but not an *incorrect* or missing method name |
| 371 | raise ValueError("no such test method in %s: %s" % |
| 372 | (self.__class__, methodName)) |
| 373 | else: |
| 374 | self._testMethodDoc = testMethod.__doc__ |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 375 | self._cleanups = [] |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 376 | self._subtest = None |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 377 | |
| 378 | # Map types to custom assertEqual functions that will compare |
| 379 | # instances of said type in more detail to generate a more useful |
| 380 | # error message. |
Benjamin Peterson | 34b2b26 | 2011-07-12 19:21:42 -0500 | [diff] [blame] | 381 | self._type_equality_funcs = {} |
Michael Foord | 8ca6d98 | 2010-11-20 15:34:26 +0000 | [diff] [blame] | 382 | self.addTypeEqualityFunc(dict, 'assertDictEqual') |
| 383 | self.addTypeEqualityFunc(list, 'assertListEqual') |
| 384 | self.addTypeEqualityFunc(tuple, 'assertTupleEqual') |
| 385 | self.addTypeEqualityFunc(set, 'assertSetEqual') |
| 386 | self.addTypeEqualityFunc(frozenset, 'assertSetEqual') |
| 387 | self.addTypeEqualityFunc(str, 'assertMultiLineEqual') |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 388 | |
| 389 | def addTypeEqualityFunc(self, typeobj, function): |
| 390 | """Add a type specific assertEqual style function to compare a type. |
| 391 | |
| 392 | This method is for use by TestCase subclasses that need to register |
| 393 | their own type equality functions to provide nicer error messages. |
| 394 | |
| 395 | Args: |
| 396 | typeobj: The data type to call this function on when both values |
| 397 | are of the same type in assertEqual(). |
| 398 | function: The callable taking two arguments and an optional |
| 399 | msg= argument that raises self.failureException with a |
| 400 | useful error message when the two arguments are not equal. |
| 401 | """ |
Benjamin Peterson | 8f326b2 | 2009-12-13 02:10:36 +0000 | [diff] [blame] | 402 | self._type_equality_funcs[typeobj] = function |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 403 | |
Serhiy Storchaka | 142566c | 2019-06-05 18:22:31 +0300 | [diff] [blame] | 404 | def addCleanup(self, function, /, *args, **kwargs): |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 405 | """Add a function, with arguments, to be called when the test is |
| 406 | completed. Functions added are called on a LIFO basis and are |
| 407 | called after tearDown on test failure or success. |
| 408 | |
| 409 | Cleanup items are called even if setUp fails (unlike tearDown).""" |
| 410 | self._cleanups.append((function, args, kwargs)) |
| 411 | |
Serhiy Storchaka | 2085bd0 | 2019-06-01 11:00:15 +0300 | [diff] [blame] | 412 | @classmethod |
| 413 | def addClassCleanup(cls, function, /, *args, **kwargs): |
Lisa Roach | 0f221d0 | 2018-11-08 18:34:33 -0800 | [diff] [blame] | 414 | """Same as addCleanup, except the cleanup items are called even if |
| 415 | setUpClass fails (unlike tearDownClass).""" |
| 416 | cls._class_cleanups.append((function, args, kwargs)) |
| 417 | |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 418 | def setUp(self): |
| 419 | "Hook method for setting up the test fixture before exercising it." |
| 420 | pass |
| 421 | |
| 422 | def tearDown(self): |
| 423 | "Hook method for deconstructing the test fixture after testing it." |
| 424 | pass |
| 425 | |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 426 | @classmethod |
| 427 | def setUpClass(cls): |
| 428 | "Hook method for setting up class fixture before running tests in the class." |
| 429 | |
| 430 | @classmethod |
| 431 | def tearDownClass(cls): |
| 432 | "Hook method for deconstructing the class fixture after running all tests in the class." |
| 433 | |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 434 | def countTestCases(self): |
| 435 | return 1 |
| 436 | |
| 437 | def defaultTestResult(self): |
| 438 | return result.TestResult() |
| 439 | |
| 440 | def shortDescription(self): |
Michael Foord | 34c9462 | 2010-02-10 15:51:42 +0000 | [diff] [blame] | 441 | """Returns a one-line description of the test, or None if no |
| 442 | description has been provided. |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 443 | |
Michael Foord | 34c9462 | 2010-02-10 15:51:42 +0000 | [diff] [blame] | 444 | The default implementation of this method returns the first line of |
| 445 | the specified test method's docstring. |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 446 | """ |
Michael Foord | 34c9462 | 2010-02-10 15:51:42 +0000 | [diff] [blame] | 447 | doc = self._testMethodDoc |
Steve Cirelli | 032de73 | 2020-02-03 02:06:50 -0500 | [diff] [blame] | 448 | return doc.strip().split("\n")[0].strip() if doc else None |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 449 | |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 450 | |
| 451 | def id(self): |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 452 | return "%s.%s" % (strclass(self.__class__), self._testMethodName) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 453 | |
| 454 | def __eq__(self, other): |
| 455 | if type(self) is not type(other): |
| 456 | return NotImplemented |
| 457 | |
| 458 | return self._testMethodName == other._testMethodName |
| 459 | |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 460 | def __hash__(self): |
| 461 | return hash((type(self), self._testMethodName)) |
| 462 | |
| 463 | def __str__(self): |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 464 | return "%s (%s)" % (self._testMethodName, strclass(self.__class__)) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 465 | |
| 466 | def __repr__(self): |
| 467 | return "<%s testMethod=%s>" % \ |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 468 | (strclass(self.__class__), self._testMethodName) |
| 469 | |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 470 | def _addSkip(self, result, test_case, reason): |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 471 | addSkip = getattr(result, 'addSkip', None) |
| 472 | if addSkip is not None: |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 473 | addSkip(test_case, reason) |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 474 | else: |
| 475 | warnings.warn("TestResult has no addSkip method, skips not reported", |
| 476 | RuntimeWarning, 2) |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 477 | result.addSuccess(test_case) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 478 | |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 479 | @contextlib.contextmanager |
Berker Peksag | 16ea19f | 2016-09-21 19:34:15 +0300 | [diff] [blame] | 480 | def subTest(self, msg=_subtest_msg_sentinel, **params): |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 481 | """Return a context manager that will return the enclosed block |
| 482 | of code in a subtest identified by the optional message and |
| 483 | keyword parameters. A failure in the subtest marks the test |
| 484 | case as failed but resumes execution at the end of the enclosed |
| 485 | block, allowing further test code to be executed. |
| 486 | """ |
Bruno Oliveira | da2bf9f | 2018-10-12 07:35:55 -0300 | [diff] [blame] | 487 | if self._outcome is None or not self._outcome.result_supports_subtests: |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 488 | yield |
| 489 | return |
| 490 | parent = self._subtest |
| 491 | if parent is None: |
Serhiy Storchaka | 48fbe52 | 2017-06-23 21:47:39 +0300 | [diff] [blame] | 492 | params_map = _OrderedChainMap(params) |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 493 | else: |
| 494 | params_map = parent.params.new_child(params) |
| 495 | self._subtest = _SubTest(self, msg, params_map) |
Michael Foord | b3468f7 | 2010-12-19 03:19:47 +0000 | [diff] [blame] | 496 | try: |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 497 | with self._outcome.testPartExecutor(self._subtest, isTest=True): |
| 498 | yield |
| 499 | if not self._outcome.success: |
| 500 | result = self._outcome.result |
| 501 | if result is not None and result.failfast: |
| 502 | raise _ShouldStop |
| 503 | elif self._outcome.expectedFailure: |
| 504 | # If the test is expecting a failure, we really want to |
| 505 | # stop now and register the expected failure. |
| 506 | raise _ShouldStop |
| 507 | finally: |
| 508 | self._subtest = parent |
| 509 | |
| 510 | def _feedErrorsToResult(self, result, errors): |
| 511 | for test, exc_info in errors: |
| 512 | if isinstance(test, _SubTest): |
| 513 | result.addSubTest(test.test_case, test, exc_info) |
| 514 | elif exc_info is not None: |
| 515 | if issubclass(exc_info[0], self.failureException): |
| 516 | result.addFailure(test, exc_info) |
| 517 | else: |
| 518 | result.addError(test, exc_info) |
| 519 | |
| 520 | def _addExpectedFailure(self, result, exc_info): |
| 521 | try: |
| 522 | addExpectedFailure = result.addExpectedFailure |
| 523 | except AttributeError: |
| 524 | warnings.warn("TestResult has no addExpectedFailure method, reporting as passes", |
| 525 | RuntimeWarning) |
| 526 | result.addSuccess(self) |
| 527 | else: |
| 528 | addExpectedFailure(self, exc_info) |
| 529 | |
| 530 | def _addUnexpectedSuccess(self, result): |
| 531 | try: |
| 532 | addUnexpectedSuccess = result.addUnexpectedSuccess |
| 533 | except AttributeError: |
| 534 | warnings.warn("TestResult has no addUnexpectedSuccess method, reporting as failure", |
| 535 | RuntimeWarning) |
| 536 | # We need to pass an actual exception and traceback to addFailure, |
| 537 | # otherwise the legacy result can choke. |
| 538 | try: |
| 539 | raise _UnexpectedSuccess from None |
| 540 | except _UnexpectedSuccess: |
| 541 | result.addFailure(self, sys.exc_info()) |
| 542 | else: |
| 543 | addUnexpectedSuccess(self) |
Michael Foord | b3468f7 | 2010-12-19 03:19:47 +0000 | [diff] [blame] | 544 | |
Andrew Svetlov | 4dd3e3f | 2019-05-29 12:33:59 +0300 | [diff] [blame] | 545 | def _callSetUp(self): |
| 546 | self.setUp() |
| 547 | |
| 548 | def _callTestMethod(self, method): |
| 549 | method() |
| 550 | |
| 551 | def _callTearDown(self): |
| 552 | self.tearDown() |
| 553 | |
| 554 | def _callCleanup(self, function, /, *args, **kwargs): |
| 555 | function(*args, **kwargs) |
| 556 | |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 557 | def run(self, result=None): |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 558 | if result is None: |
| 559 | result = self.defaultTestResult() |
| 560 | startTestRun = getattr(result, 'startTestRun', None) |
Miss Islington (bot) | d63114c | 2021-08-22 00:55:34 -0700 | [diff] [blame^] | 561 | stopTestRun = getattr(result, 'stopTestRun', None) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 562 | if startTestRun is not None: |
| 563 | startTestRun() |
Miss Islington (bot) | d63114c | 2021-08-22 00:55:34 -0700 | [diff] [blame^] | 564 | else: |
| 565 | stopTestRun = None |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 566 | |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 567 | result.startTest(self) |
Miss Islington (bot) | d63114c | 2021-08-22 00:55:34 -0700 | [diff] [blame^] | 568 | try: |
| 569 | testMethod = getattr(self, self._testMethodName) |
| 570 | if (getattr(self.__class__, "__unittest_skip__", False) or |
| 571 | getattr(testMethod, "__unittest_skip__", False)): |
| 572 | # If the class or method was skipped. |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 573 | skip_why = (getattr(self.__class__, '__unittest_skip_why__', '') |
| 574 | or getattr(testMethod, '__unittest_skip_why__', '')) |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 575 | self._addSkip(result, self, skip_why) |
Miss Islington (bot) | d63114c | 2021-08-22 00:55:34 -0700 | [diff] [blame^] | 576 | return |
Michael Foord | b3468f7 | 2010-12-19 03:19:47 +0000 | [diff] [blame] | 577 | |
Miss Islington (bot) | d63114c | 2021-08-22 00:55:34 -0700 | [diff] [blame^] | 578 | expecting_failure = ( |
| 579 | getattr(self, "__unittest_expecting_failure__", False) or |
| 580 | getattr(testMethod, "__unittest_expecting_failure__", False) |
| 581 | ) |
| 582 | outcome = _Outcome(result) |
| 583 | try: |
| 584 | self._outcome = outcome |
| 585 | |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 586 | with outcome.testPartExecutor(self): |
Miss Islington (bot) | d63114c | 2021-08-22 00:55:34 -0700 | [diff] [blame^] | 587 | self._callSetUp() |
| 588 | if outcome.success: |
| 589 | outcome.expecting_failure = expecting_failure |
| 590 | with outcome.testPartExecutor(self, isTest=True): |
| 591 | self._callTestMethod(testMethod) |
| 592 | outcome.expecting_failure = False |
| 593 | with outcome.testPartExecutor(self): |
| 594 | self._callTearDown() |
Michael Foord | b3468f7 | 2010-12-19 03:19:47 +0000 | [diff] [blame] | 595 | |
Miss Islington (bot) | d63114c | 2021-08-22 00:55:34 -0700 | [diff] [blame^] | 596 | self.doCleanups() |
| 597 | for test, reason in outcome.skipped: |
| 598 | self._addSkip(result, test, reason) |
| 599 | self._feedErrorsToResult(result, outcome.errors) |
| 600 | if outcome.success: |
| 601 | if expecting_failure: |
| 602 | if outcome.expectedFailure: |
| 603 | self._addExpectedFailure(result, outcome.expectedFailure) |
| 604 | else: |
| 605 | self._addUnexpectedSuccess(result) |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 606 | else: |
Miss Islington (bot) | d63114c | 2021-08-22 00:55:34 -0700 | [diff] [blame^] | 607 | result.addSuccess(self) |
| 608 | return result |
| 609 | finally: |
| 610 | # explicitly break reference cycles: |
| 611 | # outcome.errors -> frame -> outcome -> outcome.errors |
| 612 | # outcome.expectedFailure -> frame -> outcome -> outcome.expectedFailure |
| 613 | outcome.errors.clear() |
| 614 | outcome.expectedFailure = None |
| 615 | |
| 616 | # clear the outcome, no more needed |
| 617 | self._outcome = None |
| 618 | |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 619 | finally: |
| 620 | result.stopTest(self) |
Miss Islington (bot) | d63114c | 2021-08-22 00:55:34 -0700 | [diff] [blame^] | 621 | if stopTestRun is not None: |
| 622 | stopTestRun() |
Victor Stinner | 031bd53 | 2013-12-09 01:52:50 +0100 | [diff] [blame] | 623 | |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 624 | def doCleanups(self): |
| 625 | """Execute all cleanup functions. Normally called for you after |
| 626 | tearDown.""" |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 627 | outcome = self._outcome or _Outcome() |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 628 | while self._cleanups: |
Michael Foord | b3468f7 | 2010-12-19 03:19:47 +0000 | [diff] [blame] | 629 | function, args, kwargs = self._cleanups.pop() |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 630 | with outcome.testPartExecutor(self): |
Andrew Svetlov | 4dd3e3f | 2019-05-29 12:33:59 +0300 | [diff] [blame] | 631 | self._callCleanup(function, *args, **kwargs) |
Michael Foord | b3468f7 | 2010-12-19 03:19:47 +0000 | [diff] [blame] | 632 | |
| 633 | # return this for backwards compatibility |
Lisa Roach | 0f221d0 | 2018-11-08 18:34:33 -0800 | [diff] [blame] | 634 | # even though we no longer use it internally |
Michael Foord | b3468f7 | 2010-12-19 03:19:47 +0000 | [diff] [blame] | 635 | return outcome.success |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 636 | |
Lisa Roach | 0f221d0 | 2018-11-08 18:34:33 -0800 | [diff] [blame] | 637 | @classmethod |
| 638 | def doClassCleanups(cls): |
| 639 | """Execute all class cleanup functions. Normally called for you after |
| 640 | tearDownClass.""" |
| 641 | cls.tearDown_exceptions = [] |
| 642 | while cls._class_cleanups: |
| 643 | function, args, kwargs = cls._class_cleanups.pop() |
| 644 | try: |
| 645 | function(*args, **kwargs) |
Pablo Galindo | 293dd23 | 2019-11-19 21:34:03 +0000 | [diff] [blame] | 646 | except Exception: |
Lisa Roach | 0f221d0 | 2018-11-08 18:34:33 -0800 | [diff] [blame] | 647 | cls.tearDown_exceptions.append(sys.exc_info()) |
| 648 | |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 649 | def __call__(self, *args, **kwds): |
| 650 | return self.run(*args, **kwds) |
| 651 | |
| 652 | def debug(self): |
| 653 | """Run the test without collecting errors in a TestResult""" |
| 654 | self.setUp() |
| 655 | getattr(self, self._testMethodName)() |
| 656 | self.tearDown() |
Michael Foord | b874874 | 2010-06-10 16:16:08 +0000 | [diff] [blame] | 657 | while self._cleanups: |
| 658 | function, args, kwargs = self._cleanups.pop(-1) |
| 659 | function(*args, **kwargs) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 660 | |
| 661 | def skipTest(self, reason): |
| 662 | """Skip this test.""" |
| 663 | raise SkipTest(reason) |
| 664 | |
| 665 | def fail(self, msg=None): |
| 666 | """Fail immediately, with the given message.""" |
| 667 | raise self.failureException(msg) |
| 668 | |
| 669 | def assertFalse(self, expr, msg=None): |
Ezio Melotti | 3044fa7 | 2010-12-18 17:31:58 +0000 | [diff] [blame] | 670 | """Check that the expression is false.""" |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 671 | if expr: |
Ezio Melotti | 3044fa7 | 2010-12-18 17:31:58 +0000 | [diff] [blame] | 672 | msg = self._formatMessage(msg, "%s is not false" % safe_repr(expr)) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 673 | raise self.failureException(msg) |
| 674 | |
| 675 | def assertTrue(self, expr, msg=None): |
Ezio Melotti | 3044fa7 | 2010-12-18 17:31:58 +0000 | [diff] [blame] | 676 | """Check that the expression is true.""" |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 677 | if not expr: |
Ezio Melotti | 3044fa7 | 2010-12-18 17:31:58 +0000 | [diff] [blame] | 678 | msg = self._formatMessage(msg, "%s is not true" % safe_repr(expr)) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 679 | raise self.failureException(msg) |
| 680 | |
| 681 | def _formatMessage(self, msg, standardMsg): |
| 682 | """Honour the longMessage attribute when generating failure messages. |
| 683 | If longMessage is False this means: |
| 684 | * Use only an explicit message if it is provided |
| 685 | * Otherwise use the standard message for the assert |
| 686 | |
| 687 | If longMessage is True: |
| 688 | * Use the standard message |
| 689 | * If an explicit message is provided, plus ' : ' and the explicit message |
| 690 | """ |
| 691 | if not self.longMessage: |
| 692 | return msg or standardMsg |
| 693 | if msg is None: |
| 694 | return standardMsg |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 695 | try: |
| 696 | # don't switch to '{}' formatting in Python 2.X |
| 697 | # it changes the way unicode input is handled |
| 698 | return '%s : %s' % (standardMsg, msg) |
| 699 | except UnicodeDecodeError: |
| 700 | return '%s : %s' % (safe_repr(standardMsg), safe_repr(msg)) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 701 | |
Serhiy Storchaka | df573d6 | 2015-05-16 16:29:50 +0300 | [diff] [blame] | 702 | def assertRaises(self, expected_exception, *args, **kwargs): |
| 703 | """Fail unless an exception of class expected_exception is raised |
| 704 | by the callable when invoked with specified positional and |
| 705 | keyword arguments. If a different type of exception is |
Andrew Svetlov | 737fb89 | 2012-12-18 21:14:22 +0200 | [diff] [blame] | 706 | raised, it will not be caught, and the test case will be |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 707 | deemed to have suffered an error, exactly as for an |
| 708 | unexpected exception. |
| 709 | |
Serhiy Storchaka | df573d6 | 2015-05-16 16:29:50 +0300 | [diff] [blame] | 710 | If called with the callable and arguments omitted, will return a |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 711 | context object used like this:: |
| 712 | |
Michael Foord | 1c42b12 | 2010-02-05 22:58:21 +0000 | [diff] [blame] | 713 | with self.assertRaises(SomeException): |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 714 | do_something() |
Michael Foord | 1c42b12 | 2010-02-05 22:58:21 +0000 | [diff] [blame] | 715 | |
Ezio Melotti | b4dc250 | 2011-05-06 15:01:41 +0300 | [diff] [blame] | 716 | An optional keyword argument 'msg' can be provided when assertRaises |
| 717 | is used as a context object. |
| 718 | |
Michael Foord | 1c42b12 | 2010-02-05 22:58:21 +0000 | [diff] [blame] | 719 | The context manager keeps a reference to the exception as |
Ezio Melotti | 4900823 | 2010-02-08 21:57:48 +0000 | [diff] [blame] | 720 | the 'exception' attribute. This allows you to inspect the |
Michael Foord | 1c42b12 | 2010-02-05 22:58:21 +0000 | [diff] [blame] | 721 | exception after the assertion:: |
| 722 | |
| 723 | with self.assertRaises(SomeException) as cm: |
| 724 | do_something() |
Ezio Melotti | 4900823 | 2010-02-08 21:57:48 +0000 | [diff] [blame] | 725 | the_exception = cm.exception |
Michael Foord | b57ac6d | 2010-02-05 23:26:29 +0000 | [diff] [blame] | 726 | self.assertEqual(the_exception.error_code, 3) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 727 | """ |
Serhiy Storchaka | df573d6 | 2015-05-16 16:29:50 +0300 | [diff] [blame] | 728 | context = _AssertRaisesContext(expected_exception, self) |
Victor Stinner | bbd3cf8 | 2017-03-28 00:56:28 +0200 | [diff] [blame] | 729 | try: |
| 730 | return context.handle('assertRaises', args, kwargs) |
| 731 | finally: |
| 732 | # bpo-23890: manually break a reference cycle |
| 733 | context = None |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 734 | |
Serhiy Storchaka | df573d6 | 2015-05-16 16:29:50 +0300 | [diff] [blame] | 735 | def assertWarns(self, expected_warning, *args, **kwargs): |
Antoine Pitrou | 4bc12ef | 2010-09-06 19:25:46 +0000 | [diff] [blame] | 736 | """Fail unless a warning of class warnClass is triggered |
Serhiy Storchaka | df573d6 | 2015-05-16 16:29:50 +0300 | [diff] [blame] | 737 | by the callable when invoked with specified positional and |
| 738 | keyword arguments. If a different type of warning is |
Antoine Pitrou | 4bc12ef | 2010-09-06 19:25:46 +0000 | [diff] [blame] | 739 | triggered, it will not be handled: depending on the other |
| 740 | warning filtering rules in effect, it might be silenced, printed |
| 741 | out, or raised as an exception. |
| 742 | |
Serhiy Storchaka | df573d6 | 2015-05-16 16:29:50 +0300 | [diff] [blame] | 743 | If called with the callable and arguments omitted, will return a |
Antoine Pitrou | 4bc12ef | 2010-09-06 19:25:46 +0000 | [diff] [blame] | 744 | context object used like this:: |
| 745 | |
| 746 | with self.assertWarns(SomeWarning): |
| 747 | do_something() |
| 748 | |
Ezio Melotti | b4dc250 | 2011-05-06 15:01:41 +0300 | [diff] [blame] | 749 | An optional keyword argument 'msg' can be provided when assertWarns |
| 750 | is used as a context object. |
| 751 | |
Antoine Pitrou | 4bc12ef | 2010-09-06 19:25:46 +0000 | [diff] [blame] | 752 | The context manager keeps a reference to the first matching |
| 753 | warning as the 'warning' attribute; similarly, the 'filename' |
| 754 | and 'lineno' attributes give you information about the line |
| 755 | of Python code from which the warning was triggered. |
| 756 | This allows you to inspect the warning after the assertion:: |
| 757 | |
| 758 | with self.assertWarns(SomeWarning) as cm: |
| 759 | do_something() |
| 760 | the_warning = cm.warning |
| 761 | self.assertEqual(the_warning.some_attribute, 147) |
| 762 | """ |
Serhiy Storchaka | df573d6 | 2015-05-16 16:29:50 +0300 | [diff] [blame] | 763 | context = _AssertWarnsContext(expected_warning, self) |
| 764 | return context.handle('assertWarns', args, kwargs) |
Antoine Pitrou | 4bc12ef | 2010-09-06 19:25:46 +0000 | [diff] [blame] | 765 | |
Antoine Pitrou | 0715b9f | 2013-09-14 19:45:47 +0200 | [diff] [blame] | 766 | def assertLogs(self, logger=None, level=None): |
| 767 | """Fail unless a log message of level *level* or higher is emitted |
| 768 | on *logger_name* or its children. If omitted, *level* defaults to |
| 769 | INFO and *logger* defaults to the root logger. |
| 770 | |
| 771 | This method must be used as a context manager, and will yield |
| 772 | a recording object with two attributes: `output` and `records`. |
| 773 | At the end of the context manager, the `output` attribute will |
| 774 | be a list of the matching formatted log messages and the |
| 775 | `records` attribute will be a list of the corresponding LogRecord |
| 776 | objects. |
| 777 | |
| 778 | Example:: |
| 779 | |
| 780 | with self.assertLogs('foo', level='INFO') as cm: |
| 781 | logging.getLogger('foo').info('first message') |
| 782 | logging.getLogger('foo.bar').error('second message') |
| 783 | self.assertEqual(cm.output, ['INFO:foo:first message', |
| 784 | 'ERROR:foo.bar:second message']) |
| 785 | """ |
Serhiy Storchaka | 515fce4 | 2020-04-25 11:35:18 +0300 | [diff] [blame] | 786 | # Lazy import to avoid importing logging if it is not needed. |
| 787 | from ._log import _AssertLogsContext |
Kit Choi | 6b34d7b | 2020-07-01 22:08:38 +0100 | [diff] [blame] | 788 | return _AssertLogsContext(self, logger, level, no_logs=False) |
| 789 | |
| 790 | def assertNoLogs(self, logger=None, level=None): |
| 791 | """ Fail unless no log messages of level *level* or higher are emitted |
| 792 | on *logger_name* or its children. |
| 793 | |
| 794 | This method must be used as a context manager. |
| 795 | """ |
| 796 | from ._log import _AssertLogsContext |
| 797 | return _AssertLogsContext(self, logger, level, no_logs=True) |
Antoine Pitrou | 0715b9f | 2013-09-14 19:45:47 +0200 | [diff] [blame] | 798 | |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 799 | def _getAssertEqualityFunc(self, first, second): |
| 800 | """Get a detailed comparison function for the types of the two args. |
| 801 | |
| 802 | Returns: A callable accepting (first, second, msg=None) that will |
| 803 | raise a failure exception if first != second with a useful human |
| 804 | readable error message for those types. |
| 805 | """ |
| 806 | # |
| 807 | # NOTE(gregory.p.smith): I considered isinstance(first, type(second)) |
| 808 | # and vice versa. I opted for the conservative approach in case |
| 809 | # subclasses are not intended to be compared in detail to their super |
| 810 | # class instances using a type equality func. This means testing |
| 811 | # subtypes won't automagically use the detailed comparison. Callers |
| 812 | # should use their type specific assertSpamEqual method to compare |
| 813 | # subclasses if the detailed comparison is desired and appropriate. |
| 814 | # See the discussion in http://bugs.python.org/issue2578. |
| 815 | # |
| 816 | if type(first) is type(second): |
| 817 | asserter = self._type_equality_funcs.get(type(first)) |
| 818 | if asserter is not None: |
Benjamin Peterson | 34b2b26 | 2011-07-12 19:21:42 -0500 | [diff] [blame] | 819 | if isinstance(asserter, str): |
| 820 | asserter = getattr(self, asserter) |
Benjamin Peterson | 8f326b2 | 2009-12-13 02:10:36 +0000 | [diff] [blame] | 821 | return asserter |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 822 | |
| 823 | return self._baseAssertEqual |
| 824 | |
| 825 | def _baseAssertEqual(self, first, second, msg=None): |
| 826 | """The default assertEqual implementation, not type specific.""" |
| 827 | if not first == second: |
Serhiy Storchaka | 77622f5 | 2013-09-23 23:07:00 +0300 | [diff] [blame] | 828 | standardMsg = '%s != %s' % _common_shorten_repr(first, second) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 829 | msg = self._formatMessage(msg, standardMsg) |
| 830 | raise self.failureException(msg) |
| 831 | |
| 832 | def assertEqual(self, first, second, msg=None): |
| 833 | """Fail if the two objects are unequal as determined by the '==' |
| 834 | operator. |
| 835 | """ |
| 836 | assertion_func = self._getAssertEqualityFunc(first, second) |
| 837 | assertion_func(first, second, msg=msg) |
| 838 | |
| 839 | def assertNotEqual(self, first, second, msg=None): |
Ezio Melotti | 90eea97 | 2012-11-08 11:08:39 +0200 | [diff] [blame] | 840 | """Fail if the two objects are equal as determined by the '!=' |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 841 | operator. |
| 842 | """ |
| 843 | if not first != second: |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 844 | msg = self._formatMessage(msg, '%s == %s' % (safe_repr(first), |
| 845 | safe_repr(second))) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 846 | raise self.failureException(msg) |
| 847 | |
Michael Foord | 321d059 | 2010-11-02 13:44:51 +0000 | [diff] [blame] | 848 | def assertAlmostEqual(self, first, second, places=None, msg=None, |
Benjamin Peterson | b48af54 | 2010-04-11 20:43:16 +0000 | [diff] [blame] | 849 | delta=None): |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 850 | """Fail if the two objects are unequal as determined by their |
| 851 | difference rounded to the given number of decimal places |
Benjamin Peterson | b48af54 | 2010-04-11 20:43:16 +0000 | [diff] [blame] | 852 | (default 7) and comparing to zero, or by comparing that the |
Ron | 032a648 | 2017-10-18 20:01:23 +0300 | [diff] [blame] | 853 | difference between the two objects is more than the given |
| 854 | delta. |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 855 | |
| 856 | Note that decimal places (from zero) are usually not the same |
Martin Panter | eb99570 | 2016-07-28 01:11:04 +0000 | [diff] [blame] | 857 | as significant digits (measured from the most significant digit). |
Benjamin Peterson | 4ac9ce4 | 2009-10-04 14:49:41 +0000 | [diff] [blame] | 858 | |
| 859 | If the two objects compare equal then they will automatically |
| 860 | compare almost equal. |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 861 | """ |
Benjamin Peterson | 4ac9ce4 | 2009-10-04 14:49:41 +0000 | [diff] [blame] | 862 | if first == second: |
Benjamin Peterson | b48af54 | 2010-04-11 20:43:16 +0000 | [diff] [blame] | 863 | # shortcut |
Benjamin Peterson | 4ac9ce4 | 2009-10-04 14:49:41 +0000 | [diff] [blame] | 864 | return |
Benjamin Peterson | b48af54 | 2010-04-11 20:43:16 +0000 | [diff] [blame] | 865 | if delta is not None and places is not None: |
| 866 | raise TypeError("specify delta or places not both") |
| 867 | |
Giampaolo Rodola | 5d7a8d0 | 2017-05-01 18:18:56 +0200 | [diff] [blame] | 868 | diff = abs(first - second) |
Benjamin Peterson | b48af54 | 2010-04-11 20:43:16 +0000 | [diff] [blame] | 869 | if delta is not None: |
Giampaolo Rodola | 5d7a8d0 | 2017-05-01 18:18:56 +0200 | [diff] [blame] | 870 | if diff <= delta: |
Benjamin Peterson | b48af54 | 2010-04-11 20:43:16 +0000 | [diff] [blame] | 871 | return |
| 872 | |
Giampaolo Rodola | 5d7a8d0 | 2017-05-01 18:18:56 +0200 | [diff] [blame] | 873 | standardMsg = '%s != %s within %s delta (%s difference)' % ( |
| 874 | safe_repr(first), |
| 875 | safe_repr(second), |
| 876 | safe_repr(delta), |
| 877 | safe_repr(diff)) |
Benjamin Peterson | b48af54 | 2010-04-11 20:43:16 +0000 | [diff] [blame] | 878 | else: |
| 879 | if places is None: |
| 880 | places = 7 |
| 881 | |
Giampaolo Rodola | 5d7a8d0 | 2017-05-01 18:18:56 +0200 | [diff] [blame] | 882 | if round(diff, places) == 0: |
Benjamin Peterson | b48af54 | 2010-04-11 20:43:16 +0000 | [diff] [blame] | 883 | return |
| 884 | |
Giampaolo Rodola | 5d7a8d0 | 2017-05-01 18:18:56 +0200 | [diff] [blame] | 885 | standardMsg = '%s != %s within %r places (%s difference)' % ( |
| 886 | safe_repr(first), |
| 887 | safe_repr(second), |
| 888 | places, |
| 889 | safe_repr(diff)) |
Benjamin Peterson | b48af54 | 2010-04-11 20:43:16 +0000 | [diff] [blame] | 890 | msg = self._formatMessage(msg, standardMsg) |
| 891 | raise self.failureException(msg) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 892 | |
Michael Foord | 321d059 | 2010-11-02 13:44:51 +0000 | [diff] [blame] | 893 | def assertNotAlmostEqual(self, first, second, places=None, msg=None, |
Benjamin Peterson | b48af54 | 2010-04-11 20:43:16 +0000 | [diff] [blame] | 894 | delta=None): |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 895 | """Fail if the two objects are equal as determined by their |
| 896 | difference rounded to the given number of decimal places |
Benjamin Peterson | b48af54 | 2010-04-11 20:43:16 +0000 | [diff] [blame] | 897 | (default 7) and comparing to zero, or by comparing that the |
Ron | 032a648 | 2017-10-18 20:01:23 +0300 | [diff] [blame] | 898 | difference between the two objects is less than the given delta. |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 899 | |
| 900 | Note that decimal places (from zero) are usually not the same |
Martin Panter | eb99570 | 2016-07-28 01:11:04 +0000 | [diff] [blame] | 901 | as significant digits (measured from the most significant digit). |
Benjamin Peterson | 4ac9ce4 | 2009-10-04 14:49:41 +0000 | [diff] [blame] | 902 | |
| 903 | Objects that are equal automatically fail. |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 904 | """ |
Benjamin Peterson | b48af54 | 2010-04-11 20:43:16 +0000 | [diff] [blame] | 905 | if delta is not None and places is not None: |
| 906 | raise TypeError("specify delta or places not both") |
Giampaolo Rodola | 5d7a8d0 | 2017-05-01 18:18:56 +0200 | [diff] [blame] | 907 | diff = abs(first - second) |
Benjamin Peterson | b48af54 | 2010-04-11 20:43:16 +0000 | [diff] [blame] | 908 | if delta is not None: |
Giampaolo Rodola | 5d7a8d0 | 2017-05-01 18:18:56 +0200 | [diff] [blame] | 909 | if not (first == second) and diff > delta: |
Benjamin Peterson | b48af54 | 2010-04-11 20:43:16 +0000 | [diff] [blame] | 910 | return |
Giampaolo Rodola | 5d7a8d0 | 2017-05-01 18:18:56 +0200 | [diff] [blame] | 911 | standardMsg = '%s == %s within %s delta (%s difference)' % ( |
| 912 | safe_repr(first), |
| 913 | safe_repr(second), |
| 914 | safe_repr(delta), |
| 915 | safe_repr(diff)) |
Benjamin Peterson | b48af54 | 2010-04-11 20:43:16 +0000 | [diff] [blame] | 916 | else: |
| 917 | if places is None: |
| 918 | places = 7 |
Giampaolo Rodola | 5d7a8d0 | 2017-05-01 18:18:56 +0200 | [diff] [blame] | 919 | if not (first == second) and round(diff, places) != 0: |
Benjamin Peterson | b48af54 | 2010-04-11 20:43:16 +0000 | [diff] [blame] | 920 | return |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 921 | standardMsg = '%s == %s within %r places' % (safe_repr(first), |
Benjamin Peterson | b48af54 | 2010-04-11 20:43:16 +0000 | [diff] [blame] | 922 | safe_repr(second), |
| 923 | places) |
| 924 | |
| 925 | msg = self._formatMessage(msg, standardMsg) |
| 926 | raise self.failureException(msg) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 927 | |
Michael Foord | 085dfd3 | 2010-06-05 12:17:02 +0000 | [diff] [blame] | 928 | def assertSequenceEqual(self, seq1, seq2, msg=None, seq_type=None): |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 929 | """An equality assertion for ordered sequences (like lists and tuples). |
| 930 | |
R. David Murray | ad13f22 | 2010-01-29 22:17:58 +0000 | [diff] [blame] | 931 | For the purposes of this function, a valid ordered sequence type is one |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 932 | which can be indexed, has a length, and has an equality operator. |
| 933 | |
| 934 | Args: |
| 935 | seq1: The first sequence to compare. |
| 936 | seq2: The second sequence to compare. |
| 937 | seq_type: The expected datatype of the sequences, or None if no |
| 938 | datatype should be enforced. |
| 939 | msg: Optional message to use on failure instead of a list of |
| 940 | differences. |
| 941 | """ |
Benjamin Peterson | b29614e | 2012-10-09 11:16:03 -0400 | [diff] [blame] | 942 | if seq_type is not None: |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 943 | seq_type_name = seq_type.__name__ |
| 944 | if not isinstance(seq1, seq_type): |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 945 | raise self.failureException('First sequence is not a %s: %s' |
| 946 | % (seq_type_name, safe_repr(seq1))) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 947 | if not isinstance(seq2, seq_type): |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 948 | raise self.failureException('Second sequence is not a %s: %s' |
| 949 | % (seq_type_name, safe_repr(seq2))) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 950 | else: |
| 951 | seq_type_name = "sequence" |
| 952 | |
| 953 | differing = None |
| 954 | try: |
| 955 | len1 = len(seq1) |
| 956 | except (TypeError, NotImplementedError): |
| 957 | differing = 'First %s has no length. Non-sequence?' % ( |
| 958 | seq_type_name) |
| 959 | |
| 960 | if differing is None: |
| 961 | try: |
| 962 | len2 = len(seq2) |
| 963 | except (TypeError, NotImplementedError): |
| 964 | differing = 'Second %s has no length. Non-sequence?' % ( |
| 965 | seq_type_name) |
| 966 | |
| 967 | if differing is None: |
| 968 | if seq1 == seq2: |
| 969 | return |
| 970 | |
Serhiy Storchaka | 77622f5 | 2013-09-23 23:07:00 +0300 | [diff] [blame] | 971 | differing = '%ss differ: %s != %s\n' % ( |
| 972 | (seq_type_name.capitalize(),) + |
| 973 | _common_shorten_repr(seq1, seq2)) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 974 | |
| 975 | for i in range(min(len1, len2)): |
| 976 | try: |
| 977 | item1 = seq1[i] |
| 978 | except (TypeError, IndexError, NotImplementedError): |
| 979 | differing += ('\nUnable to index element %d of first %s\n' % |
| 980 | (i, seq_type_name)) |
| 981 | break |
| 982 | |
| 983 | try: |
| 984 | item2 = seq2[i] |
| 985 | except (TypeError, IndexError, NotImplementedError): |
| 986 | differing += ('\nUnable to index element %d of second %s\n' % |
| 987 | (i, seq_type_name)) |
| 988 | break |
| 989 | |
| 990 | if item1 != item2: |
| 991 | differing += ('\nFirst differing element %d:\n%s\n%s\n' % |
Serhiy Storchaka | 685fbed | 2016-04-25 08:58:25 +0300 | [diff] [blame] | 992 | ((i,) + _common_shorten_repr(item1, item2))) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 993 | break |
| 994 | else: |
| 995 | if (len1 == len2 and seq_type is None and |
| 996 | type(seq1) != type(seq2)): |
| 997 | # The sequences are the same, but have differing types. |
| 998 | return |
| 999 | |
| 1000 | if len1 > len2: |
| 1001 | differing += ('\nFirst %s contains %d additional ' |
| 1002 | 'elements.\n' % (seq_type_name, len1 - len2)) |
| 1003 | try: |
| 1004 | differing += ('First extra element %d:\n%s\n' % |
Serhiy Storchaka | 685fbed | 2016-04-25 08:58:25 +0300 | [diff] [blame] | 1005 | (len2, safe_repr(seq1[len2]))) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1006 | except (TypeError, IndexError, NotImplementedError): |
| 1007 | differing += ('Unable to index element %d ' |
| 1008 | 'of first %s\n' % (len2, seq_type_name)) |
| 1009 | elif len1 < len2: |
| 1010 | differing += ('\nSecond %s contains %d additional ' |
| 1011 | 'elements.\n' % (seq_type_name, len2 - len1)) |
| 1012 | try: |
| 1013 | differing += ('First extra element %d:\n%s\n' % |
Serhiy Storchaka | 685fbed | 2016-04-25 08:58:25 +0300 | [diff] [blame] | 1014 | (len1, safe_repr(seq2[len1]))) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1015 | except (TypeError, IndexError, NotImplementedError): |
| 1016 | differing += ('Unable to index element %d ' |
| 1017 | 'of second %s\n' % (len1, seq_type_name)) |
Michael Foord | 2034d9a | 2010-06-05 11:27:52 +0000 | [diff] [blame] | 1018 | standardMsg = differing |
| 1019 | diffMsg = '\n' + '\n'.join( |
Benjamin Peterson | 6e8c757 | 2009-10-04 20:19:21 +0000 | [diff] [blame] | 1020 | difflib.ndiff(pprint.pformat(seq1).splitlines(), |
| 1021 | pprint.pformat(seq2).splitlines())) |
Michael Foord | 085dfd3 | 2010-06-05 12:17:02 +0000 | [diff] [blame] | 1022 | |
| 1023 | standardMsg = self._truncateMessage(standardMsg, diffMsg) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1024 | msg = self._formatMessage(msg, standardMsg) |
| 1025 | self.fail(msg) |
| 1026 | |
Michael Foord | 085dfd3 | 2010-06-05 12:17:02 +0000 | [diff] [blame] | 1027 | def _truncateMessage(self, message, diff): |
| 1028 | max_diff = self.maxDiff |
| 1029 | if max_diff is None or len(diff) <= max_diff: |
| 1030 | return message + diff |
Michael Foord | 9dad32e | 2010-06-05 13:49:56 +0000 | [diff] [blame] | 1031 | return message + (DIFF_OMITTED % len(diff)) |
Michael Foord | 085dfd3 | 2010-06-05 12:17:02 +0000 | [diff] [blame] | 1032 | |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1033 | def assertListEqual(self, list1, list2, msg=None): |
| 1034 | """A list-specific equality assertion. |
| 1035 | |
| 1036 | Args: |
| 1037 | list1: The first list to compare. |
| 1038 | list2: The second list to compare. |
| 1039 | msg: Optional message to use on failure instead of a list of |
| 1040 | differences. |
| 1041 | |
| 1042 | """ |
| 1043 | self.assertSequenceEqual(list1, list2, msg, seq_type=list) |
| 1044 | |
| 1045 | def assertTupleEqual(self, tuple1, tuple2, msg=None): |
| 1046 | """A tuple-specific equality assertion. |
| 1047 | |
| 1048 | Args: |
| 1049 | tuple1: The first tuple to compare. |
| 1050 | tuple2: The second tuple to compare. |
| 1051 | msg: Optional message to use on failure instead of a list of |
| 1052 | differences. |
| 1053 | """ |
| 1054 | self.assertSequenceEqual(tuple1, tuple2, msg, seq_type=tuple) |
| 1055 | |
| 1056 | def assertSetEqual(self, set1, set2, msg=None): |
| 1057 | """A set-specific equality assertion. |
| 1058 | |
| 1059 | Args: |
| 1060 | set1: The first set to compare. |
| 1061 | set2: The second set to compare. |
| 1062 | msg: Optional message to use on failure instead of a list of |
| 1063 | differences. |
| 1064 | |
Michael Foord | 91c9da3 | 2010-03-20 17:21:27 +0000 | [diff] [blame] | 1065 | assertSetEqual uses ducktyping to support different types of sets, and |
| 1066 | is optimized for sets specifically (parameters must support a |
| 1067 | difference method). |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1068 | """ |
| 1069 | try: |
| 1070 | difference1 = set1.difference(set2) |
| 1071 | except TypeError as e: |
| 1072 | self.fail('invalid type when attempting set difference: %s' % e) |
| 1073 | except AttributeError as e: |
| 1074 | self.fail('first argument does not support set difference: %s' % e) |
| 1075 | |
| 1076 | try: |
| 1077 | difference2 = set2.difference(set1) |
| 1078 | except TypeError as e: |
| 1079 | self.fail('invalid type when attempting set difference: %s' % e) |
| 1080 | except AttributeError as e: |
| 1081 | self.fail('second argument does not support set difference: %s' % e) |
| 1082 | |
| 1083 | if not (difference1 or difference2): |
| 1084 | return |
| 1085 | |
| 1086 | lines = [] |
| 1087 | if difference1: |
| 1088 | lines.append('Items in the first set but not the second:') |
| 1089 | for item in difference1: |
| 1090 | lines.append(repr(item)) |
| 1091 | if difference2: |
| 1092 | lines.append('Items in the second set but not the first:') |
| 1093 | for item in difference2: |
| 1094 | lines.append(repr(item)) |
| 1095 | |
| 1096 | standardMsg = '\n'.join(lines) |
| 1097 | self.fail(self._formatMessage(msg, standardMsg)) |
| 1098 | |
| 1099 | def assertIn(self, member, container, msg=None): |
| 1100 | """Just like self.assertTrue(a in b), but with a nicer default message.""" |
| 1101 | if member not in container: |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 1102 | standardMsg = '%s not found in %s' % (safe_repr(member), |
| 1103 | safe_repr(container)) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1104 | self.fail(self._formatMessage(msg, standardMsg)) |
| 1105 | |
| 1106 | def assertNotIn(self, member, container, msg=None): |
| 1107 | """Just like self.assertTrue(a not in b), but with a nicer default message.""" |
| 1108 | if member in container: |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 1109 | standardMsg = '%s unexpectedly found in %s' % (safe_repr(member), |
| 1110 | safe_repr(container)) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1111 | self.fail(self._formatMessage(msg, standardMsg)) |
| 1112 | |
| 1113 | def assertIs(self, expr1, expr2, msg=None): |
| 1114 | """Just like self.assertTrue(a is b), but with a nicer default message.""" |
| 1115 | if expr1 is not expr2: |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 1116 | standardMsg = '%s is not %s' % (safe_repr(expr1), |
| 1117 | safe_repr(expr2)) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1118 | self.fail(self._formatMessage(msg, standardMsg)) |
| 1119 | |
| 1120 | def assertIsNot(self, expr1, expr2, msg=None): |
| 1121 | """Just like self.assertTrue(a is not b), but with a nicer default message.""" |
| 1122 | if expr1 is expr2: |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 1123 | standardMsg = 'unexpectedly identical: %s' % (safe_repr(expr1),) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1124 | self.fail(self._formatMessage(msg, standardMsg)) |
| 1125 | |
| 1126 | def assertDictEqual(self, d1, d2, msg=None): |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 1127 | self.assertIsInstance(d1, dict, 'First argument is not a dictionary') |
| 1128 | self.assertIsInstance(d2, dict, 'Second argument is not a dictionary') |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1129 | |
| 1130 | if d1 != d2: |
Serhiy Storchaka | 77622f5 | 2013-09-23 23:07:00 +0300 | [diff] [blame] | 1131 | standardMsg = '%s != %s' % _common_shorten_repr(d1, d2) |
Michael Foord | 085dfd3 | 2010-06-05 12:17:02 +0000 | [diff] [blame] | 1132 | diff = ('\n' + '\n'.join(difflib.ndiff( |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1133 | pprint.pformat(d1).splitlines(), |
| 1134 | pprint.pformat(d2).splitlines()))) |
Michael Foord | cb11b25 | 2010-06-05 13:14:43 +0000 | [diff] [blame] | 1135 | standardMsg = self._truncateMessage(standardMsg, diff) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1136 | self.fail(self._formatMessage(msg, standardMsg)) |
| 1137 | |
Ezio Melotti | 0f53501 | 2011-04-03 18:02:13 +0300 | [diff] [blame] | 1138 | def assertDictContainsSubset(self, subset, dictionary, msg=None): |
| 1139 | """Checks whether dictionary is a superset of subset.""" |
| 1140 | warnings.warn('assertDictContainsSubset is deprecated', |
| 1141 | DeprecationWarning) |
| 1142 | missing = [] |
| 1143 | mismatched = [] |
| 1144 | for key, value in subset.items(): |
| 1145 | if key not in dictionary: |
| 1146 | missing.append(key) |
| 1147 | elif value != dictionary[key]: |
| 1148 | mismatched.append('%s, expected: %s, actual: %s' % |
| 1149 | (safe_repr(key), safe_repr(value), |
| 1150 | safe_repr(dictionary[key]))) |
| 1151 | |
| 1152 | if not (missing or mismatched): |
| 1153 | return |
| 1154 | |
| 1155 | standardMsg = '' |
| 1156 | if missing: |
| 1157 | standardMsg = 'Missing: %s' % ','.join(safe_repr(m) for m in |
| 1158 | missing) |
| 1159 | if mismatched: |
| 1160 | if standardMsg: |
| 1161 | standardMsg += '; ' |
| 1162 | standardMsg += 'Mismatched values: %s' % ','.join(mismatched) |
| 1163 | |
| 1164 | self.fail(self._formatMessage(msg, standardMsg)) |
| 1165 | |
| 1166 | |
Raymond Hettinger | 57bd00a | 2010-12-24 21:51:48 +0000 | [diff] [blame] | 1167 | def assertCountEqual(self, first, second, msg=None): |
jkleint | 39baace | 2019-04-23 01:34:29 -0700 | [diff] [blame] | 1168 | """Asserts that two iterables have the same elements, the same number of |
| 1169 | times, without regard to order. |
Michael Foord | 8442a60 | 2010-03-20 16:58:04 +0000 | [diff] [blame] | 1170 | |
Raymond Hettinger | 57bd00a | 2010-12-24 21:51:48 +0000 | [diff] [blame] | 1171 | self.assertEqual(Counter(list(first)), |
| 1172 | Counter(list(second))) |
Michael Foord | 8442a60 | 2010-03-20 16:58:04 +0000 | [diff] [blame] | 1173 | |
Raymond Hettinger | 57bd00a | 2010-12-24 21:51:48 +0000 | [diff] [blame] | 1174 | Example: |
Michael Foord | 8442a60 | 2010-03-20 16:58:04 +0000 | [diff] [blame] | 1175 | - [0, 1, 1] and [1, 0, 1] compare equal. |
| 1176 | - [0, 0, 1] and [0, 1] compare unequal. |
Raymond Hettinger | 57bd00a | 2010-12-24 21:51:48 +0000 | [diff] [blame] | 1177 | |
Michael Foord | 8442a60 | 2010-03-20 16:58:04 +0000 | [diff] [blame] | 1178 | """ |
Michael Foord | e180d39 | 2011-01-28 19:51:48 +0000 | [diff] [blame] | 1179 | first_seq, second_seq = list(first), list(second) |
Michael Foord | 8442a60 | 2010-03-20 16:58:04 +0000 | [diff] [blame] | 1180 | try: |
Michael Foord | e180d39 | 2011-01-28 19:51:48 +0000 | [diff] [blame] | 1181 | first = collections.Counter(first_seq) |
| 1182 | second = collections.Counter(second_seq) |
Michael Foord | 8442a60 | 2010-03-20 16:58:04 +0000 | [diff] [blame] | 1183 | except TypeError: |
Raymond Hettinger | 6518f5e | 2010-12-24 00:52:54 +0000 | [diff] [blame] | 1184 | # Handle case with unhashable elements |
Michael Foord | e180d39 | 2011-01-28 19:51:48 +0000 | [diff] [blame] | 1185 | differences = _count_diff_all_purpose(first_seq, second_seq) |
Michael Foord | 8442a60 | 2010-03-20 16:58:04 +0000 | [diff] [blame] | 1186 | else: |
Michael Foord | e180d39 | 2011-01-28 19:51:48 +0000 | [diff] [blame] | 1187 | if first == second: |
Raymond Hettinger | 6e165b3 | 2010-11-27 09:31:37 +0000 | [diff] [blame] | 1188 | return |
Michael Foord | e180d39 | 2011-01-28 19:51:48 +0000 | [diff] [blame] | 1189 | differences = _count_diff_hashable(first_seq, second_seq) |
Michael Foord | 8442a60 | 2010-03-20 16:58:04 +0000 | [diff] [blame] | 1190 | |
Raymond Hettinger | 93e233d | 2010-12-24 10:02:22 +0000 | [diff] [blame] | 1191 | if differences: |
| 1192 | standardMsg = 'Element counts were not equal:\n' |
Raymond Hettinger | 57bd00a | 2010-12-24 21:51:48 +0000 | [diff] [blame] | 1193 | lines = ['First has %d, Second has %d: %r' % diff for diff in differences] |
Raymond Hettinger | 93e233d | 2010-12-24 10:02:22 +0000 | [diff] [blame] | 1194 | diffMsg = '\n'.join(lines) |
| 1195 | standardMsg = self._truncateMessage(standardMsg, diffMsg) |
| 1196 | msg = self._formatMessage(msg, standardMsg) |
| 1197 | self.fail(msg) |
Michael Foord | 8442a60 | 2010-03-20 16:58:04 +0000 | [diff] [blame] | 1198 | |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1199 | def assertMultiLineEqual(self, first, second, msg=None): |
| 1200 | """Assert that two multi-line strings are equal.""" |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 1201 | self.assertIsInstance(first, str, 'First argument is not a string') |
| 1202 | self.assertIsInstance(second, str, 'Second argument is not a string') |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1203 | |
| 1204 | if first != second: |
Ezio Melotti | edd117f | 2011-04-27 10:20:38 +0300 | [diff] [blame] | 1205 | # don't use difflib if the strings are too long |
| 1206 | if (len(first) > self._diffThreshold or |
| 1207 | len(second) > self._diffThreshold): |
| 1208 | self._baseAssertEqual(first, second, msg) |
Ezio Melotti | d8b509b | 2011-09-28 17:37:55 +0300 | [diff] [blame] | 1209 | firstlines = first.splitlines(keepends=True) |
| 1210 | secondlines = second.splitlines(keepends=True) |
Michael Foord | c653ce3 | 2010-07-10 13:52:22 +0000 | [diff] [blame] | 1211 | if len(firstlines) == 1 and first.strip('\r\n') == first: |
| 1212 | firstlines = [first + '\n'] |
| 1213 | secondlines = [second + '\n'] |
Serhiy Storchaka | 77622f5 | 2013-09-23 23:07:00 +0300 | [diff] [blame] | 1214 | standardMsg = '%s != %s' % _common_shorten_repr(first, second) |
Michael Foord | c653ce3 | 2010-07-10 13:52:22 +0000 | [diff] [blame] | 1215 | diff = '\n' + ''.join(difflib.ndiff(firstlines, secondlines)) |
Michael Foord | cb11b25 | 2010-06-05 13:14:43 +0000 | [diff] [blame] | 1216 | standardMsg = self._truncateMessage(standardMsg, diff) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1217 | self.fail(self._formatMessage(msg, standardMsg)) |
| 1218 | |
| 1219 | def assertLess(self, a, b, msg=None): |
| 1220 | """Just like self.assertTrue(a < b), but with a nicer default message.""" |
| 1221 | if not a < b: |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 1222 | standardMsg = '%s not less than %s' % (safe_repr(a), safe_repr(b)) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1223 | self.fail(self._formatMessage(msg, standardMsg)) |
| 1224 | |
| 1225 | def assertLessEqual(self, a, b, msg=None): |
| 1226 | """Just like self.assertTrue(a <= b), but with a nicer default message.""" |
| 1227 | if not a <= b: |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 1228 | standardMsg = '%s not less than or equal to %s' % (safe_repr(a), safe_repr(b)) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1229 | self.fail(self._formatMessage(msg, standardMsg)) |
| 1230 | |
| 1231 | def assertGreater(self, a, b, msg=None): |
| 1232 | """Just like self.assertTrue(a > b), but with a nicer default message.""" |
| 1233 | if not a > b: |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 1234 | standardMsg = '%s not greater than %s' % (safe_repr(a), safe_repr(b)) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1235 | self.fail(self._formatMessage(msg, standardMsg)) |
| 1236 | |
| 1237 | def assertGreaterEqual(self, a, b, msg=None): |
| 1238 | """Just like self.assertTrue(a >= b), but with a nicer default message.""" |
| 1239 | if not a >= b: |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 1240 | standardMsg = '%s not greater than or equal to %s' % (safe_repr(a), safe_repr(b)) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1241 | self.fail(self._formatMessage(msg, standardMsg)) |
| 1242 | |
| 1243 | def assertIsNone(self, obj, msg=None): |
| 1244 | """Same as self.assertTrue(obj is None), with a nicer default message.""" |
| 1245 | if obj is not None: |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 1246 | standardMsg = '%s is not None' % (safe_repr(obj),) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1247 | self.fail(self._formatMessage(msg, standardMsg)) |
| 1248 | |
| 1249 | def assertIsNotNone(self, obj, msg=None): |
| 1250 | """Included for symmetry with assertIsNone.""" |
| 1251 | if obj is None: |
| 1252 | standardMsg = 'unexpectedly None' |
| 1253 | self.fail(self._formatMessage(msg, standardMsg)) |
| 1254 | |
Benjamin Peterson | 6e8c757 | 2009-10-04 20:19:21 +0000 | [diff] [blame] | 1255 | def assertIsInstance(self, obj, cls, msg=None): |
| 1256 | """Same as self.assertTrue(isinstance(obj, cls)), with a nicer |
| 1257 | default message.""" |
| 1258 | if not isinstance(obj, cls): |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 1259 | standardMsg = '%s is not an instance of %r' % (safe_repr(obj), cls) |
Benjamin Peterson | 6e8c757 | 2009-10-04 20:19:21 +0000 | [diff] [blame] | 1260 | self.fail(self._formatMessage(msg, standardMsg)) |
| 1261 | |
| 1262 | def assertNotIsInstance(self, obj, cls, msg=None): |
| 1263 | """Included for symmetry with assertIsInstance.""" |
| 1264 | if isinstance(obj, cls): |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 1265 | standardMsg = '%s is an instance of %r' % (safe_repr(obj), cls) |
Benjamin Peterson | 6e8c757 | 2009-10-04 20:19:21 +0000 | [diff] [blame] | 1266 | self.fail(self._formatMessage(msg, standardMsg)) |
| 1267 | |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 1268 | def assertRaisesRegex(self, expected_exception, expected_regex, |
Serhiy Storchaka | df573d6 | 2015-05-16 16:29:50 +0300 | [diff] [blame] | 1269 | *args, **kwargs): |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 1270 | """Asserts that the message in a raised exception matches a regex. |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1271 | |
| 1272 | Args: |
| 1273 | expected_exception: Exception class expected to be raised. |
Serhiy Storchaka | 0b5e61d | 2017-10-04 20:09:49 +0300 | [diff] [blame] | 1274 | expected_regex: Regex (re.Pattern object or string) expected |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1275 | to be found in error message. |
Serhiy Storchaka | df573d6 | 2015-05-16 16:29:50 +0300 | [diff] [blame] | 1276 | args: Function to be called and extra positional args. |
| 1277 | kwargs: Extra kwargs. |
Ezio Melotti | b4dc250 | 2011-05-06 15:01:41 +0300 | [diff] [blame] | 1278 | msg: Optional message used in case of failure. Can only be used |
| 1279 | when assertRaisesRegex is used as a context manager. |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1280 | """ |
Serhiy Storchaka | df573d6 | 2015-05-16 16:29:50 +0300 | [diff] [blame] | 1281 | context = _AssertRaisesContext(expected_exception, self, expected_regex) |
| 1282 | return context.handle('assertRaisesRegex', args, kwargs) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1283 | |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 1284 | def assertWarnsRegex(self, expected_warning, expected_regex, |
Serhiy Storchaka | df573d6 | 2015-05-16 16:29:50 +0300 | [diff] [blame] | 1285 | *args, **kwargs): |
Antoine Pitrou | 4bc12ef | 2010-09-06 19:25:46 +0000 | [diff] [blame] | 1286 | """Asserts that the message in a triggered warning matches a regexp. |
| 1287 | Basic functioning is similar to assertWarns() with the addition |
| 1288 | that only warnings whose messages also match the regular expression |
| 1289 | are considered successful matches. |
| 1290 | |
| 1291 | Args: |
| 1292 | expected_warning: Warning class expected to be triggered. |
Serhiy Storchaka | 0b5e61d | 2017-10-04 20:09:49 +0300 | [diff] [blame] | 1293 | expected_regex: Regex (re.Pattern object or string) expected |
Antoine Pitrou | 4bc12ef | 2010-09-06 19:25:46 +0000 | [diff] [blame] | 1294 | to be found in error message. |
Serhiy Storchaka | df573d6 | 2015-05-16 16:29:50 +0300 | [diff] [blame] | 1295 | args: Function to be called and extra positional args. |
| 1296 | kwargs: Extra kwargs. |
Ezio Melotti | b4dc250 | 2011-05-06 15:01:41 +0300 | [diff] [blame] | 1297 | msg: Optional message used in case of failure. Can only be used |
| 1298 | when assertWarnsRegex is used as a context manager. |
Antoine Pitrou | 4bc12ef | 2010-09-06 19:25:46 +0000 | [diff] [blame] | 1299 | """ |
Serhiy Storchaka | df573d6 | 2015-05-16 16:29:50 +0300 | [diff] [blame] | 1300 | context = _AssertWarnsContext(expected_warning, self, expected_regex) |
| 1301 | return context.handle('assertWarnsRegex', args, kwargs) |
Antoine Pitrou | 4bc12ef | 2010-09-06 19:25:46 +0000 | [diff] [blame] | 1302 | |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 1303 | def assertRegex(self, text, expected_regex, msg=None): |
Michael Foord | e3ef5f1 | 2010-05-08 16:46:14 +0000 | [diff] [blame] | 1304 | """Fail the test unless the text matches the regular expression.""" |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 1305 | if isinstance(expected_regex, (str, bytes)): |
Gregory P. Smith | ed16bf4 | 2010-12-16 19:23:05 +0000 | [diff] [blame] | 1306 | assert expected_regex, "expected_regex must not be empty." |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 1307 | expected_regex = re.compile(expected_regex) |
| 1308 | if not expected_regex.search(text): |
Robert Collins | be6caca | 2015-08-20 11:13:09 +1200 | [diff] [blame] | 1309 | standardMsg = "Regex didn't match: %r not found in %r" % ( |
| 1310 | expected_regex.pattern, text) |
| 1311 | # _formatMessage ensures the longMessage option is respected |
| 1312 | msg = self._formatMessage(msg, standardMsg) |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1313 | raise self.failureException(msg) |
| 1314 | |
Ezio Melotti | 8f77630 | 2010-12-10 02:32:05 +0000 | [diff] [blame] | 1315 | def assertNotRegex(self, text, unexpected_regex, msg=None): |
Michael Foord | e3ef5f1 | 2010-05-08 16:46:14 +0000 | [diff] [blame] | 1316 | """Fail the test if the text matches the regular expression.""" |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 1317 | if isinstance(unexpected_regex, (str, bytes)): |
| 1318 | unexpected_regex = re.compile(unexpected_regex) |
| 1319 | match = unexpected_regex.search(text) |
Benjamin Peterson | b48af54 | 2010-04-11 20:43:16 +0000 | [diff] [blame] | 1320 | if match: |
Robert Collins | be6caca | 2015-08-20 11:13:09 +1200 | [diff] [blame] | 1321 | standardMsg = 'Regex matched: %r matches %r in %r' % ( |
| 1322 | text[match.start() : match.end()], |
| 1323 | unexpected_regex.pattern, |
| 1324 | text) |
| 1325 | # _formatMessage ensures the longMessage option is respected |
| 1326 | msg = self._formatMessage(msg, standardMsg) |
Benjamin Peterson | b48af54 | 2010-04-11 20:43:16 +0000 | [diff] [blame] | 1327 | raise self.failureException(msg) |
| 1328 | |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1329 | |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 1330 | def _deprecate(original_func): |
| 1331 | def deprecated_func(*args, **kwargs): |
| 1332 | warnings.warn( |
| 1333 | 'Please use {0} instead.'.format(original_func.__name__), |
| 1334 | DeprecationWarning, 2) |
| 1335 | return original_func(*args, **kwargs) |
| 1336 | return deprecated_func |
| 1337 | |
Ezio Melotti | 361467e | 2011-04-03 17:37:58 +0300 | [diff] [blame] | 1338 | # see #9424 |
Ezio Melotti | 0f53501 | 2011-04-03 18:02:13 +0300 | [diff] [blame] | 1339 | failUnlessEqual = assertEquals = _deprecate(assertEqual) |
| 1340 | failIfEqual = assertNotEquals = _deprecate(assertNotEqual) |
| 1341 | failUnlessAlmostEqual = assertAlmostEquals = _deprecate(assertAlmostEqual) |
| 1342 | failIfAlmostEqual = assertNotAlmostEquals = _deprecate(assertNotAlmostEqual) |
| 1343 | failUnless = assert_ = _deprecate(assertTrue) |
| 1344 | failUnlessRaises = _deprecate(assertRaises) |
| 1345 | failIf = _deprecate(assertFalse) |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 1346 | assertRaisesRegexp = _deprecate(assertRaisesRegex) |
| 1347 | assertRegexpMatches = _deprecate(assertRegex) |
Robert Collins | be6caca | 2015-08-20 11:13:09 +1200 | [diff] [blame] | 1348 | assertNotRegexpMatches = _deprecate(assertNotRegex) |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 1349 | |
| 1350 | |
| 1351 | |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1352 | class FunctionTestCase(TestCase): |
| 1353 | """A test case that wraps a test function. |
| 1354 | |
| 1355 | This is useful for slipping pre-existing test functions into the |
| 1356 | unittest framework. Optionally, set-up and tidy-up functions can be |
| 1357 | supplied. As with TestCase, the tidy-up ('tearDown') function will |
| 1358 | always be called if the set-up ('setUp') function ran successfully. |
| 1359 | """ |
| 1360 | |
| 1361 | def __init__(self, testFunc, setUp=None, tearDown=None, description=None): |
| 1362 | super(FunctionTestCase, self).__init__() |
| 1363 | self._setUpFunc = setUp |
| 1364 | self._tearDownFunc = tearDown |
| 1365 | self._testFunc = testFunc |
| 1366 | self._description = description |
| 1367 | |
| 1368 | def setUp(self): |
| 1369 | if self._setUpFunc is not None: |
| 1370 | self._setUpFunc() |
| 1371 | |
| 1372 | def tearDown(self): |
| 1373 | if self._tearDownFunc is not None: |
| 1374 | self._tearDownFunc() |
| 1375 | |
| 1376 | def runTest(self): |
| 1377 | self._testFunc() |
| 1378 | |
| 1379 | def id(self): |
| 1380 | return self._testFunc.__name__ |
| 1381 | |
| 1382 | def __eq__(self, other): |
| 1383 | if not isinstance(other, self.__class__): |
| 1384 | return NotImplemented |
| 1385 | |
| 1386 | return self._setUpFunc == other._setUpFunc and \ |
| 1387 | self._tearDownFunc == other._tearDownFunc and \ |
| 1388 | self._testFunc == other._testFunc and \ |
| 1389 | self._description == other._description |
| 1390 | |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1391 | def __hash__(self): |
| 1392 | return hash((type(self), self._setUpFunc, self._tearDownFunc, |
| 1393 | self._testFunc, self._description)) |
| 1394 | |
| 1395 | def __str__(self): |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 1396 | return "%s (%s)" % (strclass(self.__class__), |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1397 | self._testFunc.__name__) |
| 1398 | |
| 1399 | def __repr__(self): |
Benjamin Peterson | 847a411 | 2010-03-14 15:04:17 +0000 | [diff] [blame] | 1400 | return "<%s tec=%s>" % (strclass(self.__class__), |
Benjamin Peterson | bed7d04 | 2009-07-19 21:01:52 +0000 | [diff] [blame] | 1401 | self._testFunc) |
| 1402 | |
| 1403 | def shortDescription(self): |
| 1404 | if self._description is not None: |
| 1405 | return self._description |
| 1406 | doc = self._testFunc.__doc__ |
| 1407 | return doc and doc.split("\n")[0].strip() or None |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 1408 | |
| 1409 | |
| 1410 | class _SubTest(TestCase): |
| 1411 | |
| 1412 | def __init__(self, test_case, message, params): |
| 1413 | super().__init__() |
| 1414 | self._message = message |
| 1415 | self.test_case = test_case |
| 1416 | self.params = params |
| 1417 | self.failureException = test_case.failureException |
| 1418 | |
| 1419 | def runTest(self): |
| 1420 | raise NotImplementedError("subtests cannot be run directly") |
| 1421 | |
| 1422 | def _subDescription(self): |
| 1423 | parts = [] |
Berker Peksag | 16ea19f | 2016-09-21 19:34:15 +0300 | [diff] [blame] | 1424 | if self._message is not _subtest_msg_sentinel: |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 1425 | parts.append("[{}]".format(self._message)) |
| 1426 | if self.params: |
| 1427 | params_desc = ', '.join( |
| 1428 | "{}={!r}".format(k, v) |
Serhiy Storchaka | 48fbe52 | 2017-06-23 21:47:39 +0300 | [diff] [blame] | 1429 | for (k, v) in self.params.items()) |
Antoine Pitrou | c9b3ef2 | 2013-03-20 20:16:47 +0100 | [diff] [blame] | 1430 | parts.append("({})".format(params_desc)) |
| 1431 | return " ".join(parts) or '(<subtest>)' |
| 1432 | |
| 1433 | def id(self): |
| 1434 | return "{} {}".format(self.test_case.id(), self._subDescription()) |
| 1435 | |
| 1436 | def shortDescription(self): |
| 1437 | """Returns a one-line description of the subtest, or None if no |
| 1438 | description has been provided. |
| 1439 | """ |
| 1440 | return self.test_case.shortDescription() |
| 1441 | |
| 1442 | def __str__(self): |
| 1443 | return "{} {}".format(self.test_case, self._subDescription()) |