-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathtest_local.py
173 lines (138 loc) · 3.59 KB
/
test_local.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
import copy
from sea.local import Proxy
def test_std_class_attributes():
assert Proxy.__name__ == 'Proxy'
assert Proxy.__module__ == 'sea.local'
assert Proxy.__qualname__ == 'sea.local'
assert isinstance(Proxy.__doc__, str)
def test_name():
def real():
"""real function"""
return 'REAL'
x = Proxy(lambda: real)
assert x.__name__ == 'real'
assert x.__doc__ == 'real function'
assert x.__class__ == type(real)
assert x.__dict__ == real.__dict__
assert repr(x) == repr(real)
assert x.__module__
def test_local_proxy_operations_list():
foo = []
ls = Proxy(lambda: foo)
ls.append(42)
ls.append(23)
ls[1:] = [1, 2, 3]
assert foo == [42, 1, 2, 3]
assert repr(foo) == repr(ls)
assert foo[0] == 42
foo += [1]
assert list(foo) == [42, 1, 2, 3, 1]
del ls[0]
assert list(foo) == [1, 2, 3, 1]
assert len(ls) == 4
assert list(iter(ls)) == [1, 2, 3, 1]
assert 1 in ls
def test_local_proxy_operations_math():
foo = 2
ls = Proxy(lambda: foo)
assert ls + 1 == 3
assert 1 + ls == 3
assert ls - 1 == 1
assert 1 - ls == -1
assert ls * 1 == 2
assert 1 * ls == 2
assert ls / 1 == 2
assert 1.0 / ls == 0.5
assert ls // 1.0 == 2.0
assert 1.0 // ls == 0.0
assert ls % 2 == 0
assert 2 % ls == 0
assert 2 == foo
assert ls == 2
assert ls != 1
assert ls > 1
assert ls >= 1
assert ls < 4
assert ls <= 4
assert divmod(ls, 1) == (2, 0)
assert divmod(4, ls) == (2, 0)
assert ls ** 2 == 4
assert ls >> 2 == 0
assert ls << 10 == 2048
assert ls ^ 3 == 1
assert ls & 3 == 2
assert ls | 5 == 7
assert -ls == -foo
assert +ls == +foo
assert abs(ls) == abs(foo)
assert ~ls == ~foo
assert complex(ls) == complex(foo)
assert float(ls) == float(foo)
assert int(ls) == int(foo)
assert oct(ls) == oct(foo)
assert hex(ls) == hex(foo)
def test_local_proxy_operations_boolean():
foo = object()
ls = Proxy(lambda: foo)
assert ls and True
assert not (ls and False)
assert (ls or False) == foo
def test_hash():
foo = 2
ls = Proxy(lambda: foo)
assert hash(ls) == hash(foo)
def test_call():
l = lambda x: x
ls = Proxy(lambda: l)
assert ls(2) == l(2)
def test_dir():
foo = 2
ls = Proxy(lambda: foo)
assert dir(ls) == dir(foo)
assert ls.__members__ == dir(foo)
def test_set_get_del():
class A:
def __init__(self):
self.b = 1
a = A()
ls = Proxy(lambda: a)
delattr(ls, 'b')
assert not hasattr(ls, 'b')
assert not hasattr(a, 'b')
a.x = 2
assert hasattr(a, 'x')
def test_local_proxy_operations_strings():
foo = "foo"
ls = Proxy(lambda: foo)
assert str(ls) == "foo"
assert ls + "bar" == "foobar"
assert "bar" + ls == "barfoo"
assert ls * 2 == "foofoo"
foo = "foo %s"
assert ls % ("bar",) == "foo bar"
def test_local_proxies_with_callables():
foo = 42
ls = Proxy(lambda: foo)
assert ls == 42
foo = [23]
ls.append(42)
assert ls == [23, 42]
assert foo == [23, 42]
def test_deepcopy_on_proxy():
class Foo(object):
attr = 42
def __copy__(self):
return self
def __deepcopy__(self, memo):
return self
f = Foo()
p = Proxy(lambda: f)
assert p.attr == 42
assert copy.deepcopy(p) is f
assert copy.copy(p) is f
a = []
p2 = Proxy(lambda: [a])
assert copy.copy(p2) == [a]
assert copy.copy(p2)[0] is a
assert copy.deepcopy(p2) == [a]
assert copy.deepcopy(p2)[0] is not a