forked from bitcoin-dev-project/warnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimln_test.py
executable file
·111 lines (95 loc) · 3.96 KB
/
simln_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
#!/usr/bin/env python3
import ast
import os
from functools import partial
from pathlib import Path
from typing import Optional
import pexpect
from test_base import TestBase
from warnet.k8s import download, wait_for_pod
from warnet.process import run_command
class SimLNTest(TestBase):
def __init__(self):
super().__init__()
self.network_dir = (
Path(os.path.dirname(__file__)).parent / "resources" / "networks" / "hello"
)
self.plugins_dir = Path(os.path.dirname(__file__)).parent / "resources" / "plugins"
self.simln_exec = "plugins/simln/plugin.py"
def run_test(self):
try:
os.chdir(self.tmpdir)
self.init_directory()
self.deploy_with_plugin()
self.copy_results()
self.assert_hello_plugin()
finally:
self.cleanup()
def init_directory(self):
self.log.info("Initializing SimLN plugin...")
self.sut = pexpect.spawn("warnet init")
self.sut.expect("network", timeout=10)
self.sut.sendline("n")
self.sut.close()
def deploy_with_plugin(self):
self.log.info("Deploy the ln network with a SimLN plugin")
results = self.warnet(f"deploy {self.network_dir}")
self.log.info(results)
wait_for_pod(self.get_first_simln_pod())
def copy_results(self):
pod = self.get_first_simln_pod()
partial_func = partial(self.found_results_remotely, pod)
self.wait_for_predicate(partial_func)
download(pod, Path("/working/results"), Path("."))
self.wait_for_predicate(self.found_results_locally)
def found_results_remotely(self, pod: Optional[str] = None) -> bool:
if pod is None:
pod = self.get_first_simln_pod()
self.log.info(f"Checking for results file in {pod}")
results_file = run_command(f"{self.simln_exec} sh {pod} ls /working/results").strip()
self.log.info(f"Results file: {results_file}")
results = run_command(
f"{self.simln_exec} sh {pod} cat /working/results/{results_file}"
).strip()
self.log.info(results)
return results.find("Success") > 0
def get_first_simln_pod(self):
command = f"{self.simln_exec} list-pod-names"
pod_names_literal = run_command(command)
self.log.info(f"{command}: {pod_names_literal}")
pod_names = ast.literal_eval(pod_names_literal)
return pod_names[0]
def found_results_locally(self) -> bool:
directory = "results"
self.log.info(f"Searching {directory}")
for root, _dirs, files in os.walk(Path(directory)):
for file_name in files:
file_path = os.path.join(root, file_name)
with open(file_path) as file:
content = file.read()
if "Success" in content:
self.log.info(f"Found downloaded results in directory: {directory}.")
return True
self.log.info(f"Did not find downloaded results in directory: {directory}.")
return False
def assert_hello_plugin(self):
self.log.info("Waiting for the 'hello' plugin pods.")
wait_for_pod("hello-pre-deploy")
wait_for_pod("hello-post-deploy")
wait_for_pod("hello-pre-network")
wait_for_pod("hello-post-network")
wait_for_pod("tank-0000-post-hello-pod")
wait_for_pod("tank-0000-pre-hello-pod")
wait_for_pod("tank-0001-post-hello-pod")
wait_for_pod("tank-0001-pre-hello-pod")
wait_for_pod("tank-0002-post-hello-pod")
wait_for_pod("tank-0002-pre-hello-pod")
wait_for_pod("tank-0003-post-hello-pod")
wait_for_pod("tank-0003-pre-hello-pod")
wait_for_pod("tank-0004-post-hello-pod")
wait_for_pod("tank-0004-pre-hello-pod")
wait_for_pod("tank-0005-post-hello-pod")
wait_for_pod("tank-0005-pre-hello-pod")
if __name__ == "__main__":
test = SimLNTest()
test.run_test()