-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathtest_joshua_model.py
555 lines (459 loc) · 16.4 KB
/
test_joshua_model.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
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
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
import io
import joshua.joshua as joshua
import joshua.joshua_agent as joshua_agent
import joshua.joshua_model as joshua_model
import math
import os
import pathlib
import pytest
import random
import shutil
import socket
import subprocess
import tarfile
import tempfile
import threading
import threading
import time
import boto3
from moto import mock_s3
from typing import BinaryIO
import fdb
fdb.api_version(630)
#################### Fixtures ####################
# https://docs.pytest.org/en/stable/fixture.html
def getFreePort():
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.bind(("", 0))
addr = s.getsockname()
result = addr[1]
s.close()
return result
class EnsembleFactory:
def __init__(self, tmp_path):
self.file_name = os.path.join(tmp_path, "ensemble.tar.gz")
self.ensemble = tarfile.open(self.file_name, "w:gz")
@staticmethod
def with_script(tmp_path, script_contents):
factory = EnsembleFactory(tmp_path)
factory.add_bash_script("joshua_test", script_contents)
factory.add_bash_script("joshua_timeout", script_contents)
return factory
def add_bash_script(self, name, contents):
script = "#!/bin/bash\n{}".format(contents).encode("utf-8")
entry = tarfile.TarInfo(name)
entry.mode = 0o755
entry.size = len(script)
self.ensemble.addfile(entry, io.BytesIO(script))
def add_executable(self, name, f: BinaryIO):
contents: bytes = f.read()
entry = tarfile.TarInfo(name)
entry.mode = 0o755
entry.size = len(contents)
self.ensemble.addfile(entry, io.BytesIO(contents))
def done(self) -> None:
self.ensemble.close()
def empty_ensemble_factory(tmp_path, script_contents):
"""
Returns a filename whose contents is a tarball containing a joshua_test (with script_contents) and joshua_timeout
"""
factory = EnsembleFactory.with_script(tmp_path, script_contents)
factory.done()
return factory.file_name
@pytest.fixture
def empty_ensemble(tmp_path):
"""
Returns a filename whose contents is a tarball containing a passing joshua_test and joshua_timeout
"""
yield empty_ensemble_factory(tmp_path, "true")
@pytest.fixture
def empty_ensemble_timeout(tmp_path):
"""
Returns a filename whose contents is a tarball containing a joshua_test that will hang forever
"""
yield empty_ensemble_factory(tmp_path, "sleep 100000")
@pytest.fixture
def empty_ensemble_fail(tmp_path):
"""
Returns a filename whose contents is a tarball containing a failing joshua_test and joshua_timeout
"""
yield empty_ensemble_factory(tmp_path, "false")
@pytest.fixture
def empty_ensemble_joshua_done(tmp_path):
factory = EnsembleFactory.with_script(tmp_path, "true")
factory.add_bash_script('joshua_done', './joshua_done_test.py $2 $6')
with pathlib.Path(__file__).parent.joinpath('joshua_done_test.py').open('rb') as f:
factory.add_executable("joshua_done_test.py", f)
factory.done()
yield factory.file_name
@pytest.fixture(scope="session", autouse=True)
def fdb_cluster():
"""
Provision an fdb cluster for the entire test session, and call
joshua_model.open() Tear down when the test session ends.
"""
# Setup
tmp_dir = tempfile.mkdtemp()
port = getFreePort()
cluster_file = os.path.join(tmp_dir, "fdb.cluster")
with open(cluster_file, "w") as f:
f.write("abdcefg:[email protected]:{}".format(port))
proc = subprocess.Popen(
["fdbserver", "-p", "auto:{}".format(port), "-C", cluster_file], cwd=tmp_dir
)
subprocess.check_output(
["fdbcli", "-C", cluster_file, "--exec", "configure new single ssd"]
)
joshua_model.open(cluster_file)
yield cluster_file
# Teardown
proc.kill()
proc.wait()
shutil.rmtree(tmp_dir)
@pytest.fixture(scope="function", autouse=True)
def clear_db(fdb_cluster):
"""
Clear the db before each test
"""
subprocess.check_output(
["fdbcli", "-C", fdb_cluster, "--exec", 'writemode on; clearrange "" \xff']
)
#################### Tests ####################
# Each function starting with `test_` will get
# run by pytest, with an empty db.
@fdb.transactional
def get_passes(tr: fdb.Transaction, ensemble_id: str) -> int:
return joshua_model._get_snap_counter(tr, ensemble_id, "pass")
@fdb.transactional
def get_fails(tr: fdb.Transaction, ensemble_id: str) -> int:
return joshua_model._get_snap_counter(tr, ensemble_id, "fail")
def test_create_ensemble():
assert len(joshua_model.list_active_ensembles()) == 0
ensemble_id = joshua_model.create_ensemble("joshua", {}, io.BytesIO())
assert len(joshua_model.list_active_ensembles()) > 0
def test_validate_ensemble(tmp_path, empty_ensemble):
outfile = str(tmp_path) + "/" + "outfile"
assert len(joshua_model.list_active_ensembles()) == 0
# create ensemble
with open(empty_ensemble, "rb") as fin:
orighash = joshua_model.get_hash(fin)
assert orighash
print(orighash)
ensemble_id = joshua_model.create_ensemble("joshua", {}, fin)
assert len(joshua_model.list_active_ensembles()) > 0
# get ensemble
with open(outfile, "wb") as fout:
joshua_model.get_ensemble_data(ensemble_id=ensemble_id, outfile=fout)
with open(outfile, "rb") as fout:
newhash = joshua_model.get_hash(fout)
assert newhash
print(newhash)
assert orighash == newhash
@mock_s3
def test_validate_ensemble_s3(tmp_path, empty_ensemble):
bucket="test_bucket"
ensemble_path="tests" + "/" + empty_ensemble
s3url="s3:https://" + bucket + "/" + ensemble_path
outfile = str(tmp_path) + "/" + "outfile"
with open(empty_ensemble, "rb") as fin:
orighash = joshua_model.get_hash(fin)
assert orighash
print(orighash)
# upload ensemble to s3
s3 = boto3.resource("s3")
s3.create_bucket(Bucket="test_bucket")
client = boto3.client("s3")
_ = client.upload_file(empty_ensemble, bucket, ensemble_path)
# create ensemble
assert len(joshua_model.list_active_ensembles()) == 0
ensemble_id = joshua_model.create_ensemble("joshua", {}, s3url, False, True)
assert len(joshua_model.list_active_ensembles()) > 0
# get ensemble
with open(outfile, "wb") as fout:
joshua_model.get_ensemble_data(ensemble_id=ensemble_id, outfile=fout)
with open(outfile, "rb") as fout:
newhash = joshua_model.get_hash(fout)
assert newhash
print(newhash)
assert orighash == newhash
def test_agent(tmp_path, empty_ensemble):
"""
:tmp_path: https://docs.pytest.org/en/stable/tmpdir.html
"""
assert len(joshua_model.list_active_ensembles()) == 0
ensemble_id = joshua_model.create_ensemble(
"joshua/joshua", {"max_runs": 1}, open(empty_ensemble, "rb")
)
agent = threading.Thread(
target=joshua_agent.agent,
args=(),
kwargs={
"work_dir": tmp_path,
"agent_idle_timeout": 1,
},
)
agent.setDaemon(True)
agent.start()
joshua.tail_ensemble(ensemble_id, username="joshua/joshua")
agent.join()
def test_stop_ensemble(tmp_path, empty_ensemble):
"""
:tmp_path: https://docs.pytest.org/en/stable/tmpdir.html
"""
assert len(joshua_model.list_active_ensembles()) == 0
ensemble_id = joshua_model.create_ensemble(
"joshua", {"max_runs": 1e12}, open(empty_ensemble, "rb")
)
agent = threading.Thread(
target=joshua_agent.agent,
args=(),
kwargs={
"work_dir": tmp_path,
"agent_idle_timeout": 1,
},
)
agent.setDaemon(True)
agent.start()
while len(joshua_model.show_in_progress(ensemble_id)) == 0:
time.sleep(0.001)
joshua.stop_ensemble(ensemble_id, username="joshua")
assert joshua_model.show_in_progress(ensemble_id) == []
joshua.tail_ensemble(ensemble_id, username="joshua")
agent.join()
def test_dead_agent(tmp_path, empty_ensemble):
"""
:tmp_path: https://docs.pytest.org/en/stable/tmpdir.html
"""
assert len(joshua_model.list_active_ensembles()) == 0
ensemble_id = joshua_model.create_ensemble(
"joshua", {"max_runs": 1, "timeout": 1}, open(empty_ensemble, "rb")
)
# simulate another agent dying after starting a test
assert joshua_model.try_starting_test(ensemble_id, 12345)
agent = threading.Thread(
target=joshua_agent.agent,
args=(),
kwargs={
"work_dir": tmp_path,
"agent_idle_timeout": 1,
},
)
agent.setDaemon(True)
agent.start()
# Ensemble should still eventually end
joshua.tail_ensemble(ensemble_id, username="joshua")
agent.join()
def test_two_agents(tmp_path, empty_ensemble):
"""
:tmp_path: https://docs.pytest.org/en/stable/tmpdir.html
"""
@fdb.transactional
def get_started(tr):
return joshua_model._get_snap_counter(tr, ensemble_id, "started")
assert len(joshua_model.list_active_ensembles()) == 0
ensemble_id = joshua_model.create_ensemble(
"joshua", {"max_runs": 1, "timeout": 1}, open(empty_ensemble, "rb")
)
agents = []
for rank in range(2):
agent = threading.Thread(
target=joshua_agent.agent,
args=(),
kwargs={
"work_dir": os.path.join(tmp_path, str(rank)),
"agent_idle_timeout": 1,
},
)
agent.setDaemon(True)
agent.start()
agents.append(agent)
# before starting agent two, wait until agent one has started on this ensemble
while get_started(joshua_model.db) != 1:
time.sleep(0.001)
joshua.tail_ensemble(ensemble_id, username="joshua")
@fdb.transactional
def get_started(tr):
return joshua_model._get_snap_counter(tr, ensemble_id, "started")
# The second agent won't have started this ensemble (unless somehow > 10
# seconds passed without the first agent completing the ensemble)
assert get_started(joshua_model.db) == 1
for agent in agents:
agent.join()
def test_two_ensembles_memory_usage(tmp_path, empty_ensemble):
"""
:tmp_path: https://docs.pytest.org/en/stable/tmpdir.html
"""
assert len(joshua_model.list_active_ensembles()) == 0
ensemble_id = joshua_model.create_ensemble(
"joshua", {"max_runs": 1, "timeout": 1}, open(empty_ensemble, "rb")
)
agent = threading.Thread(
target=joshua_agent.agent,
args=(),
kwargs={
"work_dir": tmp_path,
"agent_idle_timeout": 1,
},
)
agent.setDaemon(True)
agent.start()
# Ensemble one should eventually end
joshua.tail_ensemble(ensemble_id, username="joshua")
# Start ensemble two
ensemble_id = joshua_model.create_ensemble(
"joshua", {"max_runs": 1, "timeout": 1}, open(empty_ensemble, "rb")
)
# Ensemble two should eventually end
joshua.tail_ensemble(ensemble_id, username="joshua")
agent.join()
def test_ensemble_passes(tmp_path, empty_ensemble):
ensemble_id = joshua_model.create_ensemble(
"joshua", {"max_runs": 1, "timeout": 1}, open(empty_ensemble, "rb")
)
agent = threading.Thread(
target=joshua_agent.agent,
args=(),
kwargs={
"work_dir": tmp_path,
"agent_idle_timeout": 1,
},
)
agent.setDaemon(True)
agent.start()
joshua.tail_ensemble(ensemble_id, username="joshua")
agent.join()
assert get_passes(joshua_model.db, ensemble_id) >= 1
assert get_fails(joshua_model.db, ensemble_id) == 0
def test_ensemble_fails(tmp_path, empty_ensemble_fail):
ensemble_id = joshua_model.create_ensemble(
"joshua", {"max_runs": 1, "timeout": 1}, open(empty_ensemble_fail, "rb")
)
agent = threading.Thread(
target=joshua_agent.agent,
args=(),
kwargs={
"work_dir": tmp_path,
"agent_idle_timeout": 1,
},
)
agent.setDaemon(True)
agent.start()
joshua.tail_ensemble(ensemble_id, username="joshua")
agent.join()
assert get_passes(joshua_model.db, ensemble_id) == 0
assert get_fails(joshua_model.db, ensemble_id) >= 1
def test_delete_ensemble(tmp_path, empty_ensemble_timeout):
ensemble_id = joshua_model.create_ensemble(
"joshua", {"max_runs": 10, "timeout": 1}, open(empty_ensemble_timeout, "rb")
)
agents = []
for rank in range(10):
agent = threading.Thread(
target=joshua_agent.agent,
args=(),
kwargs={
"work_dir": os.path.join(tmp_path, str(rank)),
"agent_idle_timeout": 1,
},
)
agent.setDaemon(True)
agent.start()
agents.append(agent)
time.sleep(0.5) # Give the agents some time to start
joshua_model.delete_ensemble(ensemble_id)
time.sleep(1) # Wait for long enough that agents timeout
assert len(joshua_model.list_all_ensembles()) == 0
for agent in agents:
agent.join()
@fdb.transactional
def verify_application_state(tr, ensemble, num_runs):
dir_path = joshua_model.get_application_dir(ensemble)
print('dir_path = ({})'.format(",".join(list(dir_path))))
ensemble_dir = fdb.directory.open(tr, dir_path)
count = 0
for _, _ in tr[ensemble_dir.range()]:
count += 1
# count can be larger than max_runs: joshua can run more tests
# than max_runs. In addition, a test might finish but not report
# back
assert count >= num_runs
@fdb.transactional
def verify_application_state_deleted(tr, ensemble):
assert not fdb.directory.exists(tr, joshua_model.get_application_dir(ensemble))
def test_joshua_done_ensemble(tmp_path, empty_ensemble_joshua_done):
max_runs: int = random.randint(1, 32)
ensemble_id = joshua_model.create_ensemble('joshua', {"max_runs": max_runs},
open(empty_ensemble_joshua_done, 'rb'))
agents = []
for rank in range(10):
agent = threading.Thread(
target=joshua_agent.agent,
args=(),
kwargs={
"work_dir": os.path.join(tmp_path, str(rank)),
"agent_idle_timeout": 1,
},)
agent.start()
agents.append(agent)
# wait for agents to finish
for agent in agents:
agent.join()
verify_application_state(joshua_model.db, ensemble_id, max_runs)
joshua_model.delete_ensemble(ensemble_id)
verify_application_state_deleted(joshua_model.db, ensemble_id)
class ThreadSafeCounter:
def __init__(self):
self.lock = threading.Lock()
self.counter = 0
def increment(self):
with self.lock:
self.counter += 1
def get(self):
with self.lock:
return self.counter
def test_two_agents_large_ensemble(monkeypatch, tmp_path, empty_ensemble):
"""
:monkeypatch: https://docs.pytest.org/en/stable/monkeypatch.html
:tmp_path: https://docs.pytest.org/en/stable/tmpdir.html
"""
# Make downloading an ensemble take an extra second, and increment
# downloads_started at the beginning of downloading
downloads_started = ThreadSafeCounter()
def ensure_state_test_delay():
downloads_started.increment()
time.sleep(1)
monkeypatch.setattr(
joshua_agent, "ensure_state_test_delay", ensure_state_test_delay
)
@fdb.transactional
def get_started(tr):
return joshua_model._get_snap_counter(tr, ensemble_id, "started")
assert len(joshua_model.list_active_ensembles()) == 0
ensemble_id = joshua_model.create_ensemble(
"joshua", {"max_runs": 1, "timeout": 1}, open(empty_ensemble, "rb")
)
agents = []
for rank in range(2):
agent = threading.Thread(
target=joshua_agent.agent,
args=(),
kwargs={
"work_dir": os.path.join(tmp_path, str(rank)),
"agent_idle_timeout": 1,
},
)
agent.setDaemon(True)
agent.start()
agents.append(agent)
while True:
# Wait until the first agent has begun downloading before starting the second agent
if downloads_started.get() > 0:
break
time.sleep(0.01)
joshua.tail_ensemble(ensemble_id, username="joshua")
@fdb.transactional
def get_started(tr):
return joshua_model._get_snap_counter(tr, ensemble_id, "started")
assert get_started(joshua_model.db) == 1
for agent in agents:
agent.join()