Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 1 | import sys |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2 | import types |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 3 | import unittest |
| 4 | import inspect |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 5 | import datetime |
Guido van Rossum | 813b0e5 | 2007-05-21 18:11:34 +0000 | [diff] [blame] | 6 | import collections |
Christian Heimes | a3538eb | 2007-11-06 11:44:48 +0000 | [diff] [blame] | 7 | from os.path import normcase |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 8 | |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 9 | from test.support import TESTFN, run_unittest |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 10 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 11 | from test import inspect_fodder as mod |
| 12 | from test import inspect_fodder2 as mod2 |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 13 | |
R. David Murray | 74b8924 | 2009-05-13 17:33:03 +0000 | [diff] [blame] | 14 | # C module for test_findsource_binary |
R. David Murray | b565577 | 2009-05-14 16:17:50 +0000 | [diff] [blame] | 15 | import unicodedata |
R. David Murray | 74b8924 | 2009-05-13 17:33:03 +0000 | [diff] [blame] | 16 | |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 17 | # Functions tested in this suite: |
| 18 | # ismodule, isclass, ismethod, isfunction, istraceback, isframe, iscode, |
Christian Heimes | 7131fd9 | 2008-02-19 14:21:46 +0000 | [diff] [blame] | 19 | # isbuiltin, isroutine, isgenerator, isgeneratorfunction, getmembers, |
| 20 | # getdoc, getfile, getmodule, getsourcefile, getcomments, getsource, |
| 21 | # getclasstree, getargspec, getargvalues, formatargspec, formatargvalues, |
| 22 | # currentframe, stack, trace, isdatadescriptor |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 23 | |
Nick Coghlan | f088e5e | 2008-12-14 11:50:48 +0000 | [diff] [blame] | 24 | # NOTE: There are some additional tests relating to interaction with |
| 25 | # zipimport in the test_zipimport_support test module. |
| 26 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 27 | modfile = mod.__file__ |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 28 | if modfile.endswith(('c', 'o')): |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 29 | modfile = modfile[:-1] |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 30 | |
Christian Heimes | a3538eb | 2007-11-06 11:44:48 +0000 | [diff] [blame] | 31 | # Normalize file names: on Windows, the case of file names of compiled |
| 32 | # modules depends on the path used to start the python executable. |
| 33 | modfile = normcase(modfile) |
| 34 | |
| 35 | def revise(filename, *args): |
| 36 | return (normcase(filename),) + args |
| 37 | |
Georg Brandl | 1a3284e | 2007-12-02 09:40:06 +0000 | [diff] [blame] | 38 | import builtins |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 39 | |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 40 | try: |
| 41 | 1/0 |
| 42 | except: |
Guido van Rossum | e7ba495 | 2007-06-06 23:52:48 +0000 | [diff] [blame] | 43 | tb = sys.exc_info()[2] |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 44 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 45 | git = mod.StupidGit() |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 46 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 47 | class IsTestBase(unittest.TestCase): |
| 48 | predicates = set([inspect.isbuiltin, inspect.isclass, inspect.iscode, |
| 49 | inspect.isframe, inspect.isfunction, inspect.ismethod, |
Christian Heimes | 7131fd9 | 2008-02-19 14:21:46 +0000 | [diff] [blame] | 50 | inspect.ismodule, inspect.istraceback, |
| 51 | inspect.isgenerator, inspect.isgeneratorfunction]) |
Tim Peters | 5a9fb3c | 2005-01-07 16:01:32 +0000 | [diff] [blame] | 52 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 53 | def istest(self, predicate, exp): |
| 54 | obj = eval(exp) |
Georg Brandl | ab91fde | 2009-08-13 08:51:18 +0000 | [diff] [blame^] | 55 | self.assertTrue(predicate(obj), '%s(%s)' % (predicate.__name__, exp)) |
Tim Peters | 5a9fb3c | 2005-01-07 16:01:32 +0000 | [diff] [blame] | 56 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 57 | for other in self.predicates - set([predicate]): |
Christian Heimes | 7131fd9 | 2008-02-19 14:21:46 +0000 | [diff] [blame] | 58 | if predicate == inspect.isgeneratorfunction and\ |
| 59 | other == inspect.isfunction: |
| 60 | continue |
Georg Brandl | ab91fde | 2009-08-13 08:51:18 +0000 | [diff] [blame^] | 61 | self.assertFalse(other(obj), 'not %s(%s)' % (other.__name__, exp)) |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 62 | |
Christian Heimes | 7131fd9 | 2008-02-19 14:21:46 +0000 | [diff] [blame] | 63 | def generator_function_example(self): |
| 64 | for i in range(2): |
| 65 | yield i |
| 66 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 67 | class TestPredicates(IsTestBase): |
Christian Heimes | 227c800 | 2008-03-03 20:34:40 +0000 | [diff] [blame] | 68 | def test_sixteen(self): |
Guido van Rossum | c1f779c | 2007-07-03 08:25:58 +0000 | [diff] [blame] | 69 | count = len([x for x in dir(inspect) if x.startswith('is')]) |
Christian Heimes | 7131fd9 | 2008-02-19 14:21:46 +0000 | [diff] [blame] | 70 | # This test is here for remember you to update Doc/library/inspect.rst |
Christian Heimes | 7864476 | 2008-03-04 23:39:23 +0000 | [diff] [blame] | 71 | # which claims there are 16 such functions |
Christian Heimes | 227c800 | 2008-03-03 20:34:40 +0000 | [diff] [blame] | 72 | expected = 16 |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 73 | err_msg = "There are %d (not %d) is* functions" % (count, expected) |
| 74 | self.assertEqual(count, expected, err_msg) |
Tim Peters | 5a9fb3c | 2005-01-07 16:01:32 +0000 | [diff] [blame] | 75 | |
Christian Heimes | 7131fd9 | 2008-02-19 14:21:46 +0000 | [diff] [blame] | 76 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 77 | def test_excluding_predicates(self): |
| 78 | self.istest(inspect.isbuiltin, 'sys.exit') |
| 79 | self.istest(inspect.isbuiltin, '[].append') |
Neal Norwitz | 221085d | 2007-02-25 20:55:47 +0000 | [diff] [blame] | 80 | self.istest(inspect.iscode, 'mod.spam.__code__') |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 81 | self.istest(inspect.isframe, 'tb.tb_frame') |
| 82 | self.istest(inspect.isfunction, 'mod.spam') |
Christian Heimes | 4a22b5d | 2007-11-25 09:39:14 +0000 | [diff] [blame] | 83 | self.istest(inspect.isfunction, 'mod.StupidGit.abuse') |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 84 | self.istest(inspect.ismethod, 'git.argue') |
| 85 | self.istest(inspect.ismodule, 'mod') |
| 86 | self.istest(inspect.istraceback, 'tb') |
Guido van Rossum | 813b0e5 | 2007-05-21 18:11:34 +0000 | [diff] [blame] | 87 | self.istest(inspect.isdatadescriptor, 'collections.defaultdict.default_factory') |
Christian Heimes | 7131fd9 | 2008-02-19 14:21:46 +0000 | [diff] [blame] | 88 | self.istest(inspect.isgenerator, '(x for x in range(2))') |
| 89 | self.istest(inspect.isgeneratorfunction, 'generator_function_example') |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 90 | if hasattr(types, 'GetSetDescriptorType'): |
| 91 | self.istest(inspect.isgetsetdescriptor, |
| 92 | 'type(tb.tb_frame).f_locals') |
| 93 | else: |
Georg Brandl | ab91fde | 2009-08-13 08:51:18 +0000 | [diff] [blame^] | 94 | self.assertFalse(inspect.isgetsetdescriptor(type(tb.tb_frame).f_locals)) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 95 | if hasattr(types, 'MemberDescriptorType'): |
| 96 | self.istest(inspect.ismemberdescriptor, 'datetime.timedelta.days') |
| 97 | else: |
Georg Brandl | ab91fde | 2009-08-13 08:51:18 +0000 | [diff] [blame^] | 98 | self.assertFalse(inspect.ismemberdescriptor(datetime.timedelta.days)) |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 99 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 100 | def test_isroutine(self): |
Georg Brandl | ab91fde | 2009-08-13 08:51:18 +0000 | [diff] [blame^] | 101 | self.assertTrue(inspect.isroutine(mod.spam)) |
| 102 | self.assertTrue(inspect.isroutine([].count)) |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 103 | |
Benjamin Peterson | c465600 | 2009-01-17 22:41:18 +0000 | [diff] [blame] | 104 | def test_isclass(self): |
| 105 | self.istest(inspect.isclass, 'mod.StupidGit') |
| 106 | self.assertTrue(inspect.isclass(list)) |
| 107 | |
| 108 | class CustomGetattr(object): |
| 109 | def __getattr__(self, attr): |
| 110 | return None |
| 111 | self.assertFalse(inspect.isclass(CustomGetattr())) |
| 112 | |
Benjamin Peterson | 058e31e | 2009-01-16 03:54:08 +0000 | [diff] [blame] | 113 | def test_get_slot_members(self): |
| 114 | class C(object): |
| 115 | __slots__ = ("a", "b") |
| 116 | |
| 117 | x = C() |
| 118 | x.a = 42 |
| 119 | members = dict(inspect.getmembers(x)) |
Georg Brandl | ab91fde | 2009-08-13 08:51:18 +0000 | [diff] [blame^] | 120 | self.assertTrue('a' in members) |
| 121 | self.assertTrue('b' not in members) |
Benjamin Peterson | 058e31e | 2009-01-16 03:54:08 +0000 | [diff] [blame] | 122 | |
| 123 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 124 | class TestInterpreterStack(IsTestBase): |
| 125 | def __init__(self, *args, **kwargs): |
| 126 | unittest.TestCase.__init__(self, *args, **kwargs) |
Tim Peters | 5a9fb3c | 2005-01-07 16:01:32 +0000 | [diff] [blame] | 127 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 128 | git.abuse(7, 8, 9) |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 129 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 130 | def test_abuse_done(self): |
| 131 | self.istest(inspect.istraceback, 'git.ex[2]') |
| 132 | self.istest(inspect.isframe, 'mod.fr') |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 133 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 134 | def test_stack(self): |
Georg Brandl | ab91fde | 2009-08-13 08:51:18 +0000 | [diff] [blame^] | 135 | self.assertTrue(len(mod.st) >= 5) |
Christian Heimes | a3538eb | 2007-11-06 11:44:48 +0000 | [diff] [blame] | 136 | self.assertEqual(revise(*mod.st[0][1:]), |
Tim Peters | 5a9fb3c | 2005-01-07 16:01:32 +0000 | [diff] [blame] | 137 | (modfile, 16, 'eggs', [' st = inspect.stack()\n'], 0)) |
Christian Heimes | a3538eb | 2007-11-06 11:44:48 +0000 | [diff] [blame] | 138 | self.assertEqual(revise(*mod.st[1][1:]), |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 139 | (modfile, 9, 'spam', [' eggs(b + d, c + f)\n'], 0)) |
Christian Heimes | a3538eb | 2007-11-06 11:44:48 +0000 | [diff] [blame] | 140 | self.assertEqual(revise(*mod.st[2][1:]), |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 141 | (modfile, 43, 'argue', [' spam(a, b, c)\n'], 0)) |
Christian Heimes | a3538eb | 2007-11-06 11:44:48 +0000 | [diff] [blame] | 142 | self.assertEqual(revise(*mod.st[3][1:]), |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 143 | (modfile, 39, 'abuse', [' self.argue(a, b, c)\n'], 0)) |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 144 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 145 | def test_trace(self): |
| 146 | self.assertEqual(len(git.tr), 3) |
Christian Heimes | a3538eb | 2007-11-06 11:44:48 +0000 | [diff] [blame] | 147 | self.assertEqual(revise(*git.tr[0][1:]), |
| 148 | (modfile, 43, 'argue', [' spam(a, b, c)\n'], 0)) |
| 149 | self.assertEqual(revise(*git.tr[1][1:]), |
| 150 | (modfile, 9, 'spam', [' eggs(b + d, c + f)\n'], 0)) |
| 151 | self.assertEqual(revise(*git.tr[2][1:]), |
| 152 | (modfile, 18, 'eggs', [' q = y / 0\n'], 0)) |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 153 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 154 | def test_frame(self): |
| 155 | args, varargs, varkw, locals = inspect.getargvalues(mod.fr) |
| 156 | self.assertEqual(args, ['x', 'y']) |
| 157 | self.assertEqual(varargs, None) |
| 158 | self.assertEqual(varkw, None) |
| 159 | self.assertEqual(locals, {'x': 11, 'p': 11, 'y': 14}) |
| 160 | self.assertEqual(inspect.formatargvalues(args, varargs, varkw, locals), |
| 161 | '(x=11, y=14)') |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 162 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 163 | def test_previous_frame(self): |
| 164 | args, varargs, varkw, locals = inspect.getargvalues(mod.fr.f_back) |
Guido van Rossum | 1bc535d | 2007-05-15 18:46:22 +0000 | [diff] [blame] | 165 | self.assertEqual(args, ['a', 'b', 'c', 'd', 'e', 'f']) |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 166 | self.assertEqual(varargs, 'g') |
| 167 | self.assertEqual(varkw, 'h') |
| 168 | self.assertEqual(inspect.formatargvalues(args, varargs, varkw, locals), |
Guido van Rossum | 1bc535d | 2007-05-15 18:46:22 +0000 | [diff] [blame] | 169 | '(a=7, b=8, c=9, d=3, e=4, f=5, *g=(), **h={})') |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 170 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 171 | class GetSourceBase(unittest.TestCase): |
| 172 | # Subclasses must override. |
| 173 | fodderFile = None |
Tim Peters | 5a9fb3c | 2005-01-07 16:01:32 +0000 | [diff] [blame] | 174 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 175 | def __init__(self, *args, **kwargs): |
| 176 | unittest.TestCase.__init__(self, *args, **kwargs) |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 177 | |
Philip Jenvey | a27c5bd | 2009-05-28 06:09:08 +0000 | [diff] [blame] | 178 | with open(inspect.getsourcefile(self.fodderFile)) as fp: |
| 179 | self.source = fp.read() |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 180 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 181 | def sourcerange(self, top, bottom): |
| 182 | lines = self.source.split("\n") |
| 183 | return "\n".join(lines[top-1:bottom]) + "\n" |
Tim Peters | e0b2d7a | 2001-09-22 06:10:55 +0000 | [diff] [blame] | 184 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 185 | def assertSourceEqual(self, obj, top, bottom): |
| 186 | self.assertEqual(inspect.getsource(obj), |
| 187 | self.sourcerange(top, bottom)) |
Tim Peters | 5a9fb3c | 2005-01-07 16:01:32 +0000 | [diff] [blame] | 188 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 189 | class TestRetrievingSourceCode(GetSourceBase): |
| 190 | fodderFile = mod |
Tim Peters | 5a9fb3c | 2005-01-07 16:01:32 +0000 | [diff] [blame] | 191 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 192 | def test_getclasses(self): |
| 193 | classes = inspect.getmembers(mod, inspect.isclass) |
| 194 | self.assertEqual(classes, |
| 195 | [('FesteringGob', mod.FesteringGob), |
| 196 | ('MalodorousPervert', mod.MalodorousPervert), |
| 197 | ('ParrotDroppings', mod.ParrotDroppings), |
| 198 | ('StupidGit', mod.StupidGit)]) |
| 199 | tree = inspect.getclasstree([cls[1] for cls in classes], 1) |
| 200 | self.assertEqual(tree, |
Thomas Wouters | 725af87 | 2006-04-15 09:13:19 +0000 | [diff] [blame] | 201 | [(object, ()), |
| 202 | [(mod.ParrotDroppings, (object,)), |
| 203 | (mod.StupidGit, (object,)), |
| 204 | [(mod.MalodorousPervert, (mod.StupidGit,)), |
| 205 | [(mod.FesteringGob, (mod.MalodorousPervert, |
| 206 | mod.ParrotDroppings)) |
| 207 | ] |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 208 | ] |
| 209 | ] |
| 210 | ]) |
Tim Peters | 5a9fb3c | 2005-01-07 16:01:32 +0000 | [diff] [blame] | 211 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 212 | def test_getfunctions(self): |
| 213 | functions = inspect.getmembers(mod, inspect.isfunction) |
| 214 | self.assertEqual(functions, [('eggs', mod.eggs), |
| 215 | ('spam', mod.spam)]) |
Johannes Gijsbers | c473c99 | 2004-08-18 12:40:31 +0000 | [diff] [blame] | 216 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 217 | def test_getdoc(self): |
| 218 | self.assertEqual(inspect.getdoc(mod), 'A module docstring.') |
| 219 | self.assertEqual(inspect.getdoc(mod.StupidGit), |
| 220 | 'A longer,\n\nindented\n\ndocstring.') |
| 221 | self.assertEqual(inspect.getdoc(git.abuse), |
| 222 | 'Another\n\ndocstring\n\ncontaining\n\ntabs') |
Johannes Gijsbers | c473c99 | 2004-08-18 12:40:31 +0000 | [diff] [blame] | 223 | |
Georg Brandl | 0c77a82 | 2008-06-10 16:37:50 +0000 | [diff] [blame] | 224 | def test_cleandoc(self): |
| 225 | self.assertEqual(inspect.cleandoc('An\n indented\n docstring.'), |
| 226 | 'An\nindented\ndocstring.') |
| 227 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 228 | def test_getcomments(self): |
| 229 | self.assertEqual(inspect.getcomments(mod), '# line 1\n') |
| 230 | self.assertEqual(inspect.getcomments(mod.StupidGit), '# line 20\n') |
Johannes Gijsbers | c473c99 | 2004-08-18 12:40:31 +0000 | [diff] [blame] | 231 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 232 | def test_getmodule(self): |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 233 | # Check actual module |
| 234 | self.assertEqual(inspect.getmodule(mod), mod) |
| 235 | # Check class (uses __module__ attribute) |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 236 | self.assertEqual(inspect.getmodule(mod.StupidGit), mod) |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 237 | # Check a method (no __module__ attribute, falls back to filename) |
| 238 | self.assertEqual(inspect.getmodule(mod.StupidGit.abuse), mod) |
| 239 | # Do it again (check the caching isn't broken) |
| 240 | self.assertEqual(inspect.getmodule(mod.StupidGit.abuse), mod) |
| 241 | # Check a builtin |
Georg Brandl | 1a3284e | 2007-12-02 09:40:06 +0000 | [diff] [blame] | 242 | self.assertEqual(inspect.getmodule(str), sys.modules["builtins"]) |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 243 | # Check filename override |
| 244 | self.assertEqual(inspect.getmodule(None, modfile), mod) |
Johannes Gijsbers | c473c99 | 2004-08-18 12:40:31 +0000 | [diff] [blame] | 245 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 246 | def test_getsource(self): |
| 247 | self.assertSourceEqual(git.abuse, 29, 39) |
| 248 | self.assertSourceEqual(mod.StupidGit, 21, 46) |
Johannes Gijsbers | c473c99 | 2004-08-18 12:40:31 +0000 | [diff] [blame] | 249 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 250 | def test_getsourcefile(self): |
Christian Heimes | a3538eb | 2007-11-06 11:44:48 +0000 | [diff] [blame] | 251 | self.assertEqual(normcase(inspect.getsourcefile(mod.spam)), modfile) |
| 252 | self.assertEqual(normcase(inspect.getsourcefile(git.abuse)), modfile) |
Johannes Gijsbers | c473c99 | 2004-08-18 12:40:31 +0000 | [diff] [blame] | 253 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 254 | def test_getfile(self): |
| 255 | self.assertEqual(inspect.getfile(mod.StupidGit), mod.__file__) |
Johannes Gijsbers | c473c99 | 2004-08-18 12:40:31 +0000 | [diff] [blame] | 256 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 257 | def test_getmodule_recursion(self): |
Christian Heimes | 45f9af3 | 2007-11-27 21:50:00 +0000 | [diff] [blame] | 258 | from types import ModuleType |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 259 | name = '__inspect_dummy' |
Christian Heimes | 45f9af3 | 2007-11-27 21:50:00 +0000 | [diff] [blame] | 260 | m = sys.modules[name] = ModuleType(name) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 261 | m.__file__ = "<string>" # hopefully not a real filename... |
| 262 | m.__loader__ = "dummy" # pretend the filename is understood by a loader |
Georg Brandl | 7cae87c | 2006-09-06 06:51:57 +0000 | [diff] [blame] | 263 | exec("def x(): pass", m.__dict__) |
Neal Norwitz | 221085d | 2007-02-25 20:55:47 +0000 | [diff] [blame] | 264 | self.assertEqual(inspect.getsourcefile(m.x.__code__), '<string>') |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 265 | del sys.modules[name] |
| 266 | inspect.getmodule(compile('a=10','','single')) |
| 267 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 268 | class TestDecorators(GetSourceBase): |
| 269 | fodderFile = mod2 |
Johannes Gijsbers | c473c99 | 2004-08-18 12:40:31 +0000 | [diff] [blame] | 270 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 271 | def test_wrapped_decorator(self): |
Christian Heimes | 09aaa88 | 2008-02-23 15:01:06 +0000 | [diff] [blame] | 272 | self.assertSourceEqual(mod2.wrapped, 14, 17) |
Johannes Gijsbers | c473c99 | 2004-08-18 12:40:31 +0000 | [diff] [blame] | 273 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 274 | def test_replacing_decorator(self): |
| 275 | self.assertSourceEqual(mod2.gone, 9, 10) |
Tim Peters | e0b2d7a | 2001-09-22 06:10:55 +0000 | [diff] [blame] | 276 | |
Johannes Gijsbers | 1542f34 | 2004-12-12 16:46:28 +0000 | [diff] [blame] | 277 | class TestOneliners(GetSourceBase): |
| 278 | fodderFile = mod2 |
| 279 | def test_oneline_lambda(self): |
| 280 | # Test inspect.getsource with a one-line lambda function. |
| 281 | self.assertSourceEqual(mod2.oll, 25, 25) |
Tim Peters | 5a9fb3c | 2005-01-07 16:01:32 +0000 | [diff] [blame] | 282 | |
Johannes Gijsbers | 1542f34 | 2004-12-12 16:46:28 +0000 | [diff] [blame] | 283 | def test_threeline_lambda(self): |
| 284 | # Test inspect.getsource with a three-line lambda function, |
| 285 | # where the second and third lines are _not_ indented. |
Tim Peters | 5a9fb3c | 2005-01-07 16:01:32 +0000 | [diff] [blame] | 286 | self.assertSourceEqual(mod2.tll, 28, 30) |
| 287 | |
Johannes Gijsbers | 1542f34 | 2004-12-12 16:46:28 +0000 | [diff] [blame] | 288 | def test_twoline_indented_lambda(self): |
| 289 | # Test inspect.getsource with a two-line lambda function, |
| 290 | # where the second line _is_ indented. |
| 291 | self.assertSourceEqual(mod2.tlli, 33, 34) |
Tim Peters | 5a9fb3c | 2005-01-07 16:01:32 +0000 | [diff] [blame] | 292 | |
Johannes Gijsbers | 1542f34 | 2004-12-12 16:46:28 +0000 | [diff] [blame] | 293 | def test_onelinefunc(self): |
| 294 | # Test inspect.getsource with a regular one-line function. |
| 295 | self.assertSourceEqual(mod2.onelinefunc, 37, 37) |
Tim Peters | 5a9fb3c | 2005-01-07 16:01:32 +0000 | [diff] [blame] | 296 | |
Johannes Gijsbers | 1542f34 | 2004-12-12 16:46:28 +0000 | [diff] [blame] | 297 | def test_manyargs(self): |
| 298 | # Test inspect.getsource with a regular function where |
| 299 | # the arguments are on two lines and _not_ indented and |
| 300 | # the body on the second line with the last arguments. |
| 301 | self.assertSourceEqual(mod2.manyargs, 40, 41) |
Tim Peters | 5a9fb3c | 2005-01-07 16:01:32 +0000 | [diff] [blame] | 302 | |
Johannes Gijsbers | 1542f34 | 2004-12-12 16:46:28 +0000 | [diff] [blame] | 303 | def test_twolinefunc(self): |
| 304 | # Test inspect.getsource with a regular function where |
| 305 | # the body is on two lines, following the argument list and |
| 306 | # continued on the next line by a \\. |
| 307 | self.assertSourceEqual(mod2.twolinefunc, 44, 45) |
Tim Peters | 5a9fb3c | 2005-01-07 16:01:32 +0000 | [diff] [blame] | 308 | |
Johannes Gijsbers | 1542f34 | 2004-12-12 16:46:28 +0000 | [diff] [blame] | 309 | def test_lambda_in_list(self): |
| 310 | # Test inspect.getsource with a one-line lambda function |
| 311 | # defined in a list, indented. |
| 312 | self.assertSourceEqual(mod2.a[1], 49, 49) |
Tim Peters | 5a9fb3c | 2005-01-07 16:01:32 +0000 | [diff] [blame] | 313 | |
Johannes Gijsbers | 1542f34 | 2004-12-12 16:46:28 +0000 | [diff] [blame] | 314 | def test_anonymous(self): |
| 315 | # Test inspect.getsource with a lambda function defined |
| 316 | # as argument to another function. |
| 317 | self.assertSourceEqual(mod2.anonymous, 55, 55) |
| 318 | |
Johannes Gijsbers | a5855d5 | 2005-03-12 16:37:11 +0000 | [diff] [blame] | 319 | class TestBuggyCases(GetSourceBase): |
| 320 | fodderFile = mod2 |
| 321 | |
| 322 | def test_with_comment(self): |
| 323 | self.assertSourceEqual(mod2.with_comment, 58, 59) |
| 324 | |
| 325 | def test_multiline_sig(self): |
| 326 | self.assertSourceEqual(mod2.multiline_sig[0], 63, 64) |
| 327 | |
Armin Rigo | dd5c023 | 2005-09-25 11:45:45 +0000 | [diff] [blame] | 328 | def test_nested_class(self): |
| 329 | self.assertSourceEqual(mod2.func69().func71, 71, 72) |
| 330 | |
| 331 | def test_one_liner_followed_by_non_name(self): |
| 332 | self.assertSourceEqual(mod2.func77, 77, 77) |
| 333 | |
| 334 | def test_one_liner_dedent_non_name(self): |
| 335 | self.assertSourceEqual(mod2.cls82.func83, 83, 83) |
| 336 | |
| 337 | def test_with_comment_instead_of_docstring(self): |
| 338 | self.assertSourceEqual(mod2.func88, 88, 90) |
| 339 | |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 340 | def test_method_in_dynamic_class(self): |
| 341 | self.assertSourceEqual(mod2.method_in_dynamic_class, 95, 97) |
| 342 | |
R. David Murray | b565577 | 2009-05-14 16:17:50 +0000 | [diff] [blame] | 343 | @unittest.skipIf( |
| 344 | not hasattr(unicodedata, '__file__') or |
| 345 | unicodedata.__file__[-4:] in (".pyc", ".pyo"), |
| 346 | "unicodedata is not an external binary module") |
R. David Murray | 74b8924 | 2009-05-13 17:33:03 +0000 | [diff] [blame] | 347 | def test_findsource_binary(self): |
R. David Murray | b565577 | 2009-05-14 16:17:50 +0000 | [diff] [blame] | 348 | self.assertRaises(IOError, inspect.getsource, unicodedata) |
| 349 | self.assertRaises(IOError, inspect.findsource, unicodedata) |
R. David Murray | 74b8924 | 2009-05-13 17:33:03 +0000 | [diff] [blame] | 350 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 351 | # Helper for testing classify_class_attrs. |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 352 | def attrs_wo_objs(cls): |
| 353 | return [t[:3] for t in inspect.classify_class_attrs(cls)] |
| 354 | |
Tim Peters | 5a9fb3c | 2005-01-07 16:01:32 +0000 | [diff] [blame] | 355 | class TestClassesAndFunctions(unittest.TestCase): |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 356 | def test_newstyle_mro(self): |
| 357 | # The same w/ new-class MRO. |
| 358 | class A(object): pass |
| 359 | class B(A): pass |
| 360 | class C(A): pass |
| 361 | class D(B, C): pass |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 362 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 363 | expected = (D, B, C, A, object) |
| 364 | got = inspect.getmro(D) |
| 365 | self.assertEqual(expected, got) |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 366 | |
Christian Heimes | 3795b53 | 2007-11-08 13:48:53 +0000 | [diff] [blame] | 367 | def assertArgSpecEquals(self, routine, args_e, varargs_e=None, |
| 368 | varkw_e=None, defaults_e=None, formatted=None): |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 369 | args, varargs, varkw, defaults = inspect.getargspec(routine) |
| 370 | self.assertEqual(args, args_e) |
| 371 | self.assertEqual(varargs, varargs_e) |
| 372 | self.assertEqual(varkw, varkw_e) |
| 373 | self.assertEqual(defaults, defaults_e) |
| 374 | if formatted is not None: |
| 375 | self.assertEqual(inspect.formatargspec(args, varargs, varkw, defaults), |
| 376 | formatted) |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 377 | |
Christian Heimes | 3795b53 | 2007-11-08 13:48:53 +0000 | [diff] [blame] | 378 | def assertFullArgSpecEquals(self, routine, args_e, varargs_e=None, |
| 379 | varkw_e=None, defaults_e=None, |
| 380 | kwonlyargs_e=[], kwonlydefaults_e=None, |
| 381 | ann_e={}, formatted=None): |
| 382 | args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, ann = \ |
| 383 | inspect.getfullargspec(routine) |
| 384 | self.assertEqual(args, args_e) |
| 385 | self.assertEqual(varargs, varargs_e) |
| 386 | self.assertEqual(varkw, varkw_e) |
| 387 | self.assertEqual(defaults, defaults_e) |
| 388 | self.assertEqual(kwonlyargs, kwonlyargs_e) |
| 389 | self.assertEqual(kwonlydefaults, kwonlydefaults_e) |
| 390 | self.assertEqual(ann, ann_e) |
| 391 | if formatted is not None: |
| 392 | self.assertEqual(inspect.formatargspec(args, varargs, varkw, defaults, |
| 393 | kwonlyargs, kwonlydefaults, ann), |
| 394 | formatted) |
| 395 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 396 | def test_getargspec(self): |
Christian Heimes | 3795b53 | 2007-11-08 13:48:53 +0000 | [diff] [blame] | 397 | self.assertArgSpecEquals(mod.eggs, ['x', 'y'], formatted='(x, y)') |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 398 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 399 | self.assertArgSpecEquals(mod.spam, |
Guido van Rossum | 1bc535d | 2007-05-15 18:46:22 +0000 | [diff] [blame] | 400 | ['a', 'b', 'c', 'd', 'e', 'f'], |
| 401 | 'g', 'h', (3, 4, 5), |
| 402 | '(a, b, c, d=3, e=4, f=5, *g, **h)') |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 403 | |
Christian Heimes | 3795b53 | 2007-11-08 13:48:53 +0000 | [diff] [blame] | 404 | self.assertRaises(ValueError, self.assertArgSpecEquals, |
| 405 | mod2.keyworded, []) |
| 406 | |
| 407 | self.assertRaises(ValueError, self.assertArgSpecEquals, |
| 408 | mod2.annotated, []) |
Benjamin Peterson | 9953a8d | 2009-01-17 04:15:01 +0000 | [diff] [blame] | 409 | self.assertRaises(ValueError, self.assertArgSpecEquals, |
| 410 | mod2.keyword_only_arg, []) |
| 411 | |
Christian Heimes | 3795b53 | 2007-11-08 13:48:53 +0000 | [diff] [blame] | 412 | |
| 413 | def test_getfullargspec(self): |
| 414 | self.assertFullArgSpecEquals(mod2.keyworded, [], varargs_e='arg1', |
| 415 | kwonlyargs_e=['arg2'], |
| 416 | kwonlydefaults_e={'arg2':1}, |
| 417 | formatted='(*arg1, arg2=1)') |
| 418 | |
| 419 | self.assertFullArgSpecEquals(mod2.annotated, ['arg1'], |
Christian Heimes | c9543e4 | 2007-11-28 08:28:28 +0000 | [diff] [blame] | 420 | ann_e={'arg1' : list}, |
Christian Heimes | 3795b53 | 2007-11-08 13:48:53 +0000 | [diff] [blame] | 421 | formatted='(arg1: list)') |
Benjamin Peterson | 9953a8d | 2009-01-17 04:15:01 +0000 | [diff] [blame] | 422 | self.assertFullArgSpecEquals(mod2.keyword_only_arg, [], |
| 423 | kwonlyargs_e=['arg'], |
| 424 | formatted='(*, arg)') |
| 425 | |
Christian Heimes | 3795b53 | 2007-11-08 13:48:53 +0000 | [diff] [blame] | 426 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 427 | def test_getargspec_method(self): |
| 428 | class A(object): |
| 429 | def m(self): |
| 430 | pass |
| 431 | self.assertArgSpecEquals(A.m, ['self']) |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 432 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 433 | def test_classify_newstyle(self): |
| 434 | class A(object): |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 435 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 436 | def s(): pass |
| 437 | s = staticmethod(s) |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 438 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 439 | def c(cls): pass |
| 440 | c = classmethod(c) |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 441 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 442 | def getp(self): pass |
| 443 | p = property(getp) |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 444 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 445 | def m(self): pass |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 446 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 447 | def m1(self): pass |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 448 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 449 | datablob = '1' |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 450 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 451 | attrs = attrs_wo_objs(A) |
Georg Brandl | ab91fde | 2009-08-13 08:51:18 +0000 | [diff] [blame^] | 452 | self.assertTrue(('s', 'static method', A) in attrs, 'missing static method') |
| 453 | self.assertTrue(('c', 'class method', A) in attrs, 'missing class method') |
| 454 | self.assertTrue(('p', 'property', A) in attrs, 'missing property') |
| 455 | self.assertTrue(('m', 'method', A) in attrs, |
Christian Heimes | 4a22b5d | 2007-11-25 09:39:14 +0000 | [diff] [blame] | 456 | 'missing plain method: %r' % attrs) |
Georg Brandl | ab91fde | 2009-08-13 08:51:18 +0000 | [diff] [blame^] | 457 | self.assertTrue(('m1', 'method', A) in attrs, 'missing plain method') |
| 458 | self.assertTrue(('datablob', 'data', A) in attrs, 'missing data') |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 459 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 460 | class B(A): |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 461 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 462 | def m(self): pass |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 463 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 464 | attrs = attrs_wo_objs(B) |
Georg Brandl | ab91fde | 2009-08-13 08:51:18 +0000 | [diff] [blame^] | 465 | self.assertTrue(('s', 'static method', A) in attrs, 'missing static method') |
| 466 | self.assertTrue(('c', 'class method', A) in attrs, 'missing class method') |
| 467 | self.assertTrue(('p', 'property', A) in attrs, 'missing property') |
| 468 | self.assertTrue(('m', 'method', B) in attrs, 'missing plain method') |
| 469 | self.assertTrue(('m1', 'method', A) in attrs, 'missing plain method') |
| 470 | self.assertTrue(('datablob', 'data', A) in attrs, 'missing data') |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 471 | |
| 472 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 473 | class C(A): |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 474 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 475 | def m(self): pass |
| 476 | def c(self): pass |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 477 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 478 | attrs = attrs_wo_objs(C) |
Georg Brandl | ab91fde | 2009-08-13 08:51:18 +0000 | [diff] [blame^] | 479 | self.assertTrue(('s', 'static method', A) in attrs, 'missing static method') |
| 480 | self.assertTrue(('c', 'method', C) in attrs, 'missing plain method') |
| 481 | self.assertTrue(('p', 'property', A) in attrs, 'missing property') |
| 482 | self.assertTrue(('m', 'method', C) in attrs, 'missing plain method') |
| 483 | self.assertTrue(('m1', 'method', A) in attrs, 'missing plain method') |
| 484 | self.assertTrue(('datablob', 'data', A) in attrs, 'missing data') |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 485 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 486 | class D(B, C): |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 487 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 488 | def m1(self): pass |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 489 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 490 | attrs = attrs_wo_objs(D) |
Georg Brandl | ab91fde | 2009-08-13 08:51:18 +0000 | [diff] [blame^] | 491 | self.assertTrue(('s', 'static method', A) in attrs, 'missing static method') |
| 492 | self.assertTrue(('c', 'method', C) in attrs, 'missing plain method') |
| 493 | self.assertTrue(('p', 'property', A) in attrs, 'missing property') |
| 494 | self.assertTrue(('m', 'method', B) in attrs, 'missing plain method') |
| 495 | self.assertTrue(('m1', 'method', D) in attrs, 'missing plain method') |
| 496 | self.assertTrue(('datablob', 'data', A) in attrs, 'missing data') |
Jeremy Hylton | c4bf5ed | 2003-06-27 18:43:12 +0000 | [diff] [blame] | 497 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 498 | def test_main(): |
Johannes Gijsbers | 1542f34 | 2004-12-12 16:46:28 +0000 | [diff] [blame] | 499 | run_unittest(TestDecorators, TestRetrievingSourceCode, TestOneliners, |
Johannes Gijsbers | a5855d5 | 2005-03-12 16:37:11 +0000 | [diff] [blame] | 500 | TestBuggyCases, |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 501 | TestInterpreterStack, TestClassesAndFunctions, TestPredicates) |
Martin v. Löwis | 893ffa4 | 2003-10-31 15:35:53 +0000 | [diff] [blame] | 502 | |
Johannes Gijsbers | cb9015d | 2004-12-12 16:20:22 +0000 | [diff] [blame] | 503 | if __name__ == "__main__": |
| 504 | test_main() |