-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_functools.py
424 lines (352 loc) · 14.2 KB
/
test_functools.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
import copy
import pickle
import sys
import unittest
import unittest.mock
from weakref import proxy
import contextlib
try:
from test.support.import_helper import import_fresh_module
except ImportError: # Python <v3.10
from test.support import import_fresh_module
py_functools = import_fresh_module("partiell")
@contextlib.contextmanager
def replaced_module(name, replacement):
original_module = sys.modules[name]
sys.modules[name] = replacement
try:
yield
finally:
sys.modules[name] = original_module
def capture(*args, **kw):
"""capture all positional and keyword arguments"""
return args, kw
def signature(part):
"""return the signature of a partial object"""
return (part.func, part.largs, part.keywords, part.__dict__)
class MyTuple(tuple):
pass
class BadTuple(tuple):
def __add__(self, other):
return list(self) + list(other)
class MyDict(dict):
pass
class TestPartial:
def test_basic_examples(self):
p = self.partial(capture, 1, 2, a=10, b=20)
self.assertTrue(callable(p))
self.assertEqual(p(3, 4, b=30, c=40), ((1, 2, 3, 4), dict(a=10, b=30, c=40)))
p = self.partial(map, lambda x: x * 10)
self.assertEqual(list(p([1, 2, 3, 4])), [10, 20, 30, 40])
def test_attributes(self):
p = self.partial(capture, 1, 2, a=10, b=20)
# attributes should be readable
self.assertEqual(p.func, capture)
self.assertEqual(p.largs, (1, 2))
self.assertEqual(p.keywords, dict(a=10, b=20))
def test_argument_checking(self):
self.assertRaises(TypeError, self.partial) # need at least a func arg
try:
self.partial(2)()
except TypeError:
pass
else:
self.fail("First arg not checked for callability")
def test_protection_of_callers_dict_argument(self):
# a caller's dictionary should not be altered by partial
def func(a=10, b=20):
return a
d = {"a": 3}
p = self.partial(func, a=5)
self.assertEqual(p(**d), 3)
self.assertEqual(d, {"a": 3})
p(b=7)
self.assertEqual(d, {"a": 3})
def test_kwargs_copy(self):
# Issue #29532: Altering a kwarg dictionary passed to a constructor
# should not affect a partial object after creation
d = {"a": 3}
p = self.partial(capture, **d)
self.assertEqual(p(), ((), {"a": 3}))
d["a"] = 5
self.assertEqual(p(), ((), {"a": 3}))
def test_arg_combinations(self):
# exercise special code paths for zero args in either partial
# object or the caller
p = self.partial(capture)
self.assertEqual(p(), ((), {}))
self.assertEqual(p(1, 2), ((1, 2), {}))
p = self.partial(capture, 1, 2)
self.assertEqual(p(), ((1, 2), {}))
self.assertEqual(p(3, 4), ((1, 2, 3, 4), {}))
def test_kw_combinations(self):
# exercise special code paths for no keyword args in
# either the partial object or the caller
p = self.partial(capture)
self.assertEqual(p.keywords, {})
self.assertEqual(p(), ((), {}))
self.assertEqual(p(a=1), ((), {"a": 1}))
p = self.partial(capture, a=1)
self.assertEqual(p.keywords, {"a": 1})
self.assertEqual(p(), ((), {"a": 1}))
self.assertEqual(p(b=2), ((), {"a": 1, "b": 2}))
# keyword args in the call override those in the partial object
self.assertEqual(p(a=3, b=2), ((), {"a": 3, "b": 2}))
def test_positional(self):
# make sure positional arguments are captured correctly
for args in [(), (0,), (0, 1), (0, 1, 2), (0, 1, 2, 3)]:
p = self.partial(capture, *args)
expected = args + ("x",)
got, empty = p("x")
self.assertTrue(expected == got and empty == {})
def test_keyword(self):
# make sure keyword arguments are captured correctly
for a in ["a", 0, None, 3.5]:
p = self.partial(capture, a=a)
expected = {"a": a, "x": None}
empty, got = p(x=None)
self.assertTrue(expected == got and empty == ())
def test_no_side_effects(self):
# make sure there are no side effects that affect subsequent calls
p = self.partial(capture, 0, a=1)
args1, kw1 = p(1, b=2)
self.assertTrue(args1 == (0, 1) and kw1 == {"a": 1, "b": 2})
args2, kw2 = p()
self.assertTrue(args2 == (0,) and kw2 == {"a": 1})
def test_error_propagation(self):
def f(x, y):
x / y
self.assertRaises(ZeroDivisionError, self.partial(f, 1, 0))
self.assertRaises(ZeroDivisionError, self.partial(f, 1), 0)
self.assertRaises(ZeroDivisionError, self.partial(f), 1, 0)
self.assertRaises(ZeroDivisionError, self.partial(f, y=0), 1)
def test_weakref(self):
f = self.partial(int, base=16)
p = proxy(f)
self.assertEqual(f.func, p.func)
f = None
self.assertRaises(ReferenceError, getattr, p, "func")
def test_with_bound_and_unbound_methods(self):
data = list(map(str, range(10)))
join = self.partial(str.join, "")
self.assertEqual(join(data), "0123456789")
join = self.partial("".join)
self.assertEqual(join(data), "0123456789")
def test_nested_optimization(self):
partial = self.partial
inner = partial(signature, "asdf")
nested = partial(inner, bar=True)
flat = partial(signature, "asdf", bar=True)
self.assertEqual(signature(nested), signature(flat))
def test_nested_partial_with_attribute(self):
# see issue 25137
partial = self.partial
def foo(bar):
return bar
p = partial(foo, "first")
p2 = partial(p, "second")
p2.new_attr = "spam"
self.assertEqual(p2.new_attr, "spam")
def test_repr(self):
args = (object(), object())
args_repr = ", ".join(repr(a) for a in args)
kwargs = {"a": object(), "b": object()}
kwargs_reprs = [
"a={a!r}, b={b!r}".format_map(kwargs),
"b={b!r}, a={a!r}".format_map(kwargs),
]
if self.partial in (py_functools.partial,):
name = "partiell.partial"
else:
name = self.partial.__name__
f = self.partial(capture)
self.assertEqual(f"{name}({capture!r}, ...)", repr(f))
f = self.partial(capture, *args)
self.assertEqual(f"{name}({capture!r}, {args_repr}, ...)", repr(f))
f = self.partial(capture, **kwargs)
self.assertIn(
repr(f),
[
f"{name}({capture!r}, ..., {kwargs_repr})"
for kwargs_repr in kwargs_reprs
],
)
f = self.partial(capture, *args, **kwargs)
self.assertIn(
repr(f),
[
f"{name}({capture!r}, {args_repr}, ..., {kwargs_repr})"
for kwargs_repr in kwargs_reprs
],
)
def test_recursive_repr(self):
if self.partial in (py_functools.partial,):
name = "partiell.partial"
else:
name = self.partial.__name__
f = self.partial(capture)
f.__setstate__((f, (), (), {}, {}))
try:
self.assertEqual(repr(f), "%s(..., ...)" % (name,))
finally:
f.__setstate__((capture, (), (), {}, {}))
f = self.partial(capture)
f.__setstate__((capture, (f,), (), {}, {}))
try:
self.assertEqual(
repr(f),
"%s(%r, ..., ...)"
% (
name,
capture,
),
)
finally:
f.__setstate__((capture, (), (), {}, {}))
f = self.partial(capture)
f.__setstate__((capture, (), (), {"a": f}, {}))
try:
self.assertEqual(
repr(f),
"%s(%r, ..., a=...)"
% (
name,
capture,
),
)
finally:
f.__setstate__((capture, (), (), {}, {}))
def test_pickle(self):
with self.AllowPickle():
f = self.partial(signature, ["asdf"], bar=[True])
f.attr = []
for proto in range(pickle.HIGHEST_PROTOCOL + 1):
f_copy = pickle.loads(pickle.dumps(f, proto))
self.assertEqual(signature(f_copy), signature(f))
def test_copy(self):
f = self.partial(signature, ["asdf"], bar=[True])
f.attr = []
f_copy = copy.copy(f)
self.assertEqual(signature(f_copy), signature(f))
self.assertIs(f_copy.attr, f.attr)
self.assertIs(f_copy.largs, f.largs)
self.assertIs(f_copy.keywords, f.keywords)
def test_deepcopy(self):
f = self.partial(signature, ["asdf"], bar=[True])
f.attr = []
f_copy = copy.deepcopy(f)
self.assertEqual(signature(f_copy), signature(f))
self.assertIsNot(f_copy.attr, f.attr)
self.assertIsNot(f_copy.largs, f.largs)
self.assertIsNot(f_copy.largs[0], f.largs[0])
self.assertIsNot(f_copy.keywords, f.keywords)
self.assertIsNot(f_copy.keywords["bar"], f.keywords["bar"])
def test_setstate(self):
f = self.partial(signature)
f.__setstate__((capture, (1,), (), dict(a=10), dict(attr=[])))
self.assertEqual(signature(f), (capture, (1,), dict(a=10), dict(attr=[])))
self.assertEqual(f(2, b=20), ((1, 2), {"a": 10, "b": 20}))
f.__setstate__((capture, (1,), (), dict(a=10), None))
self.assertEqual(signature(f), (capture, (1,), dict(a=10), {}))
self.assertEqual(f(2, b=20), ((1, 2), {"a": 10, "b": 20}))
f.__setstate__((capture, (1,), (), None, None))
# self.assertEqual(signature(f), (capture, (1,), {}, {}))
self.assertEqual(f(2, b=20), ((1, 2), {"b": 20}))
self.assertEqual(f(2), ((1, 2), {}))
self.assertEqual(f(), ((1,), {}))
f.__setstate__((capture, (), (), {}, None))
self.assertEqual(signature(f), (capture, (), {}, {}))
self.assertEqual(f(2, b=20), ((2,), {"b": 20}))
self.assertEqual(f(2), ((2,), {}))
self.assertEqual(f(), ((), {}))
def test_setstate_errors(self):
f = self.partial(signature)
self.assertRaises(TypeError, f.__setstate__, (capture, (), (), {}))
self.assertRaises(TypeError, f.__setstate__, (capture, (), (), {}, {}, None))
self.assertRaises(TypeError, f.__setstate__, [capture, (), (), {}, None])
self.assertRaises(TypeError, f.__setstate__, (None, (), (), {}, None))
self.assertRaises(TypeError, f.__setstate__, (capture, None, (), {}, None))
self.assertRaises(TypeError, f.__setstate__, (capture, (), None, {}, None))
self.assertRaises(TypeError, f.__setstate__, (capture, [], (), {}, None))
self.assertRaises(TypeError, f.__setstate__, (capture, (), [], {}, None))
self.assertRaises(TypeError, f.__setstate__, (capture, (), (), [], None))
def test_setstate_subclasses(self):
f = self.partial(signature)
f.__setstate__((capture, MyTuple((1,)), MyTuple(), MyDict(a=10), None))
s = signature(f)
self.assertEqual(s, (capture, (1,), dict(a=10), {}))
self.assertIs(type(s[1]), tuple)
self.assertIs(type(s[2]), dict)
r = f()
self.assertEqual(r, ((1,), {"a": 10}))
self.assertIs(type(r[0]), tuple)
self.assertIs(type(r[1]), dict)
f.__setstate__((capture, BadTuple((1,)), (), {}, None))
s = signature(f)
self.assertEqual(s, (capture, (1,), {}, {}))
self.assertIs(type(s[1]), tuple)
r = f(2)
self.assertEqual(r, ((1, 2), {}))
self.assertIs(type(r[0]), tuple)
def test_recursive_pickle(self):
with self.AllowPickle():
f = self.partial(capture)
f.__setstate__((f, (), (), {}, {}))
try:
for proto in range(pickle.HIGHEST_PROTOCOL + 1):
with self.assertRaises(RecursionError):
pickle.dumps(f, proto)
finally:
f.__setstate__((capture, (), (), {}, {}))
f = self.partial(capture)
f.__setstate__((capture, (f,), (), {}, {}))
try:
for proto in range(pickle.HIGHEST_PROTOCOL + 1):
f_copy = pickle.loads(pickle.dumps(f, proto))
try:
self.assertIs(f_copy.largs[0], f_copy)
finally:
f_copy.__setstate__((capture, (), (), {}, {}))
finally:
f.__setstate__((capture, (), (), {}, {}))
f = self.partial(capture)
f.__setstate__((capture, (), (), {"a": f}, {}))
try:
for proto in range(pickle.HIGHEST_PROTOCOL + 1):
f_copy = pickle.loads(pickle.dumps(f, proto))
try:
self.assertIs(f_copy.keywords["a"], f_copy)
finally:
f_copy.__setstate__((capture, (), (), {}, {}))
finally:
f.__setstate__((capture, (), (), {}, {}))
# Issue 6083: Reference counting bug
def test_setstate_refcount(self):
class BadSequence:
def __len__(self):
return 4
def __getitem__(self, key):
if key == 0:
return max
elif key == 1:
return tuple(range(1000000))
elif key in (2, 3):
return {}
raise IndexError
f = self.partial(object)
self.assertRaises(TypeError, f.__setstate__, BadSequence())
class TestPartialPy(TestPartial, unittest.TestCase):
partial = py_functools.partial
class AllowPickle:
def __init__(self):
self._cm = replaced_module("functools", py_functools)
def __enter__(self):
return self._cm.__enter__()
def __exit__(self, type, value, tb):
return self._cm.__exit__(type, value, tb)
class PyPartialSubclass(py_functools.partial):
pass
class TestPartialPySubclass(TestPartialPy):
partial = PyPartialSubclass
if __name__ == "__main__":
unittest.main()