-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_config.py
200 lines (133 loc) · 5.7 KB
/
test_config.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
import os
import yaml
from pathlib import Path
from tempfile import TemporaryDirectory
import bokehlab
def test1():
# test writing config
with TemporaryDirectory() as td:
bokehlab.CONFIG_DIR = Path(td)
bokehlab.CONFIG_FILE = Path(td)/'bokehlab.yaml'
from bokehlab.bokehlab_magic import bokehlab_config
bokehlab_config("-g resources='inline'")
assert bokehlab.CONFIG_FILE.open().read() == yaml.dump({'resources': 'inline'})
print('ok')
def test1a():
# test writing config - complex key
with TemporaryDirectory() as td:
bokehlab.CONFIG_DIR = Path(td)
bokehlab.CONFIG_FILE = Path(td)/'bokehlab.yaml'
from bokehlab.bokehlab_magic import bokehlab_config
bokehlab_config('-g figure.width=200')
assert bokehlab.CONFIG_FILE.open().read() == yaml.dump({'figure': {'width': 200}})
print('ok')
def test2():
# test reading config
with TemporaryDirectory() as td:
bokehlab.CONFIG_DIR = Path(td)
bokehlab.CONFIG_FILE = Path(td)/'bokehlab.yaml'
from bokehlab import load_config
bokehlab.CONFIG_FILE.open('w').write(yaml.dump({'resources': 'inline'}))
load_config()
assert bokehlab.CONFIG['resources'] == 'inline'
print('ok')
def test2a():
# test reading config - complex key
with TemporaryDirectory() as td:
bokehlab.CONFIG_DIR = Path(td)
bokehlab.CONFIG_FILE = Path(td)/'bokehlab.yaml'
from bokehlab.bokehlab_magic import bokehlab_config
bokehlab.CONFIG_FILE.open('w').write(yaml.dump({'figure': {'width': 200}}))
load_config()
assert bokehlab.CONFIG.get('figure', {}).get('width') == 200
print('ok')
def test3():
# test setting config
from bokehlab.bokehlab_magic import bokehlab_config
bokehlab_config("resources='inline'")
assert bokehlab.CONFIG['resources'] == 'inline'
print('ok')
def test3a():
# test setting config - complex key
from bokehlab.bokehlab_magic import bokehlab_config
bokehlab_config('figure.width=200')
assert bokehlab.CONFIG['figure']['width'] == 200
print('ok')
def test4():
# test overriding saved config
with TemporaryDirectory() as td:
bokehlab.CONFIG_DIR = Path(td)
bokehlab.CONFIG_FILE = Path(td)/'bokehlab.yaml'
from bokehlab.bokehlab_magic import bokehlab_config
bokehlab.CONFIG_FILE.open('w').write(yaml.dump({'resources': 'inline'}))
bokehlab_config("resources='local'")
assert bokehlab.CONFIG['resources'] == 'local'
print('ok')
def test4a():
# test overriding saved config - complex key
with TemporaryDirectory() as td:
bokehlab.CONFIG_DIR = Path(td)
bokehlab.CONFIG_FILE = Path(td)/'bokehlab.yaml'
from bokehlab.bokehlab_magic import bokehlab_config
bokehlab.CONFIG_FILE.open('w').write(yaml.dump({'figure': {'width': 200}}))
bokehlab_config('figure.width=300')
assert bokehlab.CONFIG.get('figure', {}).get('width') == 300
print('ok')
def test5():
# test deleting a key
with TemporaryDirectory() as td:
bokehlab.CONFIG_DIR = Path(td)
bokehlab.CONFIG_FILE = Path(td)/'bokehlab.yaml'
from bokehlab.bokehlab_magic import bokehlab_config
bokehlab.CONFIG_FILE.open('w').write(yaml.dump({'resources': 'inline'}))
bokehlab_config('-d resources')
assert 'resources' not in bokehlab.CONFIG
print('ok')
def test5a():
# test deleting a complex key
with TemporaryDirectory() as td:
bokehlab.CONFIG_DIR = Path(td)
bokehlab.CONFIG_FILE = Path(td)/'bokehlab.yaml'
from bokehlab.bokehlab_magic import bokehlab_config
bokehlab.CONFIG_FILE.open('w').write(yaml.dump({
'figure': {'width': 200, 'height': 100}}))
bokehlab_config('-d figure.width')
assert 'width' not in bokehlab.CONFIG.get('figure', {})
print('ok')
def test6():
# test deleting a key in config file
with TemporaryDirectory() as td:
bokehlab.CONFIG_DIR = Path(td)
bokehlab.CONFIG_FILE = Path(td)/'bokehlab.yaml'
from bokehlab.bokehlab_magic import bokehlab_config
bokehlab.CONFIG_FILE.open('w').write(yaml.dump({'resources': 'inline'}))
bokehlab_config('-g -d resources')
on_disk = yaml.load(bokehlab.CONFIG_FILE.open().read())
assert 'resources' not in on_disk.get('figure', {})
print('ok')
def test6a():
# test deleting a complex key in config file
with TemporaryDirectory() as td:
bokehlab.CONFIG_DIR = Path(td)
bokehlab.CONFIG_FILE = Path(td)/'bokehlab.yaml'
from bokehlab.bokehlab_magic import bokehlab_config
bokehlab.CONFIG_FILE.open('w').write(yaml.dump({
'figure': {'width': 200, 'height': 100}}))
bokehlab_config('-g -d figure.width')
on_disk = yaml.load(bokehlab.CONFIG_FILE.open().read())
assert 'width' not in on_disk.get('figure', {})
print('ok')
def test7():
# test overriding saved config
with TemporaryDirectory() as td:
bokehlab.CONFIG_DIR = Path(td)
bokehlab.CONFIG_FILE = Path(td)/'bokehlab.yaml'
from bokehlab_magic import bokehlab_config
bokehlab.CONFIG_FILE.open('w').write(yaml.dump({'figure': {'width': 200}}))
bokehlab_config('--clear --force')
assert not os.path.exists(bokehlab.CONFIG_FILE)
print('ok')
test1()
test2()
test3()
test4()