This repository was archived by the owner on Sep 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathwandb_settings_test.py
224 lines (168 loc) · 5.58 KB
/
wandb_settings_test.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
"""
settings test.
"""
import pytest # type: ignore
from wandb import Settings
import os
import copy
def test_attrib_get():
s = Settings()
s.setdefaults()
assert s.base_url == "https://api.wandb.ai"
def test_attrib_set():
s = Settings()
s.base_url = "this"
assert s.base_url == "this"
def test_attrib_get_bad():
s = Settings()
with pytest.raises(AttributeError):
s.missing
def test_attrib_set_bad():
s = Settings()
with pytest.raises(AttributeError):
s.missing = "nope"
def test_update_dict():
s = Settings()
s.update(dict(base_url="something2"))
assert s.base_url == "something2"
def test_update_kwargs():
s = Settings()
s.update(base_url="something")
assert s.base_url == "something"
def test_update_both():
s = Settings()
s.update(dict(base_url="somethingb"), project="nothing")
assert s.base_url == "somethingb"
assert s.project == "nothing"
def test_ignore_globs():
s = Settings()
s.setdefaults()
assert s.ignore_globs == ()
def test_ignore_globs_explicit():
s = Settings(ignore_globs=["foo"])
s.setdefaults()
assert s.ignore_globs == ("foo",)
def test_ignore_globs_env():
s = Settings()
s._apply_environ({"WANDB_IGNORE_GLOBS": "foo,bar"})
s.setdefaults()
assert s.ignore_globs == ("foo", "bar",)
@pytest.mark.skip(reason="I need to make my mock work properly with new settings")
def test_ignore_globs_settings(local_settings):
with open(os.path.join(os.getcwd(), ".config", "wandb", "settings"), "w") as f:
f.write("""[default]
ignore_globs=foo,bar""")
s = Settings(_files=True)
s.setdefaults()
assert s.ignore_globs == ("foo", "bar",)
def test_copy():
s = Settings()
s.update(base_url="changed")
s2 = copy.copy(s)
assert s2.base_url == "changed"
s.update(base_url="notchanged")
assert s.base_url == "notchanged"
assert s2.base_url == "changed"
def test_invalid_dict():
s = Settings()
with pytest.raises(KeyError):
s.update(dict(invalid="new"))
def test_invalid_kwargs():
s = Settings()
with pytest.raises(KeyError):
s.update(invalid="new")
def test_invalid_both():
s = Settings()
with pytest.raises(KeyError):
s.update(dict(project="ok"), invalid="new")
assert s.project != "ok"
with pytest.raises(KeyError):
s.update(dict(wrong="bad", entity="nope"), project="okbutnotset")
assert s.entity != "nope"
assert s.project != "okbutnotset"
def test_freeze():
s = Settings()
s.project = "goodprojo"
assert s.project == "goodprojo"
s.freeze()
with pytest.raises(TypeError):
s.project = "badprojo"
assert s.project == "goodprojo"
with pytest.raises(TypeError):
s.update(project="badprojo2")
assert s.project == "goodprojo"
c = copy.copy(s)
assert c.project == "goodprojo"
c.project = "changed"
assert c.project == "changed"
def test_bad_choice():
s = Settings()
with pytest.raises(TypeError):
s.mode = "goodprojo"
with pytest.raises(TypeError):
s.update(mode="badpro")
def test_prio_update_ok():
s = Settings()
s.update(project="pizza", _source=s.Source.ENTITY)
assert s.project == "pizza"
s.update(project="pizza2", _source=s.Source.PROJECT)
assert s.project == "pizza2"
def test_prio_update_ignore():
s = Settings()
s.update(project="pizza", _source=s.Source.PROJECT)
assert s.project == "pizza"
s.update(project="pizza2", _source=s.Source.ENTITY)
assert s.project == "pizza"
def test_prio_update_over_ok():
s = Settings()
s.update(project="pizza", _source=s.Source.PROJECT)
assert s.project == "pizza"
s.update(project="pizza2", _source=s.Source.ENTITY, _override=True)
assert s.project == "pizza2"
def test_prio_update_over_both_ok():
s = Settings()
s.update(project="pizza", _source=s.Source.PROJECT, _override=True)
assert s.project == "pizza"
s.update(project="pizza2", _source=s.Source.ENTITY, _override=True)
assert s.project == "pizza2"
def test_prio_update_over_ignore():
s = Settings()
s.update(project="pizza", _source=s.Source.ENTITY, _override=True)
assert s.project == "pizza"
s.update(project="pizza2", _source=s.Source.PROJECT, _override=True)
assert s.project == "pizza"
def test_prio_context_ok():
s = Settings()
s.update(project="pizza", _source=s.Source.ENTITY)
assert s.project == "pizza"
with s._as_source(s.Source.PROJECT) as s2:
s2.project="pizza2"
assert s.project == "pizza2"
def test_prio_context_ignore():
s = Settings()
s.update(project="pizza", _source=s.Source.PROJECT)
assert s.project == "pizza"
with s._as_source(s.Source.ENTITY) as s2:
s2.project="pizza2"
assert s.project == "pizza"
def test_prio_context_over_ok():
s = Settings()
s.update(project="pizza", _source=s.Source.PROJECT)
assert s.project == "pizza"
with s._as_source(s.Source.ENTITY, override=True) as s2:
s2.project="pizza2"
assert s.project == "pizza2"
def test_prio_context_over_both_ok():
s = Settings()
s.update(project="pizza", _source=s.Source.PROJECT, _override=True)
assert s.project == "pizza"
with s._as_source(s.Source.ENTITY, override=True) as s2:
s2.project="pizza2"
assert s.project == "pizza2"
def test_prio_context_over_ignore():
s = Settings()
s.update(project="pizza", _source=s.Source.ENTITY, _override=True)
assert s.project == "pizza"
with s._as_source(s.Source.PROJECT, override=True) as s2:
s2.project="pizza2"
assert s.project == "pizza"