-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathtest_threading_local.py
82 lines (64 loc) · 1.8 KB
/
test_threading_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
"""Test the ThreadingLocal module."""
from threading import Thread
from dbutils.persistent_db import local
def test_getattr():
my_data = local()
my_data.number = 42
assert my_data.number == 42
def test_dict():
my_data = local()
my_data.number = 42
assert my_data.__dict__ == {'number': 42}
my_data.__dict__.setdefault('widgets', [])
assert my_data.widgets == []
def test_threadlocal():
def f():
items = sorted(my_data.__dict__.items())
log.append(items)
my_data.number = 11
log.append(my_data.number)
my_data = local()
my_data.number = 42
log = []
thread = Thread(target=f)
thread.start()
thread.join()
assert log == [[], 11]
assert my_data.number == 42
def test_subclass():
class MyLocal(local):
number = 2
initialized = 0
def __init__(self, **kw):
if self.initialized:
raise SystemError
self.initialized = 1
self.__dict__.update(kw)
def squared(self):
return self.number ** 2
my_data = MyLocal(color='red')
assert my_data.number == 2
assert my_data.color == 'red'
del my_data.color
assert my_data.squared() == 4
def f():
items = sorted(my_data.__dict__.items())
log.append(items)
my_data.number = 7
log.append(my_data.number)
log = []
thread = Thread(target=f)
thread.start()
thread.join()
assert log == [[('color', 'red'), ('initialized', 1)], 7]
assert my_data.number == 2
assert not hasattr(my_data, 'color')
class MyLocal(local):
__slots__ = ('number',)
my_data = MyLocal()
my_data.number = 42
my_data.color = 'red'
thread = Thread(target=f)
thread.start()
thread.join()
assert my_data.number == 7