blob: 8f481bb64e18e60207c919e02ed80e99312dc576 [file] [log] [blame]
Guido van Rossumd9d1d4a2001-09-17 23:46:56 +00001import types
Georg Brandl60d14562008-02-05 18:31:41 +00002import unittest
Barry Warsaw4a420a02001-01-15 20:30:15 +00003
Antoine Pitrou86a36b52011-11-25 18:56:07 +01004
5def global_function():
6 def inner_function():
7 class LocalClass:
8 pass
Benjamin Peterson3d9e4812013-10-19 16:01:13 -04009 global inner_global_function
10 def inner_global_function():
Benjamin Peterson6b4f7802013-10-20 17:50:28 -040011 def inner_function2():
12 pass
13 return inner_function2
Antoine Pitrou86a36b52011-11-25 18:56:07 +010014 return LocalClass
15 return lambda: inner_function
16
17
Georg Brandl60d14562008-02-05 18:31:41 +000018class FuncAttrsTest(unittest.TestCase):
19 def setUp(self):
20 class F:
21 def a(self):
22 pass
23 def b():
24 return 3
25 self.fi = F()
26 self.F = F
27 self.b = b
Barry Warsaw4a420a02001-01-15 20:30:15 +000028
Georg Brandl60d14562008-02-05 18:31:41 +000029 def cannot_set_attr(self, obj, name, value, exceptions):
30 try:
31 setattr(obj, name, value)
32 except exceptions:
33 pass
34 else:
35 self.fail("shouldn't be able to set %s to %r" % (name, value))
36 try:
37 delattr(obj, name)
38 except exceptions:
39 pass
40 else:
41 self.fail("shouldn't be able to del %s" % name)
Barry Warsaw4a420a02001-01-15 20:30:15 +000042
Jeremy Hylton4f0dcc92003-01-31 18:33:18 +000043
Georg Brandl60d14562008-02-05 18:31:41 +000044class FunctionPropertiesTest(FuncAttrsTest):
45 # Include the external setUp method that is common to all tests
46 def test_module(self):
47 self.assertEqual(self.b.__module__, __name__)
Barry Warsaw4a420a02001-01-15 20:30:15 +000048
Georg Brandl60d14562008-02-05 18:31:41 +000049 def test_dir_includes_correct_attrs(self):
50 self.b.known_attr = 7
Benjamin Peterson577473f2010-01-19 00:09:57 +000051 self.assertIn('known_attr', dir(self.b),
Georg Brandl60d14562008-02-05 18:31:41 +000052 "set attributes not in dir listing of method")
53 # Test on underlying function object of method
54 self.F.a.known_attr = 7
Benjamin Peterson577473f2010-01-19 00:09:57 +000055 self.assertIn('known_attr', dir(self.fi.a), "set attribute on function "
Georg Brandl60d14562008-02-05 18:31:41 +000056 "implementations, should show up in next dir")
Barry Warsawc1e100f2001-02-26 18:07:26 +000057
Georg Brandl60d14562008-02-05 18:31:41 +000058 def test_duplicate_function_equality(self):
59 # Body of `duplicate' is the exact same as self.b
60 def duplicate():
61 'my docstring'
62 return 3
63 self.assertNotEqual(self.b, duplicate)
Barry Warsaw4a420a02001-01-15 20:30:15 +000064
Georg Brandl60d14562008-02-05 18:31:41 +000065 def test_copying___code__(self):
66 def test(): pass
67 self.assertEqual(test(), None)
68 test.__code__ = self.b.__code__
69 self.assertEqual(test(), 3) # self.b always returns 3, arbitrarily
Barry Warsaw4a420a02001-01-15 20:30:15 +000070
Georg Brandl60d14562008-02-05 18:31:41 +000071 def test___globals__(self):
Georg Brandl4cb97d02009-09-04 11:20:54 +000072 self.assertIs(self.b.__globals__, globals())
73 self.cannot_set_attr(self.b, '__globals__', 2,
74 (AttributeError, TypeError))
75
76 def test___closure__(self):
77 a = 12
78 def f(): print(a)
79 c = f.__closure__
Ezio Melottie9615932010-01-24 19:26:24 +000080 self.assertIsInstance(c, tuple)
Georg Brandl4cb97d02009-09-04 11:20:54 +000081 self.assertEqual(len(c), 1)
82 # don't have a type object handy
83 self.assertEqual(c[0].__class__.__name__, "cell")
84 self.cannot_set_attr(f, "__closure__", c, AttributeError)
85
86 def test_empty_cell(self):
87 def f(): print(a)
88 try:
89 f.__closure__[0].cell_contents
90 except ValueError:
91 pass
92 else:
93 self.fail("shouldn't be able to read an empty cell")
94 a = 12
Barry Warsaw4a420a02001-01-15 20:30:15 +000095
Georg Brandl60d14562008-02-05 18:31:41 +000096 def test___name__(self):
97 self.assertEqual(self.b.__name__, 'b')
98 self.b.__name__ = 'c'
99 self.assertEqual(self.b.__name__, 'c')
100 self.b.__name__ = 'd'
101 self.assertEqual(self.b.__name__, 'd')
102 # __name__ and __name__ must be a string
103 self.cannot_set_attr(self.b, '__name__', 7, TypeError)
104 # __name__ must be available when in restricted mode. Exec will raise
105 # AttributeError if __name__ is not available on f.
106 s = """def f(): pass\nf.__name__"""
107 exec(s, {'__builtins__': {}})
108 # Test on methods, too
109 self.assertEqual(self.fi.a.__name__, 'a')
110 self.cannot_set_attr(self.fi.a, "__name__", 'a', AttributeError)
Barry Warsawc1e100f2001-02-26 18:07:26 +0000111
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100112 def test___qualname__(self):
113 # PEP 3155
114 self.assertEqual(self.b.__qualname__, 'FuncAttrsTest.setUp.<locals>.b')
115 self.assertEqual(FuncAttrsTest.setUp.__qualname__, 'FuncAttrsTest.setUp')
116 self.assertEqual(global_function.__qualname__, 'global_function')
117 self.assertEqual(global_function().__qualname__,
118 'global_function.<locals>.<lambda>')
119 self.assertEqual(global_function()().__qualname__,
120 'global_function.<locals>.inner_function')
121 self.assertEqual(global_function()()().__qualname__,
122 'global_function.<locals>.inner_function.<locals>.LocalClass')
Benjamin Peterson3d9e4812013-10-19 16:01:13 -0400123 self.assertEqual(inner_global_function.__qualname__, 'inner_global_function')
Benjamin Peterson6b4f7802013-10-20 17:50:28 -0400124 self.assertEqual(inner_global_function().__qualname__, 'inner_global_function.<locals>.inner_function2')
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100125 self.b.__qualname__ = 'c'
126 self.assertEqual(self.b.__qualname__, 'c')
127 self.b.__qualname__ = 'd'
128 self.assertEqual(self.b.__qualname__, 'd')
129 # __qualname__ must be a string
130 self.cannot_set_attr(self.b, '__qualname__', 7, TypeError)
131
Georg Brandl60d14562008-02-05 18:31:41 +0000132 def test___code__(self):
133 num_one, num_two = 7, 8
134 def a(): pass
135 def b(): return 12
136 def c(): return num_one
137 def d(): return num_two
138 def e(): return num_one, num_two
139 for func in [a, b, c, d, e]:
140 self.assertEqual(type(func.__code__), types.CodeType)
141 self.assertEqual(c(), 7)
142 self.assertEqual(d(), 8)
143 d.__code__ = c.__code__
144 self.assertEqual(c.__code__, d.__code__)
145 self.assertEqual(c(), 7)
146 # self.assertEqual(d(), 7)
Georg Brandl4cb97d02009-09-04 11:20:54 +0000147 try:
148 b.__code__ = c.__code__
149 except ValueError:
150 pass
151 else:
152 self.fail("__code__ with different numbers of free vars should "
153 "not be possible")
154 try:
155 e.__code__ = d.__code__
156 except ValueError:
157 pass
158 else:
159 self.fail("__code__ with different numbers of free vars should "
160 "not be possible")
Barry Warsawc1e100f2001-02-26 18:07:26 +0000161
Georg Brandl60d14562008-02-05 18:31:41 +0000162 def test_blank_func_defaults(self):
163 self.assertEqual(self.b.__defaults__, None)
164 del self.b.__defaults__
165 self.assertEqual(self.b.__defaults__, None)
Barry Warsawc1e100f2001-02-26 18:07:26 +0000166
Georg Brandl60d14562008-02-05 18:31:41 +0000167 def test_func_default_args(self):
168 def first_func(a, b):
169 return a+b
170 def second_func(a=1, b=2):
171 return a+b
172 self.assertEqual(first_func.__defaults__, None)
173 self.assertEqual(second_func.__defaults__, (1, 2))
174 first_func.__defaults__ = (1, 2)
175 self.assertEqual(first_func.__defaults__, (1, 2))
176 self.assertEqual(first_func(), 3)
177 self.assertEqual(first_func(3), 5)
178 self.assertEqual(first_func(3, 5), 8)
179 del second_func.__defaults__
180 self.assertEqual(second_func.__defaults__, None)
Georg Brandl4cb97d02009-09-04 11:20:54 +0000181 try:
182 second_func()
183 except TypeError:
184 pass
185 else:
186 self.fail("__defaults__ does not update; deleting it does not "
187 "remove requirement")
Barry Warsaw4a420a02001-01-15 20:30:15 +0000188
Georg Brandl4cb97d02009-09-04 11:20:54 +0000189
190class InstancemethodAttrTest(FuncAttrsTest):
Barry Warsaw4a420a02001-01-15 20:30:15 +0000191
Georg Brandl60d14562008-02-05 18:31:41 +0000192 def test___class__(self):
193 self.assertEqual(self.fi.a.__self__.__class__, self.F)
194 self.cannot_set_attr(self.fi.a, "__class__", self.F, TypeError)
Barry Warsaw4a420a02001-01-15 20:30:15 +0000195
Georg Brandl60d14562008-02-05 18:31:41 +0000196 def test___func__(self):
197 self.assertEqual(self.fi.a.__func__, self.F.a)
198 self.cannot_set_attr(self.fi.a, "__func__", self.F.a, AttributeError)
Barry Warsawc1e100f2001-02-26 18:07:26 +0000199
Georg Brandl60d14562008-02-05 18:31:41 +0000200 def test___self__(self):
201 self.assertEqual(self.fi.a.__self__, self.fi)
202 self.cannot_set_attr(self.fi.a, "__self__", self.fi, AttributeError)
Barry Warsaw4a420a02001-01-15 20:30:15 +0000203
Georg Brandl60d14562008-02-05 18:31:41 +0000204 def test___func___non_method(self):
205 # Behavior should be the same when a method is added via an attr
206 # assignment
207 self.fi.id = types.MethodType(id, self.fi)
208 self.assertEqual(self.fi.id(), id(self.fi))
209 # Test usage
Georg Brandl4cb97d02009-09-04 11:20:54 +0000210 try:
211 self.fi.id.unknown_attr
212 except AttributeError:
213 pass
214 else:
215 self.fail("using unknown attributes should raise AttributeError")
Georg Brandl60d14562008-02-05 18:31:41 +0000216 # Test assignment and deletion
217 self.cannot_set_attr(self.fi.id, 'unknown_attr', 2, AttributeError)
Barry Warsaw4a420a02001-01-15 20:30:15 +0000218
Georg Brandl4cb97d02009-09-04 11:20:54 +0000219
Georg Brandl60d14562008-02-05 18:31:41 +0000220class ArbitraryFunctionAttrTest(FuncAttrsTest):
221 def test_set_attr(self):
222 self.b.known_attr = 7
223 self.assertEqual(self.b.known_attr, 7)
Georg Brandl4cb97d02009-09-04 11:20:54 +0000224 try:
225 self.fi.a.known_attr = 7
226 except AttributeError:
227 pass
228 else:
229 self.fail("setting attributes on methods should raise error")
Barry Warsaw4a420a02001-01-15 20:30:15 +0000230
Georg Brandl60d14562008-02-05 18:31:41 +0000231 def test_delete_unknown_attr(self):
Georg Brandl4cb97d02009-09-04 11:20:54 +0000232 try:
233 del self.b.unknown_attr
234 except AttributeError:
235 pass
236 else:
237 self.fail("deleting unknown attribute should raise TypeError")
Barry Warsaw4a420a02001-01-15 20:30:15 +0000238
Georg Brandl60d14562008-02-05 18:31:41 +0000239 def test_unset_attr(self):
240 for func in [self.b, self.fi.a]:
Georg Brandl4cb97d02009-09-04 11:20:54 +0000241 try:
242 func.non_existent_attr
243 except AttributeError:
244 pass
245 else:
246 self.fail("using unknown attributes should raise "
247 "AttributeError")
248
Barry Warsaw4a420a02001-01-15 20:30:15 +0000249
Georg Brandl60d14562008-02-05 18:31:41 +0000250class FunctionDictsTest(FuncAttrsTest):
251 def test_setting_dict_to_invalid(self):
252 self.cannot_set_attr(self.b, '__dict__', None, TypeError)
Raymond Hettingerf80680d2008-02-06 00:07:11 +0000253 from collections import UserDict
Georg Brandl60d14562008-02-05 18:31:41 +0000254 d = UserDict({'known_attr': 7})
255 self.cannot_set_attr(self.fi.a.__func__, '__dict__', d, TypeError)
Barry Warsawc1e100f2001-02-26 18:07:26 +0000256
Georg Brandl60d14562008-02-05 18:31:41 +0000257 def test_setting_dict_to_valid(self):
258 d = {'known_attr': 7}
259 self.b.__dict__ = d
260 # Test assignment
Georg Brandl4cb97d02009-09-04 11:20:54 +0000261 self.assertIs(d, self.b.__dict__)
Georg Brandl60d14562008-02-05 18:31:41 +0000262 # ... and on all the different ways of referencing the method's func
263 self.F.a.__dict__ = d
Georg Brandl4cb97d02009-09-04 11:20:54 +0000264 self.assertIs(d, self.fi.a.__func__.__dict__)
265 self.assertIs(d, self.fi.a.__dict__)
Georg Brandl60d14562008-02-05 18:31:41 +0000266 # Test value
267 self.assertEqual(self.b.known_attr, 7)
268 self.assertEqual(self.b.__dict__['known_attr'], 7)
269 # ... and again, on all the different method's names
270 self.assertEqual(self.fi.a.__func__.known_attr, 7)
271 self.assertEqual(self.fi.a.known_attr, 7)
Barry Warsaw4a420a02001-01-15 20:30:15 +0000272
Georg Brandl60d14562008-02-05 18:31:41 +0000273 def test_delete___dict__(self):
Georg Brandl4cb97d02009-09-04 11:20:54 +0000274 try:
275 del self.b.__dict__
276 except TypeError:
277 pass
278 else:
279 self.fail("deleting function dictionary should raise TypeError")
Barry Warsaw4a420a02001-01-15 20:30:15 +0000280
Georg Brandl60d14562008-02-05 18:31:41 +0000281 def test_unassigned_dict(self):
282 self.assertEqual(self.b.__dict__, {})
Barry Warsaw4a420a02001-01-15 20:30:15 +0000283
Georg Brandl60d14562008-02-05 18:31:41 +0000284 def test_func_as_dict_key(self):
285 value = "Some string"
286 d = {}
287 d[self.b] = value
288 self.assertEqual(d[self.b], value)
Barry Warsaw534c60f2001-01-15 21:00:02 +0000289
Georg Brandl4cb97d02009-09-04 11:20:54 +0000290
Georg Brandl60d14562008-02-05 18:31:41 +0000291class FunctionDocstringTest(FuncAttrsTest):
292 def test_set_docstring_attr(self):
293 self.assertEqual(self.b.__doc__, None)
294 docstr = "A test method that does nothing"
295 self.b.__doc__ = docstr
296 self.F.a.__doc__ = docstr
297 self.assertEqual(self.b.__doc__, docstr)
298 self.assertEqual(self.fi.a.__doc__, docstr)
299 self.cannot_set_attr(self.fi.a, "__doc__", docstr, AttributeError)
Guido van Rossumbd131492001-09-18 03:28:54 +0000300
Georg Brandl60d14562008-02-05 18:31:41 +0000301 def test_delete_docstring(self):
302 self.b.__doc__ = "The docstring"
303 del self.b.__doc__
304 self.assertEqual(self.b.__doc__, None)
Guido van Rossumd9d1d4a2001-09-17 23:46:56 +0000305
Georg Brandl4cb97d02009-09-04 11:20:54 +0000306
Mark Dickinson211c6252009-02-01 10:28:51 +0000307def cell(value):
308 """Create a cell containing the given value."""
309 def f():
310 print(a)
311 a = value
312 return f.__closure__[0]
313
314def empty_cell(empty=True):
315 """Create an empty cell."""
316 def f():
317 print(a)
318 # the intent of the following line is simply "if False:"; it's
319 # spelt this way to avoid the danger that a future optimization
320 # might simply remove an "if False:" code block.
321 if not empty:
322 a = 1729
323 return f.__closure__[0]
324
Georg Brandl4cb97d02009-09-04 11:20:54 +0000325
Mark Dickinson211c6252009-02-01 10:28:51 +0000326class CellTest(unittest.TestCase):
327 def test_comparison(self):
328 # These tests are here simply to exercise the comparison code;
329 # their presence should not be interpreted as providing any
330 # guarantees about the semantics (or even existence) of cell
331 # comparisons in future versions of CPython.
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000332 self.assertTrue(cell(2) < cell(3))
333 self.assertTrue(empty_cell() < cell('saturday'))
334 self.assertTrue(empty_cell() == empty_cell())
335 self.assertTrue(cell(-36) == cell(-36.0))
336 self.assertTrue(cell(True) > empty_cell())
Mark Dickinson211c6252009-02-01 10:28:51 +0000337
Georg Brandl4cb97d02009-09-04 11:20:54 +0000338
Raymond Hettinger2bcde142009-05-29 04:52:27 +0000339class StaticMethodAttrsTest(unittest.TestCase):
340 def test_func_attribute(self):
341 def f():
342 pass
343
344 c = classmethod(f)
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000345 self.assertTrue(c.__func__ is f)
Raymond Hettinger2bcde142009-05-29 04:52:27 +0000346
347 s = staticmethod(f)
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000348 self.assertTrue(s.__func__ is f)
Raymond Hettinger2bcde142009-05-29 04:52:27 +0000349
Mark Dickinson211c6252009-02-01 10:28:51 +0000350
Antoine Pitrou5b629422011-12-23 12:40:16 +0100351class BuiltinFunctionPropertiesTest(unittest.TestCase):
352 # XXX Not sure where this should really go since I can't find a
353 # test module specifically for builtin_function_or_method.
354
355 def test_builtin__qualname__(self):
356 import time
357
358 # builtin function:
359 self.assertEqual(len.__qualname__, 'len')
360 self.assertEqual(time.time.__qualname__, 'time')
361
362 # builtin classmethod:
363 self.assertEqual(dict.fromkeys.__qualname__, 'dict.fromkeys')
364 self.assertEqual(float.__getformat__.__qualname__,
365 'float.__getformat__')
366
367 # builtin staticmethod:
368 self.assertEqual(str.maketrans.__qualname__, 'str.maketrans')
369 self.assertEqual(bytes.maketrans.__qualname__, 'bytes.maketrans')
370
371 # builtin bound instance method:
372 self.assertEqual([1, 2, 3].append.__qualname__, 'list.append')
373 self.assertEqual({'foo': 'bar'}.pop.__qualname__, 'dict.pop')
374
375
Georg Brandl60d14562008-02-05 18:31:41 +0000376if __name__ == "__main__":
Zachary Ware38c707e2015-04-13 15:00:43 -0500377 unittest.main()