-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathtest_mlc_access.py
More file actions
443 lines (390 loc) · 11.5 KB
/
test_mlc_access.py
File metadata and controls
443 lines (390 loc) · 11.5 KB
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
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
import os
import subprocess
import mlc
def process_output(target, action, res):
if action in ["find"]:
if "list" not in res:
raise Exception("'list' entry not found in find result")
return # Exit function if there's an error
if len(res['list']) == 0:
print(f""" WARNING: No entry found for the particular action and target!""")
else:
for item in res['list']:
print(f"""Item path: {item.path}""")
if action == "show":
print(f"{target} meta:")
print(item.meta)
def test_find_repo():
# This function is seperately written to include the actions which is needed to be tested in a forked repository
###### TEST - find repo
print("###### TEST - find repo")
# format: <repo_owner>@<repos_name>
res = mlc.access({
"target": "repo",
"action": "find",
"repo": "anandhu-eng@mlperf-automations"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
else:
print("Output - TEST(find repo) - <repo_owner>@<repos_name>")
process_output("repo", "find", res)
# format: <repo_url>
res = mlc.access({
"target": "repo",
"action": "find",
"repo": "https://github.com/mlcommons/mlperf-automations.git"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
else:
print("Output - TEST(find repo) - <repo_url>")
process_output("repo", "find", res)
# format: <repo_uid>
res = mlc.access({
"target": "repo",
"action": "find",
"repo": "9cf241afa6074c89"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
else:
print("Output - TEST(find repo) - <repo_uid>")
process_output("repo", "find", res)
# format: <repo_alias>
res = mlc.access({
"target": "repo",
"action": "find",
"repo": "mlcommons@mlperf-automations"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
else:
print("Output - TEST(find repo) - <repo_alias>")
process_output("repo", "find", res)
# format: <repo_alias>,<repo_uid>
res = mlc.access({
"target": "repo",
"action": "find",
"repo": "mlcommons@mlperf-automations,9cf241afa6074c89"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
else:
print("Output - TEST(find repo) - <repo_alias>,<repo_uid>")
process_output("repo", "find", res)
print("###### TEST find repo SUCCESSFUL.")
def test_list_repo():
print("###### TEST - list repo")
res = mlc.access({
"target": "repo",
"action": "list"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
print("###### TEST list repo SUCCESSFUL.")
def test_find_cache():
print("###### TEST - find cache")
res = mlc.access({
"target": "cache",
"action": "find",
"tags": "get,imagenet-aux"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
else:
print("Output - TEST(find cache)")
process_output("cache", "find" ,res)
print("###### TEST find cache SUCCESSFUL.")
def test_show_cache():
print("###### TEST - show cache")
res = mlc.access({
"target": "cache",
"action": "show",
"tags": "get,imagenet-aux"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
else:
print("Output - TEST(show cache)")
process_output("cache", "show" ,res)
print("###### TEST show cache SUCCESSFUL.")
def test_rm_cache():
print("###### TEST - rm cache")
res = mlc.access({
"target": "cache",
"action": "rm",
"tags": "get,imagenet-aux",
"target": "cache",
"f": True
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
def test_cp_script():
print("###### TEST - cp script")
res = mlc.access({
"target": "script",
"action": "cp",
"src": "detect-os",
"dest": "my-os-detect"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
print("###### TEST cp script SUCCESSFUL.")
def test_add_repo():
print("###### TEST - add repo")
res = mlc.access({
"target": "repo",
"action": "add",
"repo": "my-new-repo"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
else:
print(f"Successfully added repo")
res = mlc.access({
"target": "repo",
"action": "add",
"repo": "https://github.com/mlcommons/inference"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
else:
print(f"Successfully added repo")
res = mlc.access({
"target": "repo",
"action": "add",
"repo": "https://mygit.com/myrepo"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
else:
print(f"Successfully added repo")
print("###### TEST add repo SUCCESSFUL.")
def test_add_script():
print("###### TEST - add script")
res = mlc.access({
"target": "script",
"action": "add",
"item": "my-script-1",
"tags": "my,new-tags-1"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
else:
print("script with alias my-script-1 successfully added")
res = mlc.access({
"target": "script",
"action": "add",
"item": "my-script-2",
"tags": "my,new-tags-2"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
else:
print("script with alias my-script-2 successfully added")
res = mlc.access({
"target": "script",
"action": "add",
"item": "my-script-3",
"tags": "my,new-tags-3",
"template_tags": "detect,cpu"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
else:
print("script with alias my-script-3 successfully added")
res = mlc.access({
"target": "script",
"action": "add",
"item": "mlcommons@mlperf-automations:my-script-4",
"tags": "my,new-tags-4",
"template_tags": "detect,cpu"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
else:
print("script with alias my-script-4 successfully added")
print("###### TEST add script SUCCESSFUL.")
def test_mv_script():
res = mlc.access({
"target": "script",
"action": "mv",
"src": "my-script-1",
"dest": "moved-my-script-1"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
res = mlc.access({
"target": "script",
"action": "mv",
"src": "my-script-2",
"dest": "mlcommons@mlperf-automations:moved-my-script-2"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
print("###### TEST mv script SUCCESSFUL.")
def test_show_script():
print("###### TEST - show script")
res = mlc.access({
"target": "script",
"action": "show",
"tags": "run-mlperf,inference"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
else:
print("Output - TEST(show cache)")
process_output("script", "show" ,res)
res = mlc.access({
"target": "script",
"action": "show",
"uid": "863735b7db8c44fc"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
else:
print("Output - TEST(show cache)")
process_output("script", "show" ,res)
res = mlc.access({
"target": "script",
"action": "show",
"alias": "detect-os,863735b7db8c44fc"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
else:
print("Output - TEST(show cache)")
process_output("script", "show" ,res)
res = mlc.access({
"target": "script",
"action": "show",
"alias": "detect-os"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
else:
print("Output - TEST(show cache)")
process_output("script", "show" ,res)
print("###### TEST show script SUCCESSFUL.")
def test_find_script():
print("###### TEST - find script")
res = mlc.access({
"target": "script",
"action": "find",
"tags": "run-mlperf,inference"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
else:
print("Output - TEST(find script)")
process_output("script", "find" ,res)
res = mlc.access({
"target": "script",
"action": "find",
"uid": "863735b7db8c44fc"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
else:
print("Output - TEST(find script)")
process_output("script", "find" ,res)
res = mlc.access({
"target": "script",
"action": "find",
"alias": "detect-os,863735b7db8c44fc"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
else:
print("Output - TEST(find script)")
process_output("script", "find" ,res)
res = mlc.access({
"target": "script",
"action": "find",
"alias": "detect-os"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
else:
print("Output - TEST(find script)")
process_output("script", "find" ,res)
print("###### TEST find script SUCCESSFUL.")
def test_rm_script():
print("###### TEST - rm script")
res = mlc.access({
"target": "script",
"action": "rm",
"tags": "app,image,corner-detection",
"f": True
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
res = mlc.access({
"target": "script",
"action": "rm",
"item": "get-ipol-src",
"f": True
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
res = mlc.access({
"target": "script",
"action": "rm",
"item": "63080407db4d4ac4",
"f": True
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
print("###### TEST rm script SUCCESSFUL.")
def test_list_script():
print("###### TEST - list script")
res = mlc.access({
"target": "script",
"action": "list"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
print("###### TEST list script SUCCESSFUL.")
def test_list_cache():
print("###### TEST - list cache")
res = mlc.access({
"target": "cache",
"action": "list"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
print("###### TEST list cache SUCCESSFUL.")
def test_run_script():
print("###### TEST - run script")
res = mlc.access({
"target": "script",
"action": "run",
"tags": "get,imagenet-aux"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
res = mlc.access({
"target": "script",
"action": "run",
"tags": "get,imagenet-aux,_from.dropbox"
})
if res['return'] > 0:
raise Exception(f"{res['error']}")
print("###### TEST run script SUCCESSFUL.")
def run_tests():
test_list_repo()
test_find_cache()
test_run_script()
test_find_cache()
test_show_cache()
test_rm_cache()
test_cp_script()
test_add_repo()
test_add_script()
test_mv_script()
test_show_script()
test_find_script()
test_rm_script()
test_list_script()
test_list_cache()