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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
|
import math
import re
from functools import partial
from time import time
import pytest
from snakeoil import klass
class Test_GetAttrProxy:
kls = staticmethod(klass.GetAttrProxy)
def test_it(self):
class foo1:
def __init__(self, obj):
self.obj = obj
__getattr__ = self.kls('obj')
class foo2:
pass
o2 = foo2()
o = foo1(o2)
with pytest.raises(AttributeError):
getattr(o, "blah")
assert o.obj == o2
o2.foon = "dar"
assert o.foon == "dar"
o.foon = "foo"
assert o.foon == 'foo'
def test_attrlist(self):
def make_class(attr_list=None):
class foo(metaclass=self.kls):
if attr_list is not None:
locals()['__attr_comparison__'] = attr_list
with pytest.raises(TypeError):
make_class()
with pytest.raises(TypeError):
make_class(['foon'])
with pytest.raises(TypeError):
make_class([None])
def test_instancemethod(self):
class foo:
bar = "baz"
class Test:
method = self.kls('test')
test = foo()
test = Test()
assert test.method('bar') == foo.bar
class TestDirProxy:
@staticmethod
def noninternal_attrs(obj):
return sorted(x for x in dir(obj) if not re.match(r'__\w+__', x))
def test_combined(self):
class foo1:
def __init__(self, obj):
self.obj = obj
__dir__ = klass.DirProxy('obj')
class foo2:
def __init__(self):
self.attr = 'foo'
o2 = foo2()
o = foo1(o2)
assert self.noninternal_attrs(o) == ['attr', 'obj']
def test_empty(self):
class foo1:
def __init__(self, obj):
self.obj = obj
__dir__ = klass.DirProxy('obj')
class foo2:
pass
o2 = foo2()
o = foo1(o2)
assert self.noninternal_attrs(o2) == []
assert self.noninternal_attrs(o) == ['obj']
def test_slots(self):
class foo1:
__slots__ = ('obj',)
def __init__(self, obj):
self.obj = obj
__dir__ = klass.DirProxy('obj')
class foo2:
__slots__ = ('attr',)
def __init__(self):
self.attr = 'foo'
o2 = foo2()
o = foo1(o2)
assert self.noninternal_attrs(o) == ['attr', 'obj']
class Test_contains:
func = staticmethod(klass.contains)
def test_it(self):
class c(dict):
__contains__ = self.func
d = c({"1": 2})
assert "1" in d
assert 1 not in d
class Test_get:
func = staticmethod(klass.get)
def test_it(self):
class c(dict):
get = self.func
d = c({"1": 2})
assert d.get("1") == 2
assert d.get("1", 3) == 2
assert d.get(1) is None
assert d.get(1, 3) == 3
class Test_chained_getter:
kls = klass.chained_getter
def test_hash(self):
assert hash(self.kls("foon")) == hash("foon")
assert hash(self.kls("foon.dar")) == hash("foon.dar")
def test_caching(self):
l = [id(self.kls("fa2341f%s" % x)) for x in "abcdefghij"]
assert id(self.kls("fa2341fa")) == l[0]
def test_eq(self):
assert self.kls("asdf", disable_inst_caching=True) == \
self.kls("asdf", disable_inst_caching=True)
assert self.kls("asdf2", disable_inst_caching=True) != \
self.kls("asdf", disable_inst_caching=True)
def test_it(self):
class maze:
def __init__(self, kwargs):
self.__data__ = kwargs
def __getattr__(self, attr):
return self.__data__.get(attr, self)
d = {}
m = maze(d)
f = self.kls
assert f('foon')(m) == m
d["foon"] = 1
assert f('foon')(m) == 1
assert f('dar.foon')(m) == 1
assert f('.'.join(['blah']*10))(m) == m
with pytest.raises(AttributeError):
f('foon.dar')(m)
class Test_jit_attr:
kls = staticmethod(klass._internal_jit_attr)
@property
def jit_attr(self):
return partial(klass.jit_attr, kls=self.kls)
@property
def jit_attr_named(self):
return partial(klass.jit_attr_named, kls=self.kls)
@property
def jit_attr_ext_method(self):
return partial(klass.jit_attr_ext_method, kls=self.kls)
def mk_inst(self, attrname='_attr', method_lookup=False,
use_cls_setattr=False, func=None,
singleton=klass._uncached_singleton):
f = func
if not func:
def f(self):
self._invokes.append(self)
return 54321
class cls:
def __init__(self):
sf = partial(object.__setattr__, self)
sf('_sets', [])
sf('_reflects', [])
sf('_invokes', [])
attr = self.kls(f, attrname, singleton, use_cls_setattr)
def __setattr__(self, attr, value):
self._sets.append(self)
object.__setattr__(self, attr, value)
def reflect(self):
self._reflects.append(self)
return 12345
return cls()
def assertState(self, instance, sets=0, reflects=0, invokes=0, value=54321):
assert instance.attr == value
sets = [instance] * sets
reflects = [instance] * reflects
invokes = [instance] * invokes
msg = ("checking %s: got(%r), expected(%r); state was sets=%r, "
"reflects=%r, invokes=%r" % (
"%s", "%s", "%s", instance._sets, instance._reflects,
instance._invokes))
assert instance._sets == sets, msg % ("sets", instance._sets, sets)
assert instance._reflects == reflects, msg % ("reflects", instance._reflects, reflects)
assert instance._invokes == invokes, msg % ("invokes", instance._invokes, invokes)
def test_implementation(self):
obj = self.mk_inst()
# default state is use_cls_setattr = False
self.assertState(obj, invokes=1)
self.assertState(obj, invokes=1)
del obj._attr
self.assertState(obj, invokes=2)
self.assertState(obj, invokes=2)
# basic caching is now verified.
obj = self.mk_inst(use_cls_setattr=True)
self.assertState(obj, sets=1, invokes=1)
self.assertState(obj, sets=1, invokes=1)
del obj._attr
self.assertState(obj, sets=2, invokes=2)
self.assertState(obj, sets=2, invokes=2)
def test_jit_attr(self):
now = time()
class cls:
@self.jit_attr
def my_attr(self):
return now
o = cls()
assert o.my_attr == now
assert o._my_attr == now
class cls:
@self.jit_attr
def attr2(self):
return now
def __setattr__(self, attr, value):
raise AssertionError("setattr was invoked")
o = cls()
assert o.attr2 == now
assert o._attr2 == now
del o._attr2
assert o.attr2 == now
assert o._attr2 == now
def test_jit_attr_named(self):
now = time()
# check attrname control and default object.__setattr__ avoidance
class cls:
@self.jit_attr_named("_blah")
def my_attr(self):
return now
def __setattr__(self, attr, value):
raise AssertionError("setattr was invoked")
o = cls()
assert o.my_attr == now
assert o._blah == now
class cls:
@self.jit_attr_named("_blah2", use_cls_setattr=True)
def my_attr(self):
return now
def __setattr__(self, attr, value):
object.__setattr__(self, "invoked", True)
object.__setattr__(self, attr, value)
o = cls()
assert not hasattr(o, 'invoked')
assert o.my_attr == now
assert o._blah2 == now
assert o.invoked
def test_jit_attr_ext_method(self):
now = time()
now2 = now + 100
class base:
def f1(self):
return now
def f2(self):
return now2
def __setattr__(self, attr, value):
if not getattr(self, '_setattr_allowed', False):
raise TypeError("setattr isn't allowed for %s" % attr)
object.__setattr__(self, attr, value)
base.attr = self.jit_attr_ext_method('f1', '_attr')
o = base()
assert o.attr == now
assert o._attr == now
assert o.attr == now
base.attr = self.jit_attr_ext_method('f1', '_attr', use_cls_setattr=True)
o = base()
with pytest.raises(TypeError):
getattr(o, 'attr')
base._setattr_allowed = True
assert o.attr == now
base.attr = self.jit_attr_ext_method('f2', '_attr2')
o = base()
assert o.attr == now2
assert o._attr2 == now2
# finally, check that it's doing lookups rather then storing the func.
base.attr = self.jit_attr_ext_method('func', '_attr2')
o = base()
# no func...
with pytest.raises(AttributeError):
getattr(o, 'attr')
base.func = base.f1
assert o.attr == now
assert o._attr2 == now
# check caching...
base.func = base.f2
assert o.attr == now
del o._attr2
assert o.attr == now2
def test_check_singleton_is_compare(self):
def throw_assert(*args, **kwds):
raise AssertionError("I shouldn't be invoked: %s, %s" % (args, kwds,))
class puker:
__eq__ = throw_assert
puker_singleton = puker()
obj = self.mk_inst(singleton=puker_singleton)
obj._attr = puker_singleton
# force attr access. if it's done wrong, it'll puke.
# pylint: disable=pointless-statement
obj.attr
def test_cached_property(self):
l = []
class foo:
@klass.cached_property
def blah(self, l=l, i=iter(range(5))):
l.append(None)
return next(i)
f = foo()
assert f.blah == 0
assert len(l) == 1
assert f.blah == 0
assert len(l) == 1
del f.blah
assert f.blah == 1
assert len(l) == 2
def test_cached_property(self):
l = []
def named(self, l=l, i=iter(range(5))):
l.append(None)
return next(i)
class foo:
blah = klass.cached_property_named("blah")(named)
f = foo()
assert f.blah == 0
assert len(l) == 1
assert f.blah == 0
assert len(l) == 1
del f.blah
assert f.blah == 1
assert len(l) == 2
class Test_aliased_attr:
func = staticmethod(klass.alias_attr)
def test_it(self):
class cls:
attr = self.func("dar.blah")
o = cls()
with pytest.raises(AttributeError):
getattr(o, 'attr')
o.dar = "foon"
with pytest.raises(AttributeError):
getattr(o, 'attr')
o.dar = o
o.blah = "monkey"
assert o.attr == 'monkey'
# verify it'll cross properties...
class blah:
target = object()
class cls:
@property
def foon(self):
return blah()
alias = self.func("foon.target")
o = cls()
assert o.alias is blah.target
class Test_cached_hash:
func = staticmethod(klass.cached_hash)
def test_it(self):
now = int(time())
class cls:
invoked = []
@self.func
def __hash__(self):
self.invoked.append(self)
return now
o = cls()
assert hash(o) == now
assert o.invoked == [o]
# ensure it cached...
assert hash(o) == now
assert o.invoked == [o]
assert o._hash == now
class Test_reflective_hash:
func = staticmethod(klass.reflective_hash)
def test_it(self):
class cls:
__hash__ = self.func('_hash')
obj = cls()
with pytest.raises(AttributeError):
hash(obj)
obj._hash = 1
assert hash(obj) == 1
obj._hash = 123123123
assert hash(obj) == 123123123
# verify it's not caching in any form
del obj._hash
with pytest.raises(AttributeError):
hash(obj)
class cls2:
__hash__ = self.func('_dar')
obj = cls2()
with pytest.raises(AttributeError):
hash(obj)
obj._dar = 4
assert hash(obj) == 4
class TestImmutableInstance:
def test_metaclass(self):
self.common_test(lambda x: x, metaclass=klass.immutable_instance)
def test_injection(self):
def f(scope):
klass.inject_immutable_instance(scope)
self.common_test(f)
def common_test(self, modify_kls, **kwargs):
class kls(**kwargs):
modify_kls(locals())
o = kls()
with pytest.raises(AttributeError):
setattr(o, "dar", "foon")
with pytest.raises(AttributeError):
delattr(o, "dar")
object.__setattr__(o, 'dar', 'foon')
with pytest.raises(AttributeError):
delattr(o, "dar")
# ensure it only sets it if nothing is in place already.
class kls(**kwargs):
def __setattr__(self, attr, value):
raise TypeError(self)
modify_kls(locals())
o = kls()
with pytest.raises(TypeError):
setattr(o, "dar", "foon")
with pytest.raises(AttributeError):
delattr(o, "dar")
class TestAliasMethod:
func = staticmethod(klass.alias_method)
def test_alias_method(self):
class kls:
__len__ = lambda s: 3
lfunc = self.func("__len__")
c = kls()
assert c.__len__() == c.lfunc()
c.__len__ = lambda: 4
assert c.__len__() == c.lfunc()
class TestPatch:
def setup_method(self, method):
# cache original methods
self._math_ceil = math.ceil
self._math_floor = math.floor
def teardown_method(self, method):
# restore original methods
math.ceil = self._math_ceil
math.floor = self._math_floor
def test_patch(self):
n = 0.1
assert math.ceil(n) == 1
@klass.patch('math.ceil')
def ceil(orig_ceil, n):
return math.floor(n)
assert math.ceil(n) == 0
def test_multiple_patches(self):
n = 1.1
assert math.ceil(n) == 2
assert math.floor(n) == 1
@klass.patch('math.ceil')
@klass.patch('math.floor')
def zero(orig_func, n):
return 0
assert math.ceil(n) == 0
assert math.floor(n) == 0
|