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