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 pathtest_public_api.py
347 lines (259 loc) · 9.86 KB
/
test_public_api.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
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
"""
test_wandb
----------------------------------
Tests for the `wandb.apis.PublicApi` module.
"""
import os
import json
import pytest
import platform
import wandb
from wandb import Api
@pytest.fixture
def api(runner):
return Api()
def test_api_auto_login_no_tty(mocker):
with pytest.raises(wandb.UsageError):
Api()
def test_parse_project_path(api):
e, p = api._parse_project_path("user/proj")
assert e == "user"
assert p == "proj"
def test_parse_project_path_proj(api, mock_server):
e, p = api._parse_project_path("proj")
assert e == "mock_server_entity"
assert p == "proj"
def test_parse_path_simple(api):
u, p, r = api._parse_path("user/proj/run")
assert u == "user"
assert p == "proj"
assert r == "run"
def test_parse_path_leading(api):
u, p, r = api._parse_path("/user/proj/run")
assert u == "user"
assert p == "proj"
assert r == "run"
def test_parse_path_docker(api):
u, p, r = api._parse_path("user/proj:run")
assert u == "user"
assert p == "proj"
assert r == "run"
def test_parse_path_docker_proj(mock_server, api):
u, p, r = api._parse_path("proj:run")
assert u == "mock_server_entity"
assert p == "proj"
assert r == "run"
def test_parse_path_url(api):
u, p, r = api._parse_path("user/proj/runs/run")
assert u == "user"
assert p == "proj"
assert r == "run"
def test_parse_path_user_proj(mock_server, api):
u, p, r = api._parse_path("proj/run")
assert u == "mock_server_entity"
assert p == "proj"
assert r == "run"
def test_parse_path_proj(mock_server, api):
u, p, r = api._parse_path("proj")
assert u == "mock_server_entity"
assert p == "proj"
assert r == "proj"
def test_run_from_path(mock_server, api):
run = api.run("test/test/test")
assert run.summary_metrics == {"acc": 100, "loss": 0}
def test_run_retry(mock_server, api):
mock_server.set_context("fail_graphql_times", 2)
run = api.run("test/test/test")
assert run.summary_metrics == {"acc": 100, "loss": 0}
def test_run_history(mock_server, api):
run = api.run("test/test/test")
assert run.history(pandas=False)[0] == {'acc': 10, 'loss': 90}
def test_run_history_keys(mock_server, api):
run = api.run("test/test/test")
assert run.history(keys=["acc", "loss"], pandas=False) == [
{"loss": 0, "acc": 100}, {"loss": 1, "acc": 0}]
def test_run_config(mock_server, api):
run = api.run("test/test/test")
assert run.config == {'epochs': 10}
def test_run_history_system(mock_server, api):
run = api.run("test/test/test")
assert run.history(stream="system", pandas=False) == [
{'cpu': 10}, {'cpu': 20}, {'cpu': 30}]
def test_run_summary(mock_server, api):
run = api.run("test/test/test")
run.summary.update({"cool": 1000})
res = json.loads(mock_server.ctx["graphql"][-1]["variables"]["summaryMetrics"])
assert {"acc": 100, "loss": 0, "cool": 1000} == res
def test_run_create(mock_server, api):
run = api.create_run(project="test")
variables = {'entity': "mock_server_entity", 'name': run.id, 'project': 'test'}
assert mock_server.ctx["graphql"][-1]["variables"] == variables
def test_run_update(mock_server, api):
run = api.run("test/test/test")
run.tags.append("test")
run.config["foo"] = "bar"
run.update()
res = json.loads(mock_server.ctx["graphql"][-1]["variables"]["summaryMetrics"])
assert {"acc": 100, "loss": 0} == res
assert mock_server.ctx["graphql"][-2]["variables"]["entity"] == "test"
def test_run_files(runner, mock_server, api):
with runner.isolated_filesystem():
run = api.run("test/test/test")
file = run.files()[0]
file.download()
assert os.path.exists("weights.h5")
raised = False
try:
file.download()
except wandb.CommError:
raised = True
assert raised
def test_run_file(runner, mock_server, api):
with runner.isolated_filesystem():
run = api.run("test/test/test")
file = run.file("weights.h5")
assert not os.path.exists("weights.h5")
file.download()
assert os.path.exists("weights.h5")
def test_run_upload_file(runner, mock_server, api):
with runner.isolated_filesystem():
run = api.run("test/test/test")
with open("new_file.pb", "w") as f:
f.write("TEST")
file = run.upload_file("new_file.pb")
assert file.url == "https://api.wandb.ai//storage?file=new_file.pb"
def test_run_upload_file_relative(runner, mock_server, api):
with runner.isolated_filesystem():
run = api.run("test/test/test")
wandb.util.mkdir_exists_ok("foo")
os.chdir("foo")
with open("new_file.pb", "w") as f:
f.write("TEST")
file = run.upload_file("new_file.pb", "../")
assert file.url == "https://api.wandb.ai//storage?file=foo/new_file.pb"
def test_upload_file_retry(runner, mock_server, api):
mock_server.set_context("fail_storage_count", 4)
with runner.isolated_filesystem():
run = api.run("test/test/test")
with open("new_file.pb", "w") as f:
f.write("TEST")
file = run.upload_file("new_file.pb")
assert file.url == "https://api.wandb.ai//storage?file=new_file.pb"
def test_runs_from_path(mock_server, api):
runs = api.runs("test/test")
assert len(runs) == 4
list(runs)
assert len(runs.objects) == 2
assert runs[0].summary_metrics == {"acc": 100, "loss": 0}
def test_runs_from_path_index(mock_server, api):
mock_server.set_context("page_times", 4)
runs = api.runs("test/test")
assert len(runs) == 4
print(list(runs))
assert runs[3]
assert len(runs.objects) == 4
def test_projects(mock_server, api):
projects = api.projects("test")
# projects doesn't provide a length for now, so we iterate
# them all to count
count = 0
for proj in projects:
count += 1
assert count == 2
def test_artifact_versions(runner, mock_server, api):
versions = api.artifact_versions("dataset", "mnist")
assert len(versions) == 2
assert versions[0].name == "mnist:v0"
assert versions[1].name == "mnist:v1"
def test_artifact_type(runner, mock_server, api):
atype = api.artifact_type("dataset")
assert atype.name == "dataset"
col = atype.collection("mnist")
assert col.name == "mnist"
cols = atype.collections()
assert cols[0].name == "mnist"
def test_artifact_types(runner, mock_server, api):
atypes = api.artifact_types("dataset")
raised = False
try:
assert len(atypes) == 2
except ValueError:
raised = True
assert raised
assert atypes[0].name == "dataset"
def test_artifact_get_path(runner, mock_server, api):
art = api.artifact("entity/project/mnist:v0", type="dataset")
assert art.type == "dataset"
assert art.name == "mnist:v0"
with runner.isolated_filesystem():
path = art.get_path("digits.h5")
res = path.download()
path = os.path.join(os.path.expanduser("~"), ".cache", "wandb", "artifacts",
"obj", "md5", "4d", "e489e31c57834a21b8be7111dab613")
assert res == path
def test_artifact_get_path_download(runner, mock_server, api):
with runner.isolated_filesystem():
art = api.artifact("entity/project/mnist:v0", type="dataset")
path = art.get_path("digits.h5").download(os.getcwd())
assert os.path.exists("./digits.h5")
assert path == os.path.join(os.getcwd(), "digits.h5")
def test_artifact_file(runner, mock_server, api):
with runner.isolated_filesystem():
art = api.artifact("entity/project/mnist:v0", type="dataset")
path = art.file()
if platform.system() == "Windows":
part = "mnist-v0"
else:
part = "mnist:v0"
assert path == os.path.join(".", "artifacts", part, "digits.h5")
def test_artifact_download(runner, mock_server, api):
with runner.isolated_filesystem():
art = api.artifact("entity/project/mnist:v0", type="dataset")
path = art.download()
if platform.system() == "Windows":
part = "mnist-v0"
else:
part = "mnist:v0"
assert path == os.path.join(".", "artifacts", part)
def test_artifact_run_used(runner, mock_server, api):
run = api.run("test/test/test")
arts = run.used_artifacts()
assert len(arts) == 2
assert arts[0].name == "mnist:v0"
def test_artifact_run_logged(runner, mock_server, api):
run = api.run("test/test/test")
arts = run.logged_artifacts()
assert len(arts) == 2
assert arts[0].name == "mnist:v0"
def test_artifact_manual_use(runner, mock_server, api):
run = api.run("test/test/test")
art = api.artifact("entity/project/mnist:v0", type="dataset")
run.use_artifact(art)
assert True
def test_artifact_manual_log(runner, mock_server, api):
run = api.run("test/test/test")
art = api.artifact("entity/project/mnist:v0", type="dataset")
run.log_artifact(art)
assert True
def test_artifact_manual_error(runner, mock_server, api):
run = api.run("test/test/test")
art = wandb.Artifact("test", type="dataset")
with pytest.raises(wandb.CommError):
run.log_artifact(art)
with pytest.raises(wandb.CommError):
run.use_artifact(art)
with pytest.raises(wandb.CommError):
run.use_artifact("entity/project/mnist:v0")
with pytest.raises(wandb.CommError):
run.log_artifact("entity/project/mnist:v0")
@pytest.mark.skipif(platform.system() == "Windows",
reason="Verify is broken on Windows")
def test_artifact_verify(runner, mock_server, api):
art = api.artifact("entity/project/mnist:v0", type="dataset")
art.download()
with pytest.raises(ValueError):
art.verify()
def test_sweep(runner, mock_server, api):
sweep = api.sweep("test/test/test")
assert sweep.entity == "test"
assert sweep.best_run().name == "beast-bug-33"