Guido van Rossum | 3bead09 | 1992-01-27 17:00:37 +0000 | [diff] [blame] | 1 | # Python test set -- part 5, built-in exceptions |
| 2 | |
Tim Peters | 80dc76e | 2006-06-07 06:57:51 +0000 | [diff] [blame] | 3 | import os |
| 4 | import sys |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 5 | import unittest |
Tim Peters | 80dc76e | 2006-06-07 06:57:51 +0000 | [diff] [blame] | 6 | import pickle, cPickle |
| 7 | |
Florent Xicluna | 6257a7b | 2010-03-31 22:01:03 +0000 | [diff] [blame] | 8 | from test.test_support import (TESTFN, unlink, run_unittest, captured_output, |
Benjamin Peterson | 8eeb1dc | 2010-06-28 15:36:40 +0000 | [diff] [blame] | 9 | check_warnings, cpython_only) |
Ezio Melotti | 1f517e1 | 2010-02-02 17:34:37 +0000 | [diff] [blame] | 10 | from test.test_pep352 import ignore_deprecation_warnings |
Guido van Rossum | 83b120d | 2001-08-23 03:23:03 +0000 | [diff] [blame] | 11 | |
Guido van Rossum | 3bead09 | 1992-01-27 17:00:37 +0000 | [diff] [blame] | 12 | # XXX This is not really enough, each *operation* should be tested! |
| 13 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 14 | class ExceptionTests(unittest.TestCase): |
Barry Warsaw | b9c1d3d | 2001-08-13 23:07:00 +0000 | [diff] [blame] | 15 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 16 | def testReload(self): |
| 17 | # Reloading the built-in exceptions module failed prior to Py2.2, while it |
| 18 | # should act the same as reloading built-in sys. |
| 19 | try: |
Ezio Melotti | 1f517e1 | 2010-02-02 17:34:37 +0000 | [diff] [blame] | 20 | from imp import reload |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 21 | import exceptions |
| 22 | reload(exceptions) |
| 23 | except ImportError, e: |
| 24 | self.fail("reloading exceptions: %s" % e) |
Jeremy Hylton | 56c807d | 2000-06-20 18:52:57 +0000 | [diff] [blame] | 25 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 26 | def raise_catch(self, exc, excname): |
| 27 | try: |
| 28 | raise exc, "spam" |
| 29 | except exc, err: |
| 30 | buf1 = str(err) |
| 31 | try: |
| 32 | raise exc("spam") |
| 33 | except exc, err: |
| 34 | buf2 = str(err) |
Ezio Melotti | 2623a37 | 2010-11-21 13:34:58 +0000 | [diff] [blame] | 35 | self.assertEqual(buf1, buf2) |
| 36 | self.assertEqual(exc.__name__, excname) |
Guido van Rossum | 3bead09 | 1992-01-27 17:00:37 +0000 | [diff] [blame] | 37 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 38 | def testRaising(self): |
Tim Peters | dd55b0a | 2006-05-30 23:28:02 +0000 | [diff] [blame] | 39 | self.raise_catch(AttributeError, "AttributeError") |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 40 | self.assertRaises(AttributeError, getattr, sys, "undefined_attribute") |
Guido van Rossum | 3bead09 | 1992-01-27 17:00:37 +0000 | [diff] [blame] | 41 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 42 | self.raise_catch(EOFError, "EOFError") |
| 43 | fp = open(TESTFN, 'w') |
| 44 | fp.close() |
| 45 | fp = open(TESTFN, 'r') |
| 46 | savestdin = sys.stdin |
| 47 | try: |
| 48 | try: |
| 49 | sys.stdin = fp |
| 50 | x = raw_input() |
| 51 | except EOFError: |
| 52 | pass |
| 53 | finally: |
| 54 | sys.stdin = savestdin |
| 55 | fp.close() |
| 56 | unlink(TESTFN) |
Guido van Rossum | 3bead09 | 1992-01-27 17:00:37 +0000 | [diff] [blame] | 57 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 58 | self.raise_catch(IOError, "IOError") |
| 59 | self.assertRaises(IOError, open, 'this file does not exist', 'r') |
Guido van Rossum | 3bead09 | 1992-01-27 17:00:37 +0000 | [diff] [blame] | 60 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 61 | self.raise_catch(ImportError, "ImportError") |
| 62 | self.assertRaises(ImportError, __import__, "undefined_module") |
Guido van Rossum | 3bead09 | 1992-01-27 17:00:37 +0000 | [diff] [blame] | 63 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 64 | self.raise_catch(IndexError, "IndexError") |
| 65 | x = [] |
| 66 | self.assertRaises(IndexError, x.__getitem__, 10) |
Guido van Rossum | 3bead09 | 1992-01-27 17:00:37 +0000 | [diff] [blame] | 67 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 68 | self.raise_catch(KeyError, "KeyError") |
| 69 | x = {} |
| 70 | self.assertRaises(KeyError, x.__getitem__, 'key') |
Guido van Rossum | 3bead09 | 1992-01-27 17:00:37 +0000 | [diff] [blame] | 71 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 72 | self.raise_catch(KeyboardInterrupt, "KeyboardInterrupt") |
Guido van Rossum | 3bead09 | 1992-01-27 17:00:37 +0000 | [diff] [blame] | 73 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 74 | self.raise_catch(MemoryError, "MemoryError") |
Guido van Rossum | 3bead09 | 1992-01-27 17:00:37 +0000 | [diff] [blame] | 75 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 76 | self.raise_catch(NameError, "NameError") |
| 77 | try: x = undefined_variable |
| 78 | except NameError: pass |
Guido van Rossum | 3bead09 | 1992-01-27 17:00:37 +0000 | [diff] [blame] | 79 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 80 | self.raise_catch(OverflowError, "OverflowError") |
| 81 | x = 1 |
| 82 | for dummy in range(128): |
| 83 | x += x # this simply shouldn't blow up |
Guido van Rossum | 3bead09 | 1992-01-27 17:00:37 +0000 | [diff] [blame] | 84 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 85 | self.raise_catch(RuntimeError, "RuntimeError") |
Guido van Rossum | 3bead09 | 1992-01-27 17:00:37 +0000 | [diff] [blame] | 86 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 87 | self.raise_catch(SyntaxError, "SyntaxError") |
| 88 | try: exec '/\n' |
| 89 | except SyntaxError: pass |
Guido van Rossum | 3bead09 | 1992-01-27 17:00:37 +0000 | [diff] [blame] | 90 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 91 | self.raise_catch(IndentationError, "IndentationError") |
Fred Drake | 72e48bd | 2000-09-08 16:32:34 +0000 | [diff] [blame] | 92 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 93 | self.raise_catch(TabError, "TabError") |
| 94 | # can only be tested under -tt, and is the only test for -tt |
| 95 | #try: compile("try:\n\t1/0\n \t1/0\nfinally:\n pass\n", '<string>', 'exec') |
| 96 | #except TabError: pass |
| 97 | #else: self.fail("TabError not raised") |
Fred Drake | 72e48bd | 2000-09-08 16:32:34 +0000 | [diff] [blame] | 98 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 99 | self.raise_catch(SystemError, "SystemError") |
Fred Drake | 72e48bd | 2000-09-08 16:32:34 +0000 | [diff] [blame] | 100 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 101 | self.raise_catch(SystemExit, "SystemExit") |
| 102 | self.assertRaises(SystemExit, sys.exit, 0) |
Fred Drake | 85f3639 | 2000-07-11 17:53:00 +0000 | [diff] [blame] | 103 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 104 | self.raise_catch(TypeError, "TypeError") |
| 105 | try: [] + () |
| 106 | except TypeError: pass |
Fred Drake | 85f3639 | 2000-07-11 17:53:00 +0000 | [diff] [blame] | 107 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 108 | self.raise_catch(ValueError, "ValueError") |
| 109 | self.assertRaises(ValueError, chr, 10000) |
Guido van Rossum | 3bead09 | 1992-01-27 17:00:37 +0000 | [diff] [blame] | 110 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 111 | self.raise_catch(ZeroDivisionError, "ZeroDivisionError") |
Ezio Melotti | 1f517e1 | 2010-02-02 17:34:37 +0000 | [diff] [blame] | 112 | try: x = 1 // 0 |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 113 | except ZeroDivisionError: pass |
Guido van Rossum | 3bead09 | 1992-01-27 17:00:37 +0000 | [diff] [blame] | 114 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 115 | self.raise_catch(Exception, "Exception") |
Ezio Melotti | 1f517e1 | 2010-02-02 17:34:37 +0000 | [diff] [blame] | 116 | try: x = 1 // 0 |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 117 | except Exception, e: pass |
Guido van Rossum | 3bead09 | 1992-01-27 17:00:37 +0000 | [diff] [blame] | 118 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 119 | def testSyntaxErrorMessage(self): |
Neal Norwitz | e152aab | 2006-06-02 04:45:53 +0000 | [diff] [blame] | 120 | # make sure the right exception message is raised for each of |
| 121 | # these code fragments |
Guido van Rossum | 3bead09 | 1992-01-27 17:00:37 +0000 | [diff] [blame] | 122 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 123 | def ckmsg(src, msg): |
| 124 | try: |
| 125 | compile(src, '<fragment>', 'exec') |
| 126 | except SyntaxError, e: |
| 127 | if e.msg != msg: |
| 128 | self.fail("expected %s, got %s" % (msg, e.msg)) |
| 129 | else: |
| 130 | self.fail("failed to get expected SyntaxError") |
Guido van Rossum | 3bead09 | 1992-01-27 17:00:37 +0000 | [diff] [blame] | 131 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 132 | s = '''while 1: |
| 133 | try: |
| 134 | pass |
| 135 | finally: |
| 136 | continue''' |
Barry Warsaw | 992cb8a | 2000-05-25 23:16:54 +0000 | [diff] [blame] | 137 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 138 | if not sys.platform.startswith('java'): |
| 139 | ckmsg(s, "'continue' not supported inside 'finally' clause") |
Jeremy Hylton | ede049b | 2001-09-26 20:01:13 +0000 | [diff] [blame] | 140 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 141 | s = '''if 1: |
| 142 | try: |
| 143 | continue |
| 144 | except: |
| 145 | pass''' |
Jeremy Hylton | ede049b | 2001-09-26 20:01:13 +0000 | [diff] [blame] | 146 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 147 | ckmsg(s, "'continue' not properly in loop") |
| 148 | ckmsg("continue\n", "'continue' not properly in loop") |
Jeremy Hylton | ede049b | 2001-09-26 20:01:13 +0000 | [diff] [blame] | 149 | |
Benjamin Peterson | 8eeb1dc | 2010-06-28 15:36:40 +0000 | [diff] [blame] | 150 | @cpython_only |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 151 | def testSettingException(self): |
Neal Norwitz | e152aab | 2006-06-02 04:45:53 +0000 | [diff] [blame] | 152 | # test that setting an exception at the C level works even if the |
| 153 | # exception object can't be constructed. |
Finn Bock | aa3dc45 | 2001-12-08 10:15:48 +0000 | [diff] [blame] | 154 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 155 | class BadException: |
| 156 | def __init__(self_): |
| 157 | raise RuntimeError, "can't instantiate BadException" |
Jeremy Hylton | ede049b | 2001-09-26 20:01:13 +0000 | [diff] [blame] | 158 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 159 | def test_capi1(): |
| 160 | import _testcapi |
| 161 | try: |
| 162 | _testcapi.raise_exception(BadException, 1) |
| 163 | except TypeError, err: |
| 164 | exc, err, tb = sys.exc_info() |
| 165 | co = tb.tb_frame.f_code |
Ezio Melotti | 2623a37 | 2010-11-21 13:34:58 +0000 | [diff] [blame] | 166 | self.assertEqual(co.co_name, "test_capi1") |
Benjamin Peterson | 5c8da86 | 2009-06-30 22:57:08 +0000 | [diff] [blame] | 167 | self.assertTrue(co.co_filename.endswith('test_exceptions'+os.extsep+'py')) |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 168 | else: |
| 169 | self.fail("Expected exception") |
Richard Jones | 7b9558d | 2006-05-27 12:29:24 +0000 | [diff] [blame] | 170 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 171 | def test_capi2(): |
| 172 | import _testcapi |
| 173 | try: |
| 174 | _testcapi.raise_exception(BadException, 0) |
| 175 | except RuntimeError, err: |
| 176 | exc, err, tb = sys.exc_info() |
| 177 | co = tb.tb_frame.f_code |
Ezio Melotti | 2623a37 | 2010-11-21 13:34:58 +0000 | [diff] [blame] | 178 | self.assertEqual(co.co_name, "__init__") |
Benjamin Peterson | 5c8da86 | 2009-06-30 22:57:08 +0000 | [diff] [blame] | 179 | self.assertTrue(co.co_filename.endswith('test_exceptions'+os.extsep+'py')) |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 180 | co2 = tb.tb_frame.f_back.f_code |
Ezio Melotti | 2623a37 | 2010-11-21 13:34:58 +0000 | [diff] [blame] | 181 | self.assertEqual(co2.co_name, "test_capi2") |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 182 | else: |
| 183 | self.fail("Expected exception") |
Richard Jones | 7b9558d | 2006-05-27 12:29:24 +0000 | [diff] [blame] | 184 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 185 | if not sys.platform.startswith('java'): |
| 186 | test_capi1() |
| 187 | test_capi2() |
Georg Brandl | 05f97bf | 2006-05-30 07:13:29 +0000 | [diff] [blame] | 188 | |
Thomas Heller | df08f0b | 2006-10-27 18:31:36 +0000 | [diff] [blame] | 189 | def test_WindowsError(self): |
| 190 | try: |
| 191 | WindowsError |
| 192 | except NameError: |
| 193 | pass |
| 194 | else: |
Benjamin Peterson | 5c8da86 | 2009-06-30 22:57:08 +0000 | [diff] [blame] | 195 | self.assertEqual(str(WindowsError(1001)), |
Thomas Heller | df08f0b | 2006-10-27 18:31:36 +0000 | [diff] [blame] | 196 | "1001") |
Benjamin Peterson | 5c8da86 | 2009-06-30 22:57:08 +0000 | [diff] [blame] | 197 | self.assertEqual(str(WindowsError(1001, "message")), |
Thomas Heller | df08f0b | 2006-10-27 18:31:36 +0000 | [diff] [blame] | 198 | "[Error 1001] message") |
Benjamin Peterson | 5c8da86 | 2009-06-30 22:57:08 +0000 | [diff] [blame] | 199 | self.assertEqual(WindowsError(1001, "message").errno, 22) |
| 200 | self.assertEqual(WindowsError(1001, "message").winerror, 1001) |
Thomas Heller | df08f0b | 2006-10-27 18:31:36 +0000 | [diff] [blame] | 201 | |
Ezio Melotti | 1f517e1 | 2010-02-02 17:34:37 +0000 | [diff] [blame] | 202 | @ignore_deprecation_warnings |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 203 | def testAttributes(self): |
Neal Norwitz | e152aab | 2006-06-02 04:45:53 +0000 | [diff] [blame] | 204 | # test that exception attributes are happy |
Tim Peters | dd55b0a | 2006-05-30 23:28:02 +0000 | [diff] [blame] | 205 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 206 | exceptionList = [ |
Georg Brandl | e08940e | 2006-06-01 13:00:49 +0000 | [diff] [blame] | 207 | (BaseException, (), {'message' : '', 'args' : ()}), |
| 208 | (BaseException, (1, ), {'message' : 1, 'args' : (1,)}), |
| 209 | (BaseException, ('foo',), |
| 210 | {'message' : 'foo', 'args' : ('foo',)}), |
| 211 | (BaseException, ('foo', 1), |
| 212 | {'message' : '', 'args' : ('foo', 1)}), |
| 213 | (SystemExit, ('foo',), |
| 214 | {'message' : 'foo', 'args' : ('foo',), 'code' : 'foo'}), |
| 215 | (IOError, ('foo',), |
Georg Brandl | 3267d28 | 2006-09-30 09:03:42 +0000 | [diff] [blame] | 216 | {'message' : 'foo', 'args' : ('foo',), 'filename' : None, |
| 217 | 'errno' : None, 'strerror' : None}), |
Georg Brandl | e08940e | 2006-06-01 13:00:49 +0000 | [diff] [blame] | 218 | (IOError, ('foo', 'bar'), |
Georg Brandl | 3267d28 | 2006-09-30 09:03:42 +0000 | [diff] [blame] | 219 | {'message' : '', 'args' : ('foo', 'bar'), 'filename' : None, |
| 220 | 'errno' : 'foo', 'strerror' : 'bar'}), |
Georg Brandl | e08940e | 2006-06-01 13:00:49 +0000 | [diff] [blame] | 221 | (IOError, ('foo', 'bar', 'baz'), |
Georg Brandl | 3267d28 | 2006-09-30 09:03:42 +0000 | [diff] [blame] | 222 | {'message' : '', 'args' : ('foo', 'bar'), 'filename' : 'baz', |
| 223 | 'errno' : 'foo', 'strerror' : 'bar'}), |
| 224 | (IOError, ('foo', 'bar', 'baz', 'quux'), |
| 225 | {'message' : '', 'args' : ('foo', 'bar', 'baz', 'quux')}), |
Georg Brandl | e08940e | 2006-06-01 13:00:49 +0000 | [diff] [blame] | 226 | (EnvironmentError, ('errnoStr', 'strErrorStr', 'filenameStr'), |
| 227 | {'message' : '', 'args' : ('errnoStr', 'strErrorStr'), |
| 228 | 'strerror' : 'strErrorStr', 'errno' : 'errnoStr', |
| 229 | 'filename' : 'filenameStr'}), |
| 230 | (EnvironmentError, (1, 'strErrorStr', 'filenameStr'), |
| 231 | {'message' : '', 'args' : (1, 'strErrorStr'), 'errno' : 1, |
| 232 | 'strerror' : 'strErrorStr', 'filename' : 'filenameStr'}), |
Brett Cannon | f8267df | 2007-02-28 18:15:00 +0000 | [diff] [blame] | 233 | (SyntaxError, (), {'message' : '', 'msg' : None, 'text' : None, |
| 234 | 'filename' : None, 'lineno' : None, 'offset' : None, |
| 235 | 'print_file_and_line' : None}), |
Georg Brandl | e08940e | 2006-06-01 13:00:49 +0000 | [diff] [blame] | 236 | (SyntaxError, ('msgStr',), |
| 237 | {'message' : 'msgStr', 'args' : ('msgStr',), 'text' : None, |
| 238 | 'print_file_and_line' : None, 'msg' : 'msgStr', |
| 239 | 'filename' : None, 'lineno' : None, 'offset' : None}), |
| 240 | (SyntaxError, ('msgStr', ('filenameStr', 'linenoStr', 'offsetStr', |
| 241 | 'textStr')), |
| 242 | {'message' : '', 'offset' : 'offsetStr', 'text' : 'textStr', |
| 243 | 'args' : ('msgStr', ('filenameStr', 'linenoStr', |
| 244 | 'offsetStr', 'textStr')), |
| 245 | 'print_file_and_line' : None, 'msg' : 'msgStr', |
| 246 | 'filename' : 'filenameStr', 'lineno' : 'linenoStr'}), |
| 247 | (SyntaxError, ('msgStr', 'filenameStr', 'linenoStr', 'offsetStr', |
| 248 | 'textStr', 'print_file_and_lineStr'), |
| 249 | {'message' : '', 'text' : None, |
| 250 | 'args' : ('msgStr', 'filenameStr', 'linenoStr', 'offsetStr', |
| 251 | 'textStr', 'print_file_and_lineStr'), |
| 252 | 'print_file_and_line' : None, 'msg' : 'msgStr', |
| 253 | 'filename' : None, 'lineno' : None, 'offset' : None}), |
| 254 | (UnicodeError, (), {'message' : '', 'args' : (),}), |
Georg Brandl | 38f6237 | 2006-09-06 06:50:05 +0000 | [diff] [blame] | 255 | (UnicodeEncodeError, ('ascii', u'a', 0, 1, 'ordinal not in range'), |
| 256 | {'message' : '', 'args' : ('ascii', u'a', 0, 1, |
| 257 | 'ordinal not in range'), |
| 258 | 'encoding' : 'ascii', 'object' : u'a', |
| 259 | 'start' : 0, 'reason' : 'ordinal not in range'}), |
| 260 | (UnicodeDecodeError, ('ascii', '\xff', 0, 1, 'ordinal not in range'), |
Georg Brandl | e08940e | 2006-06-01 13:00:49 +0000 | [diff] [blame] | 261 | {'message' : '', 'args' : ('ascii', '\xff', 0, 1, |
Georg Brandl | 38f6237 | 2006-09-06 06:50:05 +0000 | [diff] [blame] | 262 | 'ordinal not in range'), |
Georg Brandl | e08940e | 2006-06-01 13:00:49 +0000 | [diff] [blame] | 263 | 'encoding' : 'ascii', 'object' : '\xff', |
Georg Brandl | 38f6237 | 2006-09-06 06:50:05 +0000 | [diff] [blame] | 264 | 'start' : 0, 'reason' : 'ordinal not in range'}), |
Georg Brandl | e08940e | 2006-06-01 13:00:49 +0000 | [diff] [blame] | 265 | (UnicodeTranslateError, (u"\u3042", 0, 1, "ouch"), |
| 266 | {'message' : '', 'args' : (u'\u3042', 0, 1, 'ouch'), |
| 267 | 'object' : u'\u3042', 'reason' : 'ouch', |
| 268 | 'start' : 0, 'end' : 1}), |
| 269 | ] |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 270 | try: |
| 271 | exceptionList.append( |
Georg Brandl | e08940e | 2006-06-01 13:00:49 +0000 | [diff] [blame] | 272 | (WindowsError, (1, 'strErrorStr', 'filenameStr'), |
| 273 | {'message' : '', 'args' : (1, 'strErrorStr'), |
| 274 | 'strerror' : 'strErrorStr', 'winerror' : 1, |
| 275 | 'errno' : 22, 'filename' : 'filenameStr'}) |
| 276 | ) |
Tim Peters | 80dc76e | 2006-06-07 06:57:51 +0000 | [diff] [blame] | 277 | except NameError: |
| 278 | pass |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 279 | |
Ezio Melotti | 1f517e1 | 2010-02-02 17:34:37 +0000 | [diff] [blame] | 280 | for exc, args, expected in exceptionList: |
| 281 | try: |
| 282 | raise exc(*args) |
| 283 | except BaseException, e: |
| 284 | if type(e) is not exc: |
| 285 | raise |
| 286 | # Verify module name |
Ezio Melotti | 2623a37 | 2010-11-21 13:34:58 +0000 | [diff] [blame] | 287 | self.assertEqual(type(e).__module__, 'exceptions') |
Ezio Melotti | 1f517e1 | 2010-02-02 17:34:37 +0000 | [diff] [blame] | 288 | # Verify no ref leaks in Exc_str() |
| 289 | s = str(e) |
| 290 | for checkArgName in expected: |
Ezio Melotti | 2623a37 | 2010-11-21 13:34:58 +0000 | [diff] [blame] | 291 | self.assertEqual(repr(getattr(e, checkArgName)), |
| 292 | repr(expected[checkArgName]), |
| 293 | 'exception "%s", attribute "%s"' % |
| 294 | (repr(e), checkArgName)) |
Tim Peters | dd55b0a | 2006-05-30 23:28:02 +0000 | [diff] [blame] | 295 | |
Ezio Melotti | 1f517e1 | 2010-02-02 17:34:37 +0000 | [diff] [blame] | 296 | # test for pickling support |
| 297 | for p in pickle, cPickle: |
| 298 | for protocol in range(p.HIGHEST_PROTOCOL + 1): |
| 299 | new = p.loads(p.dumps(e, protocol)) |
| 300 | for checkArgName in expected: |
| 301 | got = repr(getattr(new, checkArgName)) |
| 302 | want = repr(expected[checkArgName]) |
Ezio Melotti | 2623a37 | 2010-11-21 13:34:58 +0000 | [diff] [blame] | 303 | self.assertEqual(got, want, |
| 304 | 'pickled "%r", attribute "%s"' % |
| 305 | (e, checkArgName)) |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 306 | |
Georg Brandl | 0674d3f | 2009-09-16 20:30:09 +0000 | [diff] [blame] | 307 | |
| 308 | def testDeprecatedMessageAttribute(self): |
| 309 | # Accessing BaseException.message and relying on its value set by |
| 310 | # BaseException.__init__ triggers a deprecation warning. |
| 311 | exc = BaseException("foo") |
Florent Xicluna | 6257a7b | 2010-03-31 22:01:03 +0000 | [diff] [blame] | 312 | with check_warnings(("BaseException.message has been deprecated " |
| 313 | "as of Python 2.6", DeprecationWarning)) as w: |
| 314 | self.assertEqual(exc.message, "foo") |
| 315 | self.assertEqual(len(w.warnings), 1) |
Georg Brandl | 0674d3f | 2009-09-16 20:30:09 +0000 | [diff] [blame] | 316 | |
| 317 | def testRegularMessageAttribute(self): |
| 318 | # Accessing BaseException.message after explicitly setting a value |
| 319 | # for it does not trigger a deprecation warning. |
| 320 | exc = BaseException("foo") |
| 321 | exc.message = "bar" |
Florent Xicluna | 6257a7b | 2010-03-31 22:01:03 +0000 | [diff] [blame] | 322 | with check_warnings(quiet=True) as w: |
| 323 | self.assertEqual(exc.message, "bar") |
| 324 | self.assertEqual(len(w.warnings), 0) |
Georg Brandl | 0674d3f | 2009-09-16 20:30:09 +0000 | [diff] [blame] | 325 | # Deleting the message is supported, too. |
| 326 | del exc.message |
| 327 | with self.assertRaises(AttributeError): |
| 328 | exc.message |
| 329 | |
Ezio Melotti | 1f517e1 | 2010-02-02 17:34:37 +0000 | [diff] [blame] | 330 | @ignore_deprecation_warnings |
Georg Brandl | 0674d3f | 2009-09-16 20:30:09 +0000 | [diff] [blame] | 331 | def testPickleMessageAttribute(self): |
| 332 | # Pickling with message attribute must work, as well. |
| 333 | e = Exception("foo") |
| 334 | f = Exception("foo") |
| 335 | f.message = "bar" |
| 336 | for p in pickle, cPickle: |
| 337 | ep = p.loads(p.dumps(e)) |
Ezio Melotti | 1f517e1 | 2010-02-02 17:34:37 +0000 | [diff] [blame] | 338 | self.assertEqual(ep.message, "foo") |
Georg Brandl | 0674d3f | 2009-09-16 20:30:09 +0000 | [diff] [blame] | 339 | fp = p.loads(p.dumps(f)) |
| 340 | self.assertEqual(fp.message, "bar") |
| 341 | |
Ezio Melotti | 1f517e1 | 2010-02-02 17:34:37 +0000 | [diff] [blame] | 342 | @ignore_deprecation_warnings |
Brett Cannon | e05e6b0 | 2007-01-29 04:41:44 +0000 | [diff] [blame] | 343 | def testSlicing(self): |
| 344 | # Test that you can slice an exception directly instead of requiring |
| 345 | # going through the 'args' attribute. |
| 346 | args = (1, 2, 3) |
| 347 | exc = BaseException(*args) |
Senthil Kumaran | ce8e33a | 2010-01-08 19:04:16 +0000 | [diff] [blame] | 348 | self.assertEqual(exc[:], args) |
Ezio Melotti | 1f517e1 | 2010-02-02 17:34:37 +0000 | [diff] [blame] | 349 | self.assertEqual(exc.args[:], args) |
Brett Cannon | e05e6b0 | 2007-01-29 04:41:44 +0000 | [diff] [blame] | 350 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 351 | def testKeywordArgs(self): |
Neal Norwitz | e152aab | 2006-06-02 04:45:53 +0000 | [diff] [blame] | 352 | # test that builtin exception don't take keyword args, |
| 353 | # but user-defined subclasses can if they want |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 354 | self.assertRaises(TypeError, BaseException, a=1) |
Georg Brandl | e08940e | 2006-06-01 13:00:49 +0000 | [diff] [blame] | 355 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 356 | class DerivedException(BaseException): |
| 357 | def __init__(self, fancy_arg): |
| 358 | BaseException.__init__(self) |
| 359 | self.fancy_arg = fancy_arg |
| 360 | |
| 361 | x = DerivedException(fancy_arg=42) |
Ezio Melotti | 2623a37 | 2010-11-21 13:34:58 +0000 | [diff] [blame] | 362 | self.assertEqual(x.fancy_arg, 42) |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 363 | |
Armin Rigo | 53c1692f | 2006-06-21 21:58:50 +0000 | [diff] [blame] | 364 | def testInfiniteRecursion(self): |
| 365 | def f(): |
| 366 | return f() |
| 367 | self.assertRaises(RuntimeError, f) |
| 368 | |
| 369 | def g(): |
| 370 | try: |
| 371 | return g() |
| 372 | except ValueError: |
| 373 | return -1 |
Antoine Pitrou | 0668c62 | 2008-08-26 22:42:08 +0000 | [diff] [blame] | 374 | |
| 375 | # The test prints an unraisable recursion error when |
| 376 | # doing "except ValueError", this is because subclass |
| 377 | # checking has recursion checking too. |
| 378 | with captured_output("stderr"): |
| 379 | try: |
| 380 | g() |
| 381 | except RuntimeError: |
| 382 | pass |
| 383 | except: |
| 384 | self.fail("Should have raised KeyError") |
| 385 | else: |
| 386 | self.fail("Should have raised KeyError") |
Armin Rigo | 53c1692f | 2006-06-21 21:58:50 +0000 | [diff] [blame] | 387 | |
Brett Cannon | ca2ca79 | 2006-09-09 07:11:46 +0000 | [diff] [blame] | 388 | def testUnicodeStrUsage(self): |
| 389 | # Make sure both instances and classes have a str and unicode |
| 390 | # representation. |
Benjamin Peterson | 5c8da86 | 2009-06-30 22:57:08 +0000 | [diff] [blame] | 391 | self.assertTrue(str(Exception)) |
| 392 | self.assertTrue(unicode(Exception)) |
| 393 | self.assertTrue(str(Exception('a'))) |
| 394 | self.assertTrue(unicode(Exception(u'a'))) |
| 395 | self.assertTrue(unicode(Exception(u'\xe1'))) |
Brett Cannon | ca2ca79 | 2006-09-09 07:11:46 +0000 | [diff] [blame] | 396 | |
Eric Smith | 2d9856d | 2010-02-24 14:15:36 +0000 | [diff] [blame] | 397 | def testUnicodeChangeAttributes(self): |
| 398 | # See issue 7309. This was a crasher. |
| 399 | |
| 400 | u = UnicodeEncodeError('baz', u'xxxxx', 1, 5, 'foo') |
| 401 | self.assertEqual(str(u), "'baz' codec can't encode characters in position 1-4: foo") |
| 402 | u.end = 2 |
| 403 | self.assertEqual(str(u), "'baz' codec can't encode character u'\\x78' in position 1: foo") |
| 404 | u.end = 5 |
| 405 | u.reason = 0x345345345345345345 |
| 406 | self.assertEqual(str(u), "'baz' codec can't encode characters in position 1-4: 965230951443685724997") |
| 407 | u.encoding = 4000 |
| 408 | self.assertEqual(str(u), "'4000' codec can't encode characters in position 1-4: 965230951443685724997") |
| 409 | u.start = 1000 |
| 410 | self.assertEqual(str(u), "'4000' codec can't encode characters in position 1000-4: 965230951443685724997") |
| 411 | |
| 412 | u = UnicodeDecodeError('baz', 'xxxxx', 1, 5, 'foo') |
| 413 | self.assertEqual(str(u), "'baz' codec can't decode bytes in position 1-4: foo") |
| 414 | u.end = 2 |
| 415 | self.assertEqual(str(u), "'baz' codec can't decode byte 0x78 in position 1: foo") |
| 416 | u.end = 5 |
| 417 | u.reason = 0x345345345345345345 |
| 418 | self.assertEqual(str(u), "'baz' codec can't decode bytes in position 1-4: 965230951443685724997") |
| 419 | u.encoding = 4000 |
| 420 | self.assertEqual(str(u), "'4000' codec can't decode bytes in position 1-4: 965230951443685724997") |
| 421 | u.start = 1000 |
| 422 | self.assertEqual(str(u), "'4000' codec can't decode bytes in position 1000-4: 965230951443685724997") |
| 423 | |
| 424 | u = UnicodeTranslateError(u'xxxx', 1, 5, 'foo') |
| 425 | self.assertEqual(str(u), "can't translate characters in position 1-4: foo") |
| 426 | u.end = 2 |
| 427 | self.assertEqual(str(u), "can't translate character u'\\x78' in position 1: foo") |
| 428 | u.end = 5 |
| 429 | u.reason = 0x345345345345345345 |
| 430 | self.assertEqual(str(u), "can't translate characters in position 1-4: 965230951443685724997") |
| 431 | u.start = 1000 |
| 432 | self.assertEqual(str(u), "can't translate characters in position 1000-4: 965230951443685724997") |
| 433 | |
Amaury Forgeot d'Arc | 246daed | 2008-07-31 00:42:16 +0000 | [diff] [blame] | 434 | def test_badisinstance(self): |
| 435 | # Bug #2542: if issubclass(e, MyException) raises an exception, |
| 436 | # it should be ignored |
| 437 | class Meta(type): |
| 438 | def __subclasscheck__(cls, subclass): |
| 439 | raise ValueError() |
| 440 | |
| 441 | class MyException(Exception): |
| 442 | __metaclass__ = Meta |
| 443 | pass |
| 444 | |
| 445 | with captured_output("stderr") as stderr: |
| 446 | try: |
| 447 | raise KeyError() |
| 448 | except MyException, e: |
| 449 | self.fail("exception should not be a MyException") |
| 450 | except KeyError: |
| 451 | pass |
| 452 | except: |
Antoine Pitrou | 0668c62 | 2008-08-26 22:42:08 +0000 | [diff] [blame] | 453 | self.fail("Should have raised KeyError") |
Amaury Forgeot d'Arc | 246daed | 2008-07-31 00:42:16 +0000 | [diff] [blame] | 454 | else: |
Antoine Pitrou | 0668c62 | 2008-08-26 22:42:08 +0000 | [diff] [blame] | 455 | self.fail("Should have raised KeyError") |
| 456 | |
| 457 | with captured_output("stderr") as stderr: |
| 458 | def g(): |
| 459 | try: |
| 460 | return g() |
| 461 | except RuntimeError: |
| 462 | return sys.exc_info() |
| 463 | e, v, tb = g() |
Benjamin Peterson | 5c8da86 | 2009-06-30 22:57:08 +0000 | [diff] [blame] | 464 | self.assertTrue(e is RuntimeError, e) |
Ezio Melotti | aa98058 | 2010-01-23 23:04:36 +0000 | [diff] [blame] | 465 | self.assertIn("maximum recursion depth exceeded", str(v)) |
Antoine Pitrou | 0668c62 | 2008-08-26 22:42:08 +0000 | [diff] [blame] | 466 | |
Benjamin Peterson | c3349cd | 2011-07-15 14:15:40 -0500 | [diff] [blame] | 467 | def test_new_returns_invalid_instance(self): |
| 468 | # See issue #11627. |
| 469 | class MyException(Exception): |
| 470 | def __new__(cls, *args): |
| 471 | return object() |
| 472 | |
| 473 | with self.assertRaises(TypeError): |
| 474 | raise MyException |
Brett Cannon | ca2ca79 | 2006-09-09 07:11:46 +0000 | [diff] [blame] | 475 | |
Benjamin Peterson | 78fc705 | 2011-10-27 08:20:01 -0400 | [diff] [blame] | 476 | def test_assert_with_tuple_arg(self): |
| 477 | try: |
| 478 | assert False, (3,) |
| 479 | except AssertionError as e: |
| 480 | self.assertEqual(str(e), "(3,)") |
| 481 | |
Ezio Melotti | f84caf4 | 2009-12-24 22:25:17 +0000 | [diff] [blame] | 482 | |
| 483 | # Helper class used by TestSameStrAndUnicodeMsg |
| 484 | class ExcWithOverriddenStr(Exception): |
| 485 | """Subclass of Exception that accepts a keyword 'msg' arg that is |
| 486 | returned by __str__. 'msg' won't be included in self.args""" |
| 487 | def __init__(self, *args, **kwargs): |
| 488 | self.msg = kwargs.pop('msg') # msg should always be present |
| 489 | super(ExcWithOverriddenStr, self).__init__(*args, **kwargs) |
| 490 | def __str__(self): |
| 491 | return self.msg |
| 492 | |
| 493 | |
| 494 | class TestSameStrAndUnicodeMsg(unittest.TestCase): |
| 495 | """unicode(err) should return the same message of str(err). See #6108""" |
| 496 | |
| 497 | def check_same_msg(self, exc, msg): |
| 498 | """Helper function that checks if str(exc) == unicode(exc) == msg""" |
| 499 | self.assertEqual(str(exc), msg) |
| 500 | self.assertEqual(str(exc), unicode(exc)) |
| 501 | |
| 502 | def test_builtin_exceptions(self): |
| 503 | """Check same msg for built-in exceptions""" |
| 504 | # These exceptions implement a __str__ method that uses the args |
| 505 | # to create a better error message. unicode(e) should return the same |
| 506 | # message. |
| 507 | exceptions = [ |
| 508 | SyntaxError('invalid syntax', ('<string>', 1, 3, '2+*3')), |
| 509 | IOError(2, 'No such file or directory'), |
| 510 | KeyError('both should have the same quotes'), |
| 511 | UnicodeDecodeError('ascii', '\xc3\xa0', 0, 1, |
| 512 | 'ordinal not in range(128)'), |
| 513 | UnicodeEncodeError('ascii', u'\u1234', 0, 1, |
| 514 | 'ordinal not in range(128)') |
| 515 | ] |
| 516 | for exception in exceptions: |
| 517 | self.assertEqual(str(exception), unicode(exception)) |
| 518 | |
| 519 | def test_0_args(self): |
| 520 | """Check same msg for Exception with 0 args""" |
| 521 | # str() and unicode() on an Exception with no args should return an |
| 522 | # empty string |
| 523 | self.check_same_msg(Exception(), '') |
| 524 | |
| 525 | def test_0_args_with_overridden___str__(self): |
| 526 | """Check same msg for exceptions with 0 args and overridden __str__""" |
| 527 | # str() and unicode() on an exception with overridden __str__ that |
| 528 | # returns an ascii-only string should return the same string |
| 529 | for msg in ('foo', u'foo'): |
| 530 | self.check_same_msg(ExcWithOverriddenStr(msg=msg), msg) |
| 531 | |
| 532 | # if __str__ returns a non-ascii unicode string str() should fail |
| 533 | # but unicode() should return the unicode string |
| 534 | e = ExcWithOverriddenStr(msg=u'f\xf6\xf6') # no args |
| 535 | self.assertRaises(UnicodeEncodeError, str, e) |
| 536 | self.assertEqual(unicode(e), u'f\xf6\xf6') |
| 537 | |
| 538 | def test_1_arg(self): |
| 539 | """Check same msg for Exceptions with 1 arg""" |
| 540 | for arg in ('foo', u'foo'): |
| 541 | self.check_same_msg(Exception(arg), arg) |
| 542 | |
| 543 | # if __str__ is not overridden and self.args[0] is a non-ascii unicode |
| 544 | # string, str() should try to return str(self.args[0]) and fail. |
| 545 | # unicode() should return unicode(self.args[0]) and succeed. |
| 546 | e = Exception(u'f\xf6\xf6') |
| 547 | self.assertRaises(UnicodeEncodeError, str, e) |
| 548 | self.assertEqual(unicode(e), u'f\xf6\xf6') |
| 549 | |
| 550 | def test_1_arg_with_overridden___str__(self): |
| 551 | """Check same msg for exceptions with overridden __str__ and 1 arg""" |
| 552 | # when __str__ is overridden and __unicode__ is not implemented |
| 553 | # unicode(e) returns the same as unicode(e.__str__()). |
| 554 | for msg in ('foo', u'foo'): |
| 555 | self.check_same_msg(ExcWithOverriddenStr('arg', msg=msg), msg) |
| 556 | |
| 557 | # if __str__ returns a non-ascii unicode string, str() should fail |
| 558 | # but unicode() should succeed. |
| 559 | e = ExcWithOverriddenStr('arg', msg=u'f\xf6\xf6') # 1 arg |
| 560 | self.assertRaises(UnicodeEncodeError, str, e) |
| 561 | self.assertEqual(unicode(e), u'f\xf6\xf6') |
| 562 | |
| 563 | def test_many_args(self): |
| 564 | """Check same msg for Exceptions with many args""" |
| 565 | argslist = [ |
| 566 | (3, 'foo'), |
| 567 | (1, u'foo', 'bar'), |
| 568 | (4, u'f\xf6\xf6', u'bar', 'baz') |
| 569 | ] |
| 570 | # both str() and unicode() should return a repr() of the args |
| 571 | for args in argslist: |
| 572 | self.check_same_msg(Exception(*args), repr(args)) |
| 573 | |
| 574 | def test_many_args_with_overridden___str__(self): |
| 575 | """Check same msg for exceptions with overridden __str__ and many args""" |
| 576 | # if __str__ returns an ascii string / ascii unicode string |
| 577 | # both str() and unicode() should succeed |
| 578 | for msg in ('foo', u'foo'): |
| 579 | e = ExcWithOverriddenStr('arg1', u'arg2', u'f\xf6\xf6', msg=msg) |
| 580 | self.check_same_msg(e, msg) |
| 581 | |
| 582 | # if __str__ returns a non-ascii unicode string, str() should fail |
| 583 | # but unicode() should succeed |
| 584 | e = ExcWithOverriddenStr('arg1', u'f\xf6\xf6', u'arg3', # 3 args |
| 585 | msg=u'f\xf6\xf6') |
| 586 | self.assertRaises(UnicodeEncodeError, str, e) |
| 587 | self.assertEqual(unicode(e), u'f\xf6\xf6') |
| 588 | |
Benjamin Peterson | 8eeb1dc | 2010-06-28 15:36:40 +0000 | [diff] [blame] | 589 | @cpython_only |
Georg Brandl | 740cdc3 | 2009-12-28 08:34:58 +0000 | [diff] [blame] | 590 | def test_exception_with_doc(self): |
| 591 | import _testcapi |
| 592 | doc2 = "This is a test docstring." |
| 593 | doc4 = "This is another test docstring." |
| 594 | |
| 595 | self.assertRaises(SystemError, _testcapi.make_exception_with_doc, |
| 596 | "error1") |
| 597 | |
| 598 | # test basic usage of PyErr_NewException |
| 599 | error1 = _testcapi.make_exception_with_doc("_testcapi.error1") |
| 600 | self.assertIs(type(error1), type) |
| 601 | self.assertTrue(issubclass(error1, Exception)) |
| 602 | self.assertIsNone(error1.__doc__) |
| 603 | |
| 604 | # test with given docstring |
| 605 | error2 = _testcapi.make_exception_with_doc("_testcapi.error2", doc2) |
| 606 | self.assertEqual(error2.__doc__, doc2) |
| 607 | |
| 608 | # test with explicit base (without docstring) |
| 609 | error3 = _testcapi.make_exception_with_doc("_testcapi.error3", |
| 610 | base=error2) |
| 611 | self.assertTrue(issubclass(error3, error2)) |
| 612 | |
| 613 | # test with explicit base tuple |
| 614 | class C(object): |
| 615 | pass |
| 616 | error4 = _testcapi.make_exception_with_doc("_testcapi.error4", doc4, |
| 617 | (error3, C)) |
| 618 | self.assertTrue(issubclass(error4, error3)) |
| 619 | self.assertTrue(issubclass(error4, C)) |
| 620 | self.assertEqual(error4.__doc__, doc4) |
| 621 | |
| 622 | # test with explicit dictionary |
| 623 | error5 = _testcapi.make_exception_with_doc("_testcapi.error5", "", |
| 624 | error4, {'a': 1}) |
| 625 | self.assertTrue(issubclass(error5, error4)) |
| 626 | self.assertEqual(error5.a, 1) |
| 627 | self.assertEqual(error5.__doc__, "") |
| 628 | |
Ezio Melotti | f84caf4 | 2009-12-24 22:25:17 +0000 | [diff] [blame] | 629 | |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 630 | def test_main(): |
Ezio Melotti | f84caf4 | 2009-12-24 22:25:17 +0000 | [diff] [blame] | 631 | run_unittest(ExceptionTests, TestSameStrAndUnicodeMsg) |
Georg Brandl | cdcede6 | 2006-05-30 08:47:19 +0000 | [diff] [blame] | 632 | |
| 633 | if __name__ == '__main__': |
| 634 | test_main() |