| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  | import unittest | 
					
						
							|  |  |  | import __builtin__ | 
					
						
							|  |  |  | import exceptions | 
					
						
							|  |  |  | import warnings | 
					
						
							| 
									
										
										
										
											2008-09-09 00:49:16 +00:00
										 |  |  | from test.test_support import run_unittest | 
					
						
							| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  | import os | 
					
						
							| 
									
										
										
										
											2010-02-02 17:34:37 +00:00
										 |  |  | import sys | 
					
						
							| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  | from platform import system as platform_system | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-02 17:34:37 +00:00
										 |  |  | DEPRECATION_WARNINGS = ["BaseException.message has been deprecated"] | 
					
						
							| 
									
										
										
										
											2010-01-08 19:04:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-02 17:34:37 +00:00
										 |  |  | if sys.py3kwarning: | 
					
						
							|  |  |  |     DEPRECATION_WARNINGS.extend( | 
					
						
							|  |  |  |         ["exceptions must derive from BaseException", | 
					
						
							|  |  |  |          "catching classes that don't inherit from BaseException is not allowed", | 
					
						
							|  |  |  |          "__get(item|slice)__ not supported for exception classes"]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Silence Py3k and other deprecation warnings | 
					
						
							|  |  |  | def ignore_deprecation_warnings(func): | 
					
						
							|  |  |  |     """Ignore the known DeprecationWarnings.""" | 
					
						
							|  |  |  |     def wrapper(*args, **kw): | 
					
						
							|  |  |  |         with warnings.catch_warnings(): | 
					
						
							|  |  |  |             warnings.resetwarnings() | 
					
						
							|  |  |  |             for text in DEPRECATION_WARNINGS: | 
					
						
							|  |  |  |                 warnings.filterwarnings("ignore", text, DeprecationWarning) | 
					
						
							|  |  |  |             return func(*args, **kw) | 
					
						
							|  |  |  |     return wrapper | 
					
						
							| 
									
										
										
										
											2007-05-05 01:34:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  | class ExceptionClassTests(unittest.TestCase): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """Tests for anything relating to exception objects themselves (e.g.,
 | 
					
						
							|  |  |  |     inheritance hierarchy)"""
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_builtins_new_style(self): | 
					
						
							| 
									
										
										
										
											2009-06-30 22:57:08 +00:00
										 |  |  |         self.assertTrue(issubclass(Exception, object)) | 
					
						
							| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-02 17:34:37 +00:00
										 |  |  |     @ignore_deprecation_warnings | 
					
						
							| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  |     def verify_instance_interface(self, ins): | 
					
						
							| 
									
										
										
										
											2010-02-02 17:34:37 +00:00
										 |  |  |         for attr in ("args", "message", "__str__", "__repr__", "__getitem__"): | 
					
						
							|  |  |  |             self.assertTrue(hasattr(ins, attr), | 
					
						
							|  |  |  |                             "%s missing %s attribute" % | 
					
						
							| 
									
										
										
										
											2010-01-08 19:04:16 +00:00
										 |  |  |                             (ins.__class__.__name__, attr)) | 
					
						
							| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def test_inheritance(self): | 
					
						
							|  |  |  |         # Make sure the inheritance hierarchy matches the documentation | 
					
						
							|  |  |  |         exc_set = set(x for x in dir(exceptions) if not x.startswith('_')) | 
					
						
							|  |  |  |         inheritance_tree = open(os.path.join(os.path.split(__file__)[0], | 
					
						
							|  |  |  |                                                 'exception_hierarchy.txt')) | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             superclass_name = inheritance_tree.readline().rstrip() | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 last_exc = getattr(__builtin__, superclass_name) | 
					
						
							|  |  |  |             except AttributeError: | 
					
						
							|  |  |  |                 self.fail("base class %s not a built-in" % superclass_name) | 
					
						
							| 
									
										
										
										
											2010-01-23 23:04:36 +00:00
										 |  |  |             self.assertIn(superclass_name, exc_set) | 
					
						
							| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  |             exc_set.discard(superclass_name) | 
					
						
							|  |  |  |             superclasses = []  # Loop will insert base exception | 
					
						
							|  |  |  |             last_depth = 0 | 
					
						
							|  |  |  |             for exc_line in inheritance_tree: | 
					
						
							|  |  |  |                 exc_line = exc_line.rstrip() | 
					
						
							|  |  |  |                 depth = exc_line.rindex('-') | 
					
						
							|  |  |  |                 exc_name = exc_line[depth+2:]  # Slice past space | 
					
						
							|  |  |  |                 if '(' in exc_name: | 
					
						
							|  |  |  |                     paren_index = exc_name.index('(') | 
					
						
							|  |  |  |                     platform_name = exc_name[paren_index+1:-1] | 
					
						
							| 
									
										
										
										
											2006-03-01 06:10:48 +00:00
										 |  |  |                     exc_name = exc_name[:paren_index-1]  # Slice off space | 
					
						
							| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  |                     if platform_system() != platform_name: | 
					
						
							|  |  |  |                         exc_set.discard(exc_name) | 
					
						
							|  |  |  |                         continue | 
					
						
							|  |  |  |                 if '[' in exc_name: | 
					
						
							|  |  |  |                     left_bracket = exc_name.index('[') | 
					
						
							|  |  |  |                     exc_name = exc_name[:left_bracket-1]  # cover space | 
					
						
							|  |  |  |                 try: | 
					
						
							|  |  |  |                     exc = getattr(__builtin__, exc_name) | 
					
						
							|  |  |  |                 except AttributeError: | 
					
						
							|  |  |  |                     self.fail("%s not a built-in exception" % exc_name) | 
					
						
							|  |  |  |                 if last_depth < depth: | 
					
						
							|  |  |  |                     superclasses.append((last_depth, last_exc)) | 
					
						
							|  |  |  |                 elif last_depth > depth: | 
					
						
							|  |  |  |                     while superclasses[-1][0] >= depth: | 
					
						
							|  |  |  |                         superclasses.pop() | 
					
						
							| 
									
										
										
										
											2009-06-30 22:57:08 +00:00
										 |  |  |                 self.assertTrue(issubclass(exc, superclasses[-1][1]), | 
					
						
							| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  |                 "%s is not a subclass of %s" % (exc.__name__, | 
					
						
							|  |  |  |                     superclasses[-1][1].__name__)) | 
					
						
							|  |  |  |                 try:  # Some exceptions require arguments; just skip them | 
					
						
							|  |  |  |                     self.verify_instance_interface(exc()) | 
					
						
							|  |  |  |                 except TypeError: | 
					
						
							|  |  |  |                     pass | 
					
						
							| 
									
										
										
										
											2010-01-23 23:04:36 +00:00
										 |  |  |                 self.assertIn(exc_name, exc_set) | 
					
						
							| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  |                 exc_set.discard(exc_name) | 
					
						
							|  |  |  |                 last_exc = exc | 
					
						
							|  |  |  |                 last_depth = depth | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             inheritance_tree.close() | 
					
						
							| 
									
										
										
										
											2009-06-30 22:57:08 +00:00
										 |  |  |         self.assertEqual(len(exc_set), 0, "%s not accounted for" % exc_set) | 
					
						
							| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     interface_tests = ("length", "args", "message", "str", "unicode", "repr", | 
					
						
							|  |  |  |             "indexing") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def interface_test_driver(self, results): | 
					
						
							|  |  |  |         for test_name, (given, expected) in zip(self.interface_tests, results): | 
					
						
							| 
									
										
										
										
											2009-06-03 23:23:45 +00:00
										 |  |  |             self.assertEqual(given, expected, "%s: %s != %s" % (test_name, | 
					
						
							| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  |                 given, expected)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-02 17:34:37 +00:00
										 |  |  |     @ignore_deprecation_warnings | 
					
						
							| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  |     def test_interface_single_arg(self): | 
					
						
							|  |  |  |         # Make sure interface works properly when given a single argument | 
					
						
							|  |  |  |         arg = "spam" | 
					
						
							|  |  |  |         exc = Exception(arg) | 
					
						
							| 
									
										
										
										
											2010-02-02 17:34:37 +00:00
										 |  |  |         results = ([len(exc.args), 1], [exc.args[0], arg], [exc.message, arg], | 
					
						
							|  |  |  |                    [str(exc), str(arg)], [unicode(exc), unicode(arg)], | 
					
						
							|  |  |  |                    [repr(exc), exc.__class__.__name__ + repr(exc.args)], | 
					
						
							|  |  |  |                    [exc[0], arg]) | 
					
						
							|  |  |  |         self.interface_test_driver(results) | 
					
						
							| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-02 17:34:37 +00:00
										 |  |  |     @ignore_deprecation_warnings | 
					
						
							| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  |     def test_interface_multi_arg(self): | 
					
						
							|  |  |  |         # Make sure interface correct when multiple arguments given | 
					
						
							|  |  |  |         arg_count = 3 | 
					
						
							|  |  |  |         args = tuple(range(arg_count)) | 
					
						
							|  |  |  |         exc = Exception(*args) | 
					
						
							| 
									
										
										
										
											2010-02-02 17:34:37 +00:00
										 |  |  |         results = ([len(exc.args), arg_count], [exc.args, args], | 
					
						
							|  |  |  |                    [exc.message, ''], [str(exc), str(args)], | 
					
						
							|  |  |  |                    [unicode(exc), unicode(args)], | 
					
						
							|  |  |  |                    [repr(exc), exc.__class__.__name__ + repr(exc.args)], | 
					
						
							|  |  |  |                    [exc[-1], args[-1]]) | 
					
						
							|  |  |  |         self.interface_test_driver(results) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @ignore_deprecation_warnings | 
					
						
							| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  |     def test_interface_no_arg(self): | 
					
						
							|  |  |  |         # Make sure that with no args that interface is correct | 
					
						
							|  |  |  |         exc = Exception() | 
					
						
							| 
									
										
										
										
											2010-02-02 17:34:37 +00:00
										 |  |  |         results = ([len(exc.args), 0], [exc.args, tuple()], | 
					
						
							|  |  |  |                    [exc.message, ''], | 
					
						
							|  |  |  |                    [str(exc), ''], [unicode(exc), u''], | 
					
						
							|  |  |  |                    [repr(exc), exc.__class__.__name__ + '()'], [True, True]) | 
					
						
							|  |  |  |         self.interface_test_driver(results) | 
					
						
							| 
									
										
										
										
											2007-05-05 01:34:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_message_deprecation(self): | 
					
						
							|  |  |  |         # As of Python 2.6, BaseException.message is deprecated. | 
					
						
							| 
									
										
										
										
											2008-09-09 00:49:16 +00:00
										 |  |  |         with warnings.catch_warnings(): | 
					
						
							| 
									
										
										
										
											2007-05-05 01:34:02 +00:00
										 |  |  |             warnings.resetwarnings() | 
					
						
							|  |  |  |             warnings.filterwarnings('error') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 BaseException().message | 
					
						
							|  |  |  |             except DeprecationWarning: | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 self.fail("BaseException.message not deprecated") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | class UsageTests(unittest.TestCase): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """Test usage of exceptions""" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-23 14:28:25 +00:00
										 |  |  |     def raise_fails(self, object_): | 
					
						
							|  |  |  |         """Make sure that raising 'object_' triggers a TypeError.""" | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             raise object_ | 
					
						
							|  |  |  |         except TypeError: | 
					
						
							|  |  |  |             return  # What is expected. | 
					
						
							|  |  |  |         self.fail("TypeError expected for raising %s" % type(object_)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def catch_fails(self, object_): | 
					
						
							|  |  |  |         """Catching 'object_' should raise a TypeError.""" | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 raise StandardError | 
					
						
							|  |  |  |             except object_: | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  |         except TypeError: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |         except StandardError: | 
					
						
							|  |  |  |             self.fail("TypeError expected when catching %s" % type(object_)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 raise StandardError | 
					
						
							|  |  |  |             except (object_,): | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  |         except TypeError: | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  |         except StandardError: | 
					
						
							|  |  |  |             self.fail("TypeError expected when catching %s as specified in a " | 
					
						
							|  |  |  |                         "tuple" % type(object_)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-02 17:34:37 +00:00
										 |  |  |     @ignore_deprecation_warnings | 
					
						
							| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  |     def test_raise_classic(self): | 
					
						
							| 
									
										
										
										
											2007-01-30 21:34:36 +00:00
										 |  |  |         # Raising a classic class is okay (for now). | 
					
						
							| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  |         class ClassicClass: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             raise ClassicClass | 
					
						
							|  |  |  |         except ClassicClass: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |         except: | 
					
						
							|  |  |  |             self.fail("unable to raise classic class") | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             raise ClassicClass() | 
					
						
							|  |  |  |         except ClassicClass: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |         except: | 
					
						
							| 
									
										
										
										
											2010-02-02 17:34:37 +00:00
										 |  |  |             self.fail("unable to raise classic class instance") | 
					
						
							| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def test_raise_new_style_non_exception(self): | 
					
						
							| 
									
										
										
										
											2007-01-30 21:34:36 +00:00
										 |  |  |         # You cannot raise a new-style class that does not inherit from | 
					
						
							|  |  |  |         # BaseException; the ability was not possible until BaseException's | 
					
						
							|  |  |  |         # introduction so no need to support new-style objects that do not | 
					
						
							|  |  |  |         # inherit from it. | 
					
						
							| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  |         class NewStyleClass(object): | 
					
						
							|  |  |  |             pass | 
					
						
							| 
									
										
										
										
											2007-02-23 14:28:25 +00:00
										 |  |  |         self.raise_fails(NewStyleClass) | 
					
						
							|  |  |  |         self.raise_fails(NewStyleClass()) | 
					
						
							| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def test_raise_string(self): | 
					
						
							| 
									
										
										
										
											2007-01-30 21:34:36 +00:00
										 |  |  |         # Raising a string raises TypeError. | 
					
						
							| 
									
										
										
										
											2007-02-23 14:28:25 +00:00
										 |  |  |         self.raise_fails("spam") | 
					
						
							| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def test_catch_string(self): | 
					
						
							| 
									
										
										
										
											2007-01-30 21:34:36 +00:00
										 |  |  |         # Catching a string should trigger a DeprecationWarning. | 
					
						
							| 
									
										
										
										
											2008-09-09 00:49:16 +00:00
										 |  |  |         with warnings.catch_warnings(): | 
					
						
							| 
									
										
										
										
											2007-01-30 21:34:36 +00:00
										 |  |  |             warnings.resetwarnings() | 
					
						
							|  |  |  |             warnings.filterwarnings("error") | 
					
						
							|  |  |  |             str_exc = "spam" | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 try: | 
					
						
							|  |  |  |                     raise StandardError | 
					
						
							|  |  |  |                 except str_exc: | 
					
						
							|  |  |  |                     pass | 
					
						
							|  |  |  |             except DeprecationWarning: | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  |             except StandardError: | 
					
						
							|  |  |  |                 self.fail("catching a string exception did not raise " | 
					
						
							|  |  |  |                             "DeprecationWarning") | 
					
						
							|  |  |  |             # Make sure that even if the string exception is listed in a tuple | 
					
						
							|  |  |  |             # that a warning is raised. | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 try: | 
					
						
							|  |  |  |                     raise StandardError | 
					
						
							|  |  |  |                 except (AssertionError, str_exc): | 
					
						
							|  |  |  |                     pass | 
					
						
							|  |  |  |             except DeprecationWarning: | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  |             except StandardError: | 
					
						
							|  |  |  |                 self.fail("catching a string exception specified in a tuple did " | 
					
						
							|  |  |  |                             "not raise DeprecationWarning") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-01 04:25:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def test_main(): | 
					
						
							|  |  |  |     run_unittest(ExceptionClassTests, UsageTests) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if __name__ == '__main__': | 
					
						
							|  |  |  |     test_main() |