Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 1 | """Unit tests for contextlib.py, and other context managers.""" |
| 2 | |
Raymond Hettinger | 088cbf2 | 2013-10-10 00:46:57 -0700 | [diff] [blame] | 3 | import io |
R. David Murray | 378c0cf | 2010-02-24 01:46:21 +0000 | [diff] [blame] | 4 | import sys |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 5 | import tempfile |
| 6 | import unittest |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 7 | from contextlib import * # Tests __all__ |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 8 | from test import support |
Victor Stinner | 45df820 | 2010-04-28 22:31:17 +0000 | [diff] [blame] | 9 | try: |
| 10 | import threading |
| 11 | except ImportError: |
| 12 | threading = None |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 13 | |
Florent Xicluna | 41fe615 | 2010-04-02 18:52:12 +0000 | [diff] [blame] | 14 | |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 15 | class ContextManagerTestCase(unittest.TestCase): |
| 16 | |
| 17 | def test_contextmanager_plain(self): |
| 18 | state = [] |
| 19 | @contextmanager |
| 20 | def woohoo(): |
| 21 | state.append(1) |
| 22 | yield 42 |
| 23 | state.append(999) |
| 24 | with woohoo() as x: |
| 25 | self.assertEqual(state, [1]) |
| 26 | self.assertEqual(x, 42) |
| 27 | state.append(x) |
| 28 | self.assertEqual(state, [1, 42, 999]) |
| 29 | |
| 30 | def test_contextmanager_finally(self): |
| 31 | state = [] |
| 32 | @contextmanager |
| 33 | def woohoo(): |
| 34 | state.append(1) |
| 35 | try: |
| 36 | yield 42 |
| 37 | finally: |
| 38 | state.append(999) |
Florent Xicluna | 41fe615 | 2010-04-02 18:52:12 +0000 | [diff] [blame] | 39 | with self.assertRaises(ZeroDivisionError): |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 40 | with woohoo() as x: |
| 41 | self.assertEqual(state, [1]) |
| 42 | self.assertEqual(x, 42) |
| 43 | state.append(x) |
| 44 | raise ZeroDivisionError() |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 45 | self.assertEqual(state, [1, 42, 999]) |
| 46 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 47 | def test_contextmanager_no_reraise(self): |
| 48 | @contextmanager |
| 49 | def whee(): |
| 50 | yield |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 51 | ctx = whee() |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 52 | ctx.__enter__() |
| 53 | # Calling __exit__ should not result in an exception |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 54 | self.assertFalse(ctx.__exit__(TypeError, TypeError("foo"), None)) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 55 | |
| 56 | def test_contextmanager_trap_yield_after_throw(self): |
| 57 | @contextmanager |
| 58 | def whoo(): |
| 59 | try: |
| 60 | yield |
| 61 | except: |
| 62 | yield |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 63 | ctx = whoo() |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 64 | ctx.__enter__() |
| 65 | self.assertRaises( |
| 66 | RuntimeError, ctx.__exit__, TypeError, TypeError("foo"), None |
| 67 | ) |
| 68 | |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 69 | def test_contextmanager_except(self): |
| 70 | state = [] |
| 71 | @contextmanager |
| 72 | def woohoo(): |
| 73 | state.append(1) |
| 74 | try: |
| 75 | yield 42 |
Guido van Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 76 | except ZeroDivisionError as e: |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 77 | state.append(e.args[0]) |
| 78 | self.assertEqual(state, [1, 42, 999]) |
| 79 | with woohoo() as x: |
| 80 | self.assertEqual(state, [1]) |
| 81 | self.assertEqual(x, 42) |
| 82 | state.append(x) |
| 83 | raise ZeroDivisionError(999) |
| 84 | self.assertEqual(state, [1, 42, 999]) |
| 85 | |
Yury Selivanov | 8170e8c | 2015-05-09 11:44:30 -0400 | [diff] [blame] | 86 | def test_contextmanager_except_stopiter(self): |
| 87 | stop_exc = StopIteration('spam') |
| 88 | @contextmanager |
| 89 | def woohoo(): |
| 90 | yield |
| 91 | try: |
Yury Selivanov | 6833339 | 2015-05-22 11:16:47 -0400 | [diff] [blame] | 92 | with self.assertWarnsRegex(PendingDeprecationWarning, |
| 93 | "StopIteration"): |
| 94 | with woohoo(): |
| 95 | raise stop_exc |
Yury Selivanov | 8170e8c | 2015-05-09 11:44:30 -0400 | [diff] [blame] | 96 | except Exception as ex: |
| 97 | self.assertIs(ex, stop_exc) |
| 98 | else: |
| 99 | self.fail('StopIteration was suppressed') |
| 100 | |
| 101 | def test_contextmanager_except_pep479(self): |
| 102 | code = """\ |
| 103 | from __future__ import generator_stop |
| 104 | from contextlib import contextmanager |
| 105 | @contextmanager |
| 106 | def woohoo(): |
| 107 | yield |
| 108 | """ |
| 109 | locals = {} |
| 110 | exec(code, locals, locals) |
| 111 | woohoo = locals['woohoo'] |
| 112 | |
| 113 | stop_exc = StopIteration('spam') |
| 114 | try: |
| 115 | with woohoo(): |
| 116 | raise stop_exc |
| 117 | except Exception as ex: |
| 118 | self.assertIs(ex, stop_exc) |
| 119 | else: |
| 120 | self.fail('StopIteration was suppressed') |
| 121 | |
R. David Murray | 378c0cf | 2010-02-24 01:46:21 +0000 | [diff] [blame] | 122 | def _create_contextmanager_attribs(self): |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 123 | def attribs(**kw): |
| 124 | def decorate(func): |
| 125 | for k,v in kw.items(): |
| 126 | setattr(func,k,v) |
| 127 | return func |
| 128 | return decorate |
| 129 | @contextmanager |
| 130 | @attribs(foo='bar') |
| 131 | def baz(spam): |
| 132 | """Whee!""" |
R. David Murray | 378c0cf | 2010-02-24 01:46:21 +0000 | [diff] [blame] | 133 | return baz |
| 134 | |
| 135 | def test_contextmanager_attribs(self): |
| 136 | baz = self._create_contextmanager_attribs() |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 137 | self.assertEqual(baz.__name__,'baz') |
| 138 | self.assertEqual(baz.foo, 'bar') |
R. David Murray | 378c0cf | 2010-02-24 01:46:21 +0000 | [diff] [blame] | 139 | |
Nick Coghlan | 561eb5c | 2013-10-26 22:20:43 +1000 | [diff] [blame] | 140 | @support.requires_docstrings |
R. David Murray | 378c0cf | 2010-02-24 01:46:21 +0000 | [diff] [blame] | 141 | def test_contextmanager_doc_attrib(self): |
| 142 | baz = self._create_contextmanager_attribs() |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 143 | self.assertEqual(baz.__doc__, "Whee!") |
| 144 | |
Nick Coghlan | 561eb5c | 2013-10-26 22:20:43 +1000 | [diff] [blame] | 145 | @support.requires_docstrings |
| 146 | def test_instance_docstring_given_cm_docstring(self): |
| 147 | baz = self._create_contextmanager_attribs()(None) |
| 148 | self.assertEqual(baz.__doc__, "Whee!") |
| 149 | |
Serhiy Storchaka | 101ff35 | 2015-06-28 17:06:07 +0300 | [diff] [blame] | 150 | def test_keywords(self): |
| 151 | # Ensure no keyword arguments are inhibited |
| 152 | @contextmanager |
| 153 | def woohoo(self, func, args, kwds): |
| 154 | yield (self, func, args, kwds) |
| 155 | with woohoo(self=11, func=22, args=33, kwds=44) as target: |
| 156 | self.assertEqual(target, (11, 22, 33, 44)) |
| 157 | |
Nick Coghlan | 561eb5c | 2013-10-26 22:20:43 +1000 | [diff] [blame] | 158 | |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 159 | class ClosingTestCase(unittest.TestCase): |
| 160 | |
Nick Coghlan | 561eb5c | 2013-10-26 22:20:43 +1000 | [diff] [blame] | 161 | @support.requires_docstrings |
Nick Coghlan | 059def5 | 2013-10-26 18:08:15 +1000 | [diff] [blame] | 162 | def test_instance_docs(self): |
| 163 | # Issue 19330: ensure context manager instances have good docstrings |
| 164 | cm_docstring = closing.__doc__ |
| 165 | obj = closing(None) |
| 166 | self.assertEqual(obj.__doc__, cm_docstring) |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 167 | |
| 168 | def test_closing(self): |
| 169 | state = [] |
| 170 | class C: |
| 171 | def close(self): |
| 172 | state.append(1) |
| 173 | x = C() |
| 174 | self.assertEqual(state, []) |
| 175 | with closing(x) as y: |
| 176 | self.assertEqual(x, y) |
| 177 | self.assertEqual(state, [1]) |
| 178 | |
| 179 | def test_closing_error(self): |
| 180 | state = [] |
| 181 | class C: |
| 182 | def close(self): |
| 183 | state.append(1) |
| 184 | x = C() |
| 185 | self.assertEqual(state, []) |
Florent Xicluna | 41fe615 | 2010-04-02 18:52:12 +0000 | [diff] [blame] | 186 | with self.assertRaises(ZeroDivisionError): |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 187 | with closing(x) as y: |
| 188 | self.assertEqual(x, y) |
Florent Xicluna | 41fe615 | 2010-04-02 18:52:12 +0000 | [diff] [blame] | 189 | 1 / 0 |
| 190 | self.assertEqual(state, [1]) |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 191 | |
| 192 | class FileContextTestCase(unittest.TestCase): |
| 193 | |
| 194 | def testWithOpen(self): |
| 195 | tfn = tempfile.mktemp() |
| 196 | try: |
| 197 | f = None |
| 198 | with open(tfn, "w") as f: |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 199 | self.assertFalse(f.closed) |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 200 | f.write("Booh\n") |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 201 | self.assertTrue(f.closed) |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 202 | f = None |
Florent Xicluna | 41fe615 | 2010-04-02 18:52:12 +0000 | [diff] [blame] | 203 | with self.assertRaises(ZeroDivisionError): |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 204 | with open(tfn, "r") as f: |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 205 | self.assertFalse(f.closed) |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 206 | self.assertEqual(f.read(), "Booh\n") |
Florent Xicluna | 41fe615 | 2010-04-02 18:52:12 +0000 | [diff] [blame] | 207 | 1 / 0 |
| 208 | self.assertTrue(f.closed) |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 209 | finally: |
Florent Xicluna | 41fe615 | 2010-04-02 18:52:12 +0000 | [diff] [blame] | 210 | support.unlink(tfn) |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 211 | |
Victor Stinner | 45df820 | 2010-04-28 22:31:17 +0000 | [diff] [blame] | 212 | @unittest.skipUnless(threading, 'Threading required for this test.') |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 213 | class LockContextTestCase(unittest.TestCase): |
| 214 | |
| 215 | def boilerPlate(self, lock, locked): |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 216 | self.assertFalse(locked()) |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 217 | with lock: |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 218 | self.assertTrue(locked()) |
| 219 | self.assertFalse(locked()) |
Florent Xicluna | 41fe615 | 2010-04-02 18:52:12 +0000 | [diff] [blame] | 220 | with self.assertRaises(ZeroDivisionError): |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 221 | with lock: |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 222 | self.assertTrue(locked()) |
Florent Xicluna | 41fe615 | 2010-04-02 18:52:12 +0000 | [diff] [blame] | 223 | 1 / 0 |
| 224 | self.assertFalse(locked()) |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 225 | |
| 226 | def testWithLock(self): |
| 227 | lock = threading.Lock() |
| 228 | self.boilerPlate(lock, lock.locked) |
| 229 | |
| 230 | def testWithRLock(self): |
| 231 | lock = threading.RLock() |
| 232 | self.boilerPlate(lock, lock._is_owned) |
| 233 | |
| 234 | def testWithCondition(self): |
| 235 | lock = threading.Condition() |
| 236 | def locked(): |
| 237 | return lock._is_owned() |
| 238 | self.boilerPlate(lock, locked) |
| 239 | |
| 240 | def testWithSemaphore(self): |
| 241 | lock = threading.Semaphore() |
| 242 | def locked(): |
| 243 | if lock.acquire(False): |
| 244 | lock.release() |
| 245 | return False |
| 246 | else: |
| 247 | return True |
| 248 | self.boilerPlate(lock, locked) |
| 249 | |
| 250 | def testWithBoundedSemaphore(self): |
| 251 | lock = threading.BoundedSemaphore() |
| 252 | def locked(): |
| 253 | if lock.acquire(False): |
| 254 | lock.release() |
| 255 | return False |
| 256 | else: |
| 257 | return True |
| 258 | self.boilerPlate(lock, locked) |
| 259 | |
Michael Foord | b3a8984 | 2010-06-30 12:17:50 +0000 | [diff] [blame] | 260 | |
| 261 | class mycontext(ContextDecorator): |
Nick Coghlan | 059def5 | 2013-10-26 18:08:15 +1000 | [diff] [blame] | 262 | """Example decoration-compatible context manager for testing""" |
Michael Foord | b3a8984 | 2010-06-30 12:17:50 +0000 | [diff] [blame] | 263 | started = False |
| 264 | exc = None |
| 265 | catch = False |
| 266 | |
| 267 | def __enter__(self): |
| 268 | self.started = True |
| 269 | return self |
| 270 | |
| 271 | def __exit__(self, *exc): |
| 272 | self.exc = exc |
| 273 | return self.catch |
| 274 | |
| 275 | |
| 276 | class TestContextDecorator(unittest.TestCase): |
| 277 | |
Nick Coghlan | 561eb5c | 2013-10-26 22:20:43 +1000 | [diff] [blame] | 278 | @support.requires_docstrings |
Nick Coghlan | 059def5 | 2013-10-26 18:08:15 +1000 | [diff] [blame] | 279 | def test_instance_docs(self): |
| 280 | # Issue 19330: ensure context manager instances have good docstrings |
| 281 | cm_docstring = mycontext.__doc__ |
| 282 | obj = mycontext() |
| 283 | self.assertEqual(obj.__doc__, cm_docstring) |
| 284 | |
Michael Foord | b3a8984 | 2010-06-30 12:17:50 +0000 | [diff] [blame] | 285 | def test_contextdecorator(self): |
| 286 | context = mycontext() |
| 287 | with context as result: |
| 288 | self.assertIs(result, context) |
| 289 | self.assertTrue(context.started) |
| 290 | |
| 291 | self.assertEqual(context.exc, (None, None, None)) |
| 292 | |
| 293 | |
| 294 | def test_contextdecorator_with_exception(self): |
| 295 | context = mycontext() |
| 296 | |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 297 | with self.assertRaisesRegex(NameError, 'foo'): |
Michael Foord | b3a8984 | 2010-06-30 12:17:50 +0000 | [diff] [blame] | 298 | with context: |
| 299 | raise NameError('foo') |
| 300 | self.assertIsNotNone(context.exc) |
| 301 | self.assertIs(context.exc[0], NameError) |
| 302 | |
| 303 | context = mycontext() |
| 304 | context.catch = True |
| 305 | with context: |
| 306 | raise NameError('foo') |
| 307 | self.assertIsNotNone(context.exc) |
| 308 | self.assertIs(context.exc[0], NameError) |
| 309 | |
| 310 | |
| 311 | def test_decorator(self): |
| 312 | context = mycontext() |
| 313 | |
| 314 | @context |
| 315 | def test(): |
| 316 | self.assertIsNone(context.exc) |
| 317 | self.assertTrue(context.started) |
| 318 | test() |
| 319 | self.assertEqual(context.exc, (None, None, None)) |
| 320 | |
| 321 | |
| 322 | def test_decorator_with_exception(self): |
| 323 | context = mycontext() |
| 324 | |
| 325 | @context |
| 326 | def test(): |
| 327 | self.assertIsNone(context.exc) |
| 328 | self.assertTrue(context.started) |
| 329 | raise NameError('foo') |
| 330 | |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 331 | with self.assertRaisesRegex(NameError, 'foo'): |
Michael Foord | b3a8984 | 2010-06-30 12:17:50 +0000 | [diff] [blame] | 332 | test() |
| 333 | self.assertIsNotNone(context.exc) |
| 334 | self.assertIs(context.exc[0], NameError) |
| 335 | |
| 336 | |
| 337 | def test_decorating_method(self): |
| 338 | context = mycontext() |
| 339 | |
| 340 | class Test(object): |
| 341 | |
| 342 | @context |
| 343 | def method(self, a, b, c=None): |
| 344 | self.a = a |
| 345 | self.b = b |
| 346 | self.c = c |
| 347 | |
| 348 | # these tests are for argument passing when used as a decorator |
| 349 | test = Test() |
| 350 | test.method(1, 2) |
| 351 | self.assertEqual(test.a, 1) |
| 352 | self.assertEqual(test.b, 2) |
| 353 | self.assertEqual(test.c, None) |
| 354 | |
| 355 | test = Test() |
| 356 | test.method('a', 'b', 'c') |
| 357 | self.assertEqual(test.a, 'a') |
| 358 | self.assertEqual(test.b, 'b') |
| 359 | self.assertEqual(test.c, 'c') |
| 360 | |
| 361 | test = Test() |
| 362 | test.method(a=1, b=2) |
| 363 | self.assertEqual(test.a, 1) |
| 364 | self.assertEqual(test.b, 2) |
| 365 | |
| 366 | |
| 367 | def test_typo_enter(self): |
| 368 | class mycontext(ContextDecorator): |
| 369 | def __unter__(self): |
| 370 | pass |
| 371 | def __exit__(self, *exc): |
| 372 | pass |
| 373 | |
| 374 | with self.assertRaises(AttributeError): |
| 375 | with mycontext(): |
| 376 | pass |
| 377 | |
| 378 | |
| 379 | def test_typo_exit(self): |
| 380 | class mycontext(ContextDecorator): |
| 381 | def __enter__(self): |
| 382 | pass |
| 383 | def __uxit__(self, *exc): |
| 384 | pass |
| 385 | |
| 386 | with self.assertRaises(AttributeError): |
| 387 | with mycontext(): |
| 388 | pass |
| 389 | |
| 390 | |
| 391 | def test_contextdecorator_as_mixin(self): |
| 392 | class somecontext(object): |
| 393 | started = False |
| 394 | exc = None |
| 395 | |
| 396 | def __enter__(self): |
| 397 | self.started = True |
| 398 | return self |
| 399 | |
| 400 | def __exit__(self, *exc): |
| 401 | self.exc = exc |
| 402 | |
| 403 | class mycontext(somecontext, ContextDecorator): |
| 404 | pass |
| 405 | |
| 406 | context = mycontext() |
| 407 | @context |
| 408 | def test(): |
| 409 | self.assertIsNone(context.exc) |
| 410 | self.assertTrue(context.started) |
| 411 | test() |
| 412 | self.assertEqual(context.exc, (None, None, None)) |
| 413 | |
| 414 | |
| 415 | def test_contextmanager_as_decorator(self): |
Michael Foord | b3a8984 | 2010-06-30 12:17:50 +0000 | [diff] [blame] | 416 | @contextmanager |
| 417 | def woohoo(y): |
| 418 | state.append(y) |
| 419 | yield |
| 420 | state.append(999) |
| 421 | |
Nick Coghlan | 0ded3e3 | 2011-05-05 23:49:25 +1000 | [diff] [blame] | 422 | state = [] |
Michael Foord | b3a8984 | 2010-06-30 12:17:50 +0000 | [diff] [blame] | 423 | @woohoo(1) |
| 424 | def test(x): |
| 425 | self.assertEqual(state, [1]) |
| 426 | state.append(x) |
| 427 | test('something') |
| 428 | self.assertEqual(state, [1, 'something', 999]) |
| 429 | |
Nick Coghlan | 0ded3e3 | 2011-05-05 23:49:25 +1000 | [diff] [blame] | 430 | # Issue #11647: Ensure the decorated function is 'reusable' |
| 431 | state = [] |
| 432 | test('something else') |
| 433 | self.assertEqual(state, [1, 'something else', 999]) |
| 434 | |
Michael Foord | b3a8984 | 2010-06-30 12:17:50 +0000 | [diff] [blame] | 435 | |
Nick Coghlan | 3267a30 | 2012-05-21 22:54:43 +1000 | [diff] [blame] | 436 | class TestExitStack(unittest.TestCase): |
| 437 | |
Nick Coghlan | 561eb5c | 2013-10-26 22:20:43 +1000 | [diff] [blame] | 438 | @support.requires_docstrings |
Nick Coghlan | 059def5 | 2013-10-26 18:08:15 +1000 | [diff] [blame] | 439 | def test_instance_docs(self): |
| 440 | # Issue 19330: ensure context manager instances have good docstrings |
| 441 | cm_docstring = ExitStack.__doc__ |
| 442 | obj = ExitStack() |
| 443 | self.assertEqual(obj.__doc__, cm_docstring) |
| 444 | |
Nick Coghlan | 3267a30 | 2012-05-21 22:54:43 +1000 | [diff] [blame] | 445 | def test_no_resources(self): |
| 446 | with ExitStack(): |
| 447 | pass |
| 448 | |
| 449 | def test_callback(self): |
| 450 | expected = [ |
| 451 | ((), {}), |
| 452 | ((1,), {}), |
| 453 | ((1,2), {}), |
| 454 | ((), dict(example=1)), |
| 455 | ((1,), dict(example=1)), |
| 456 | ((1,2), dict(example=1)), |
| 457 | ] |
| 458 | result = [] |
| 459 | def _exit(*args, **kwds): |
| 460 | """Test metadata propagation""" |
| 461 | result.append((args, kwds)) |
| 462 | with ExitStack() as stack: |
| 463 | for args, kwds in reversed(expected): |
| 464 | if args and kwds: |
| 465 | f = stack.callback(_exit, *args, **kwds) |
| 466 | elif args: |
| 467 | f = stack.callback(_exit, *args) |
| 468 | elif kwds: |
| 469 | f = stack.callback(_exit, **kwds) |
| 470 | else: |
| 471 | f = stack.callback(_exit) |
| 472 | self.assertIs(f, _exit) |
| 473 | for wrapper in stack._exit_callbacks: |
| 474 | self.assertIs(wrapper.__wrapped__, _exit) |
| 475 | self.assertNotEqual(wrapper.__name__, _exit.__name__) |
| 476 | self.assertIsNone(wrapper.__doc__, _exit.__doc__) |
| 477 | self.assertEqual(result, expected) |
| 478 | |
| 479 | def test_push(self): |
| 480 | exc_raised = ZeroDivisionError |
| 481 | def _expect_exc(exc_type, exc, exc_tb): |
| 482 | self.assertIs(exc_type, exc_raised) |
| 483 | def _suppress_exc(*exc_details): |
| 484 | return True |
| 485 | def _expect_ok(exc_type, exc, exc_tb): |
| 486 | self.assertIsNone(exc_type) |
| 487 | self.assertIsNone(exc) |
| 488 | self.assertIsNone(exc_tb) |
| 489 | class ExitCM(object): |
| 490 | def __init__(self, check_exc): |
| 491 | self.check_exc = check_exc |
| 492 | def __enter__(self): |
| 493 | self.fail("Should not be called!") |
| 494 | def __exit__(self, *exc_details): |
| 495 | self.check_exc(*exc_details) |
| 496 | with ExitStack() as stack: |
| 497 | stack.push(_expect_ok) |
| 498 | self.assertIs(stack._exit_callbacks[-1], _expect_ok) |
| 499 | cm = ExitCM(_expect_ok) |
| 500 | stack.push(cm) |
| 501 | self.assertIs(stack._exit_callbacks[-1].__self__, cm) |
| 502 | stack.push(_suppress_exc) |
| 503 | self.assertIs(stack._exit_callbacks[-1], _suppress_exc) |
| 504 | cm = ExitCM(_expect_exc) |
| 505 | stack.push(cm) |
| 506 | self.assertIs(stack._exit_callbacks[-1].__self__, cm) |
| 507 | stack.push(_expect_exc) |
| 508 | self.assertIs(stack._exit_callbacks[-1], _expect_exc) |
| 509 | stack.push(_expect_exc) |
| 510 | self.assertIs(stack._exit_callbacks[-1], _expect_exc) |
| 511 | 1/0 |
| 512 | |
| 513 | def test_enter_context(self): |
| 514 | class TestCM(object): |
| 515 | def __enter__(self): |
| 516 | result.append(1) |
| 517 | def __exit__(self, *exc_details): |
| 518 | result.append(3) |
| 519 | |
| 520 | result = [] |
| 521 | cm = TestCM() |
| 522 | with ExitStack() as stack: |
| 523 | @stack.callback # Registered first => cleaned up last |
| 524 | def _exit(): |
| 525 | result.append(4) |
| 526 | self.assertIsNotNone(_exit) |
| 527 | stack.enter_context(cm) |
| 528 | self.assertIs(stack._exit_callbacks[-1].__self__, cm) |
| 529 | result.append(2) |
| 530 | self.assertEqual(result, [1, 2, 3, 4]) |
| 531 | |
| 532 | def test_close(self): |
| 533 | result = [] |
| 534 | with ExitStack() as stack: |
| 535 | @stack.callback |
| 536 | def _exit(): |
| 537 | result.append(1) |
| 538 | self.assertIsNotNone(_exit) |
| 539 | stack.close() |
| 540 | result.append(2) |
| 541 | self.assertEqual(result, [1, 2]) |
| 542 | |
| 543 | def test_pop_all(self): |
| 544 | result = [] |
| 545 | with ExitStack() as stack: |
| 546 | @stack.callback |
| 547 | def _exit(): |
| 548 | result.append(3) |
| 549 | self.assertIsNotNone(_exit) |
| 550 | new_stack = stack.pop_all() |
| 551 | result.append(1) |
| 552 | result.append(2) |
| 553 | new_stack.close() |
| 554 | self.assertEqual(result, [1, 2, 3]) |
| 555 | |
Nick Coghlan | c73e8c2 | 2012-05-31 23:49:26 +1000 | [diff] [blame] | 556 | def test_exit_raise(self): |
| 557 | with self.assertRaises(ZeroDivisionError): |
| 558 | with ExitStack() as stack: |
| 559 | stack.push(lambda *exc: False) |
| 560 | 1/0 |
| 561 | |
| 562 | def test_exit_suppress(self): |
| 563 | with ExitStack() as stack: |
| 564 | stack.push(lambda *exc: True) |
| 565 | 1/0 |
| 566 | |
| 567 | def test_exit_exception_chaining_reference(self): |
| 568 | # Sanity check to make sure that ExitStack chaining matches |
| 569 | # actual nested with statements |
| 570 | class RaiseExc: |
| 571 | def __init__(self, exc): |
| 572 | self.exc = exc |
| 573 | def __enter__(self): |
| 574 | return self |
| 575 | def __exit__(self, *exc_details): |
| 576 | raise self.exc |
| 577 | |
Nick Coghlan | 77452fc | 2012-06-01 22:48:32 +1000 | [diff] [blame] | 578 | class RaiseExcWithContext: |
| 579 | def __init__(self, outer, inner): |
| 580 | self.outer = outer |
| 581 | self.inner = inner |
| 582 | def __enter__(self): |
| 583 | return self |
| 584 | def __exit__(self, *exc_details): |
| 585 | try: |
| 586 | raise self.inner |
| 587 | except: |
| 588 | raise self.outer |
| 589 | |
Nick Coghlan | c73e8c2 | 2012-05-31 23:49:26 +1000 | [diff] [blame] | 590 | class SuppressExc: |
| 591 | def __enter__(self): |
| 592 | return self |
| 593 | def __exit__(self, *exc_details): |
| 594 | type(self).saved_details = exc_details |
| 595 | return True |
| 596 | |
| 597 | try: |
| 598 | with RaiseExc(IndexError): |
Nick Coghlan | 77452fc | 2012-06-01 22:48:32 +1000 | [diff] [blame] | 599 | with RaiseExcWithContext(KeyError, AttributeError): |
| 600 | with SuppressExc(): |
| 601 | with RaiseExc(ValueError): |
| 602 | 1 / 0 |
Nick Coghlan | c73e8c2 | 2012-05-31 23:49:26 +1000 | [diff] [blame] | 603 | except IndexError as exc: |
| 604 | self.assertIsInstance(exc.__context__, KeyError) |
| 605 | self.assertIsInstance(exc.__context__.__context__, AttributeError) |
| 606 | # Inner exceptions were suppressed |
| 607 | self.assertIsNone(exc.__context__.__context__.__context__) |
| 608 | else: |
| 609 | self.fail("Expected IndexError, but no exception was raised") |
| 610 | # Check the inner exceptions |
| 611 | inner_exc = SuppressExc.saved_details[1] |
| 612 | self.assertIsInstance(inner_exc, ValueError) |
| 613 | self.assertIsInstance(inner_exc.__context__, ZeroDivisionError) |
| 614 | |
| 615 | def test_exit_exception_chaining(self): |
| 616 | # Ensure exception chaining matches the reference behaviour |
| 617 | def raise_exc(exc): |
| 618 | raise exc |
| 619 | |
| 620 | saved_details = None |
| 621 | def suppress_exc(*exc_details): |
| 622 | nonlocal saved_details |
| 623 | saved_details = exc_details |
| 624 | return True |
| 625 | |
| 626 | try: |
| 627 | with ExitStack() as stack: |
| 628 | stack.callback(raise_exc, IndexError) |
| 629 | stack.callback(raise_exc, KeyError) |
| 630 | stack.callback(raise_exc, AttributeError) |
| 631 | stack.push(suppress_exc) |
| 632 | stack.callback(raise_exc, ValueError) |
| 633 | 1 / 0 |
| 634 | except IndexError as exc: |
| 635 | self.assertIsInstance(exc.__context__, KeyError) |
| 636 | self.assertIsInstance(exc.__context__.__context__, AttributeError) |
Nick Coghlan | 77452fc | 2012-06-01 22:48:32 +1000 | [diff] [blame] | 637 | # Inner exceptions were suppressed |
| 638 | self.assertIsNone(exc.__context__.__context__.__context__) |
Nick Coghlan | c73e8c2 | 2012-05-31 23:49:26 +1000 | [diff] [blame] | 639 | else: |
| 640 | self.fail("Expected IndexError, but no exception was raised") |
| 641 | # Check the inner exceptions |
| 642 | inner_exc = saved_details[1] |
| 643 | self.assertIsInstance(inner_exc, ValueError) |
| 644 | self.assertIsInstance(inner_exc.__context__, ZeroDivisionError) |
| 645 | |
Nick Coghlan | 1a33b2f | 2013-10-01 23:24:56 +1000 | [diff] [blame] | 646 | def test_exit_exception_non_suppressing(self): |
| 647 | # http://bugs.python.org/issue19092 |
| 648 | def raise_exc(exc): |
| 649 | raise exc |
| 650 | |
| 651 | def suppress_exc(*exc_details): |
| 652 | return True |
| 653 | |
| 654 | try: |
| 655 | with ExitStack() as stack: |
| 656 | stack.callback(lambda: None) |
| 657 | stack.callback(raise_exc, IndexError) |
| 658 | except Exception as exc: |
| 659 | self.assertIsInstance(exc, IndexError) |
| 660 | else: |
| 661 | self.fail("Expected IndexError, but no exception was raised") |
| 662 | |
| 663 | try: |
| 664 | with ExitStack() as stack: |
| 665 | stack.callback(raise_exc, KeyError) |
| 666 | stack.push(suppress_exc) |
| 667 | stack.callback(raise_exc, IndexError) |
| 668 | except Exception as exc: |
| 669 | self.assertIsInstance(exc, KeyError) |
| 670 | else: |
| 671 | self.fail("Expected KeyError, but no exception was raised") |
| 672 | |
Nick Coghlan | 09761e7 | 2014-01-22 22:24:46 +1000 | [diff] [blame] | 673 | def test_exit_exception_with_correct_context(self): |
| 674 | # http://bugs.python.org/issue20317 |
| 675 | @contextmanager |
Nick Coghlan | add94c9 | 2014-01-24 23:05:45 +1000 | [diff] [blame] | 676 | def gets_the_context_right(exc): |
Nick Coghlan | 09761e7 | 2014-01-22 22:24:46 +1000 | [diff] [blame] | 677 | try: |
Nick Coghlan | add94c9 | 2014-01-24 23:05:45 +1000 | [diff] [blame] | 678 | yield |
Nick Coghlan | 09761e7 | 2014-01-22 22:24:46 +1000 | [diff] [blame] | 679 | finally: |
Nick Coghlan | add94c9 | 2014-01-24 23:05:45 +1000 | [diff] [blame] | 680 | raise exc |
| 681 | |
| 682 | exc1 = Exception(1) |
| 683 | exc2 = Exception(2) |
| 684 | exc3 = Exception(3) |
| 685 | exc4 = Exception(4) |
Nick Coghlan | 09761e7 | 2014-01-22 22:24:46 +1000 | [diff] [blame] | 686 | |
| 687 | # The contextmanager already fixes the context, so prior to the |
| 688 | # fix, ExitStack would try to fix it *again* and get into an |
| 689 | # infinite self-referential loop |
| 690 | try: |
| 691 | with ExitStack() as stack: |
Nick Coghlan | add94c9 | 2014-01-24 23:05:45 +1000 | [diff] [blame] | 692 | stack.enter_context(gets_the_context_right(exc4)) |
| 693 | stack.enter_context(gets_the_context_right(exc3)) |
| 694 | stack.enter_context(gets_the_context_right(exc2)) |
| 695 | raise exc1 |
| 696 | except Exception as exc: |
| 697 | self.assertIs(exc, exc4) |
| 698 | self.assertIs(exc.__context__, exc3) |
| 699 | self.assertIs(exc.__context__.__context__, exc2) |
| 700 | self.assertIs(exc.__context__.__context__.__context__, exc1) |
| 701 | self.assertIsNone( |
| 702 | exc.__context__.__context__.__context__.__context__) |
| 703 | |
| 704 | def test_exit_exception_with_existing_context(self): |
| 705 | # Addresses a lack of test coverage discovered after checking in a |
| 706 | # fix for issue 20317 that still contained debugging code. |
| 707 | def raise_nested(inner_exc, outer_exc): |
| 708 | try: |
| 709 | raise inner_exc |
| 710 | finally: |
| 711 | raise outer_exc |
| 712 | exc1 = Exception(1) |
| 713 | exc2 = Exception(2) |
| 714 | exc3 = Exception(3) |
| 715 | exc4 = Exception(4) |
| 716 | exc5 = Exception(5) |
| 717 | try: |
| 718 | with ExitStack() as stack: |
| 719 | stack.callback(raise_nested, exc4, exc5) |
| 720 | stack.callback(raise_nested, exc2, exc3) |
| 721 | raise exc1 |
| 722 | except Exception as exc: |
| 723 | self.assertIs(exc, exc5) |
| 724 | self.assertIs(exc.__context__, exc4) |
| 725 | self.assertIs(exc.__context__.__context__, exc3) |
| 726 | self.assertIs(exc.__context__.__context__.__context__, exc2) |
| 727 | self.assertIs( |
| 728 | exc.__context__.__context__.__context__.__context__, exc1) |
| 729 | self.assertIsNone( |
| 730 | exc.__context__.__context__.__context__.__context__.__context__) |
| 731 | |
Nick Coghlan | 09761e7 | 2014-01-22 22:24:46 +1000 | [diff] [blame] | 732 | |
| 733 | |
Nick Coghlan | 1a33b2f | 2013-10-01 23:24:56 +1000 | [diff] [blame] | 734 | def test_body_exception_suppress(self): |
| 735 | def suppress_exc(*exc_details): |
| 736 | return True |
| 737 | try: |
| 738 | with ExitStack() as stack: |
| 739 | stack.push(suppress_exc) |
| 740 | 1/0 |
| 741 | except IndexError as exc: |
| 742 | self.fail("Expected no exception, got IndexError") |
| 743 | |
Nick Coghlan | c73e8c2 | 2012-05-31 23:49:26 +1000 | [diff] [blame] | 744 | def test_exit_exception_chaining_suppress(self): |
| 745 | with ExitStack() as stack: |
| 746 | stack.push(lambda *exc: True) |
| 747 | stack.push(lambda *exc: 1/0) |
| 748 | stack.push(lambda *exc: {}[1]) |
| 749 | |
Nick Coghlan | a5bd2a1 | 2012-06-01 00:00:38 +1000 | [diff] [blame] | 750 | def test_excessive_nesting(self): |
| 751 | # The original implementation would die with RecursionError here |
| 752 | with ExitStack() as stack: |
| 753 | for i in range(10000): |
| 754 | stack.callback(int) |
| 755 | |
Nick Coghlan | 3267a30 | 2012-05-21 22:54:43 +1000 | [diff] [blame] | 756 | def test_instance_bypass(self): |
| 757 | class Example(object): pass |
| 758 | cm = Example() |
| 759 | cm.__exit__ = object() |
| 760 | stack = ExitStack() |
| 761 | self.assertRaises(AttributeError, stack.enter_context, cm) |
| 762 | stack.push(cm) |
| 763 | self.assertIs(stack._exit_callbacks[-1], cm) |
| 764 | |
Berker Peksag | bb44fe0 | 2014-11-28 23:28:06 +0200 | [diff] [blame] | 765 | |
| 766 | class TestRedirectStream: |
| 767 | |
| 768 | redirect_stream = None |
| 769 | orig_stream = None |
Raymond Hettinger | 088cbf2 | 2013-10-10 00:46:57 -0700 | [diff] [blame] | 770 | |
Nick Coghlan | 561eb5c | 2013-10-26 22:20:43 +1000 | [diff] [blame] | 771 | @support.requires_docstrings |
Nick Coghlan | 059def5 | 2013-10-26 18:08:15 +1000 | [diff] [blame] | 772 | def test_instance_docs(self): |
| 773 | # Issue 19330: ensure context manager instances have good docstrings |
Berker Peksag | bb44fe0 | 2014-11-28 23:28:06 +0200 | [diff] [blame] | 774 | cm_docstring = self.redirect_stream.__doc__ |
| 775 | obj = self.redirect_stream(None) |
Nick Coghlan | 059def5 | 2013-10-26 18:08:15 +1000 | [diff] [blame] | 776 | self.assertEqual(obj.__doc__, cm_docstring) |
| 777 | |
Nick Coghlan | 8e113b4 | 2013-11-03 17:00:51 +1000 | [diff] [blame] | 778 | def test_no_redirect_in_init(self): |
Berker Peksag | bb44fe0 | 2014-11-28 23:28:06 +0200 | [diff] [blame] | 779 | orig_stdout = getattr(sys, self.orig_stream) |
| 780 | self.redirect_stream(None) |
| 781 | self.assertIs(getattr(sys, self.orig_stream), orig_stdout) |
Nick Coghlan | 8e113b4 | 2013-11-03 17:00:51 +1000 | [diff] [blame] | 782 | |
Raymond Hettinger | 088cbf2 | 2013-10-10 00:46:57 -0700 | [diff] [blame] | 783 | def test_redirect_to_string_io(self): |
| 784 | f = io.StringIO() |
Nick Coghlan | 0ddaed3 | 2013-10-26 16:37:47 +1000 | [diff] [blame] | 785 | msg = "Consider an API like help(), which prints directly to stdout" |
Berker Peksag | bb44fe0 | 2014-11-28 23:28:06 +0200 | [diff] [blame] | 786 | orig_stdout = getattr(sys, self.orig_stream) |
| 787 | with self.redirect_stream(f): |
| 788 | print(msg, file=getattr(sys, self.orig_stream)) |
| 789 | self.assertIs(getattr(sys, self.orig_stream), orig_stdout) |
Nick Coghlan | 0ddaed3 | 2013-10-26 16:37:47 +1000 | [diff] [blame] | 790 | s = f.getvalue().strip() |
| 791 | self.assertEqual(s, msg) |
Nick Coghlan | 3267a30 | 2012-05-21 22:54:43 +1000 | [diff] [blame] | 792 | |
Nick Coghlan | 8608d26 | 2013-10-20 00:30:51 +1000 | [diff] [blame] | 793 | def test_enter_result_is_target(self): |
| 794 | f = io.StringIO() |
Berker Peksag | bb44fe0 | 2014-11-28 23:28:06 +0200 | [diff] [blame] | 795 | with self.redirect_stream(f) as enter_result: |
Nick Coghlan | 8608d26 | 2013-10-20 00:30:51 +1000 | [diff] [blame] | 796 | self.assertIs(enter_result, f) |
| 797 | |
| 798 | def test_cm_is_reusable(self): |
| 799 | f = io.StringIO() |
Berker Peksag | bb44fe0 | 2014-11-28 23:28:06 +0200 | [diff] [blame] | 800 | write_to_f = self.redirect_stream(f) |
| 801 | orig_stdout = getattr(sys, self.orig_stream) |
Nick Coghlan | 8608d26 | 2013-10-20 00:30:51 +1000 | [diff] [blame] | 802 | with write_to_f: |
Berker Peksag | bb44fe0 | 2014-11-28 23:28:06 +0200 | [diff] [blame] | 803 | print("Hello", end=" ", file=getattr(sys, self.orig_stream)) |
Nick Coghlan | 8608d26 | 2013-10-20 00:30:51 +1000 | [diff] [blame] | 804 | with write_to_f: |
Berker Peksag | bb44fe0 | 2014-11-28 23:28:06 +0200 | [diff] [blame] | 805 | print("World!", file=getattr(sys, self.orig_stream)) |
| 806 | self.assertIs(getattr(sys, self.orig_stream), orig_stdout) |
Nick Coghlan | 8608d26 | 2013-10-20 00:30:51 +1000 | [diff] [blame] | 807 | s = f.getvalue() |
| 808 | self.assertEqual(s, "Hello World!\n") |
| 809 | |
Nick Coghlan | 8e113b4 | 2013-11-03 17:00:51 +1000 | [diff] [blame] | 810 | def test_cm_is_reentrant(self): |
Nick Coghlan | 8608d26 | 2013-10-20 00:30:51 +1000 | [diff] [blame] | 811 | f = io.StringIO() |
Berker Peksag | bb44fe0 | 2014-11-28 23:28:06 +0200 | [diff] [blame] | 812 | write_to_f = self.redirect_stream(f) |
| 813 | orig_stdout = getattr(sys, self.orig_stream) |
Nick Coghlan | 8e113b4 | 2013-11-03 17:00:51 +1000 | [diff] [blame] | 814 | with write_to_f: |
Berker Peksag | bb44fe0 | 2014-11-28 23:28:06 +0200 | [diff] [blame] | 815 | print("Hello", end=" ", file=getattr(sys, self.orig_stream)) |
Nick Coghlan | 8608d26 | 2013-10-20 00:30:51 +1000 | [diff] [blame] | 816 | with write_to_f: |
Berker Peksag | bb44fe0 | 2014-11-28 23:28:06 +0200 | [diff] [blame] | 817 | print("World!", file=getattr(sys, self.orig_stream)) |
| 818 | self.assertIs(getattr(sys, self.orig_stream), orig_stdout) |
Nick Coghlan | 8e113b4 | 2013-11-03 17:00:51 +1000 | [diff] [blame] | 819 | s = f.getvalue() |
| 820 | self.assertEqual(s, "Hello World!\n") |
Nick Coghlan | 8608d26 | 2013-10-20 00:30:51 +1000 | [diff] [blame] | 821 | |
| 822 | |
Berker Peksag | bb44fe0 | 2014-11-28 23:28:06 +0200 | [diff] [blame] | 823 | class TestRedirectStdout(TestRedirectStream, unittest.TestCase): |
| 824 | |
| 825 | redirect_stream = redirect_stdout |
| 826 | orig_stream = "stdout" |
| 827 | |
| 828 | |
| 829 | class TestRedirectStderr(TestRedirectStream, unittest.TestCase): |
| 830 | |
| 831 | redirect_stream = redirect_stderr |
| 832 | orig_stream = "stderr" |
| 833 | |
| 834 | |
Nick Coghlan | 240f86d | 2013-10-17 23:40:57 +1000 | [diff] [blame] | 835 | class TestSuppress(unittest.TestCase): |
| 836 | |
Nick Coghlan | 561eb5c | 2013-10-26 22:20:43 +1000 | [diff] [blame] | 837 | @support.requires_docstrings |
Nick Coghlan | 059def5 | 2013-10-26 18:08:15 +1000 | [diff] [blame] | 838 | def test_instance_docs(self): |
| 839 | # Issue 19330: ensure context manager instances have good docstrings |
| 840 | cm_docstring = suppress.__doc__ |
| 841 | obj = suppress() |
| 842 | self.assertEqual(obj.__doc__, cm_docstring) |
| 843 | |
Nick Coghlan | 8608d26 | 2013-10-20 00:30:51 +1000 | [diff] [blame] | 844 | def test_no_result_from_enter(self): |
| 845 | with suppress(ValueError) as enter_result: |
| 846 | self.assertIsNone(enter_result) |
Nick Coghlan | 240f86d | 2013-10-17 23:40:57 +1000 | [diff] [blame] | 847 | |
Nick Coghlan | 8608d26 | 2013-10-20 00:30:51 +1000 | [diff] [blame] | 848 | def test_no_exception(self): |
Nick Coghlan | 240f86d | 2013-10-17 23:40:57 +1000 | [diff] [blame] | 849 | with suppress(ValueError): |
| 850 | self.assertEqual(pow(2, 5), 32) |
| 851 | |
| 852 | def test_exact_exception(self): |
Nick Coghlan | 240f86d | 2013-10-17 23:40:57 +1000 | [diff] [blame] | 853 | with suppress(TypeError): |
| 854 | len(5) |
| 855 | |
Nick Coghlan | 059def5 | 2013-10-26 18:08:15 +1000 | [diff] [blame] | 856 | def test_exception_hierarchy(self): |
| 857 | with suppress(LookupError): |
| 858 | 'Hello'[50] |
| 859 | |
| 860 | def test_other_exception(self): |
| 861 | with self.assertRaises(ZeroDivisionError): |
| 862 | with suppress(TypeError): |
| 863 | 1/0 |
| 864 | |
| 865 | def test_no_args(self): |
| 866 | with self.assertRaises(ZeroDivisionError): |
| 867 | with suppress(): |
| 868 | 1/0 |
| 869 | |
Nick Coghlan | 240f86d | 2013-10-17 23:40:57 +1000 | [diff] [blame] | 870 | def test_multiple_exception_args(self): |
Nick Coghlan | 8608d26 | 2013-10-20 00:30:51 +1000 | [diff] [blame] | 871 | with suppress(ZeroDivisionError, TypeError): |
| 872 | 1/0 |
Nick Coghlan | 240f86d | 2013-10-17 23:40:57 +1000 | [diff] [blame] | 873 | with suppress(ZeroDivisionError, TypeError): |
| 874 | len(5) |
| 875 | |
Nick Coghlan | 8608d26 | 2013-10-20 00:30:51 +1000 | [diff] [blame] | 876 | def test_cm_is_reentrant(self): |
| 877 | ignore_exceptions = suppress(Exception) |
| 878 | with ignore_exceptions: |
| 879 | pass |
| 880 | with ignore_exceptions: |
| 881 | len(5) |
| 882 | with ignore_exceptions: |
Nick Coghlan | 8608d26 | 2013-10-20 00:30:51 +1000 | [diff] [blame] | 883 | with ignore_exceptions: # Check nested usage |
| 884 | len(5) |
Martin Panter | 7c6420a | 2015-10-10 11:04:44 +0000 | [diff] [blame] | 885 | outer_continued = True |
| 886 | 1/0 |
| 887 | self.assertTrue(outer_continued) |
Nick Coghlan | 8608d26 | 2013-10-20 00:30:51 +1000 | [diff] [blame] | 888 | |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 889 | if __name__ == "__main__": |
Brett Cannon | 3e9a9ae | 2013-06-12 21:25:59 -0400 | [diff] [blame] | 890 | unittest.main() |