forked from bitcoin-dev-project/warnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraph_test.py
executable file
·81 lines (69 loc) · 2.66 KB
/
graph_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
#!/usr/bin/env python3
import json
import os
import pexpect
from test_base import TestBase
NETWORKS_DIR = "networks"
class GraphTest(TestBase):
def __init__(self):
super().__init__()
def run_test(self):
try:
# cwd out of the git repo for remainder of script
os.chdir(self.tmpdir)
self.directory_not_exist()
os.mkdir(NETWORKS_DIR)
self.directory_exists()
self.run_created_network()
finally:
self.cleanup()
def directory_not_exist(self):
try:
self.log.info("testing warnet create, dir doesn't exist")
self.sut = pexpect.spawn("warnet create")
self.sut.expect("init", timeout=10)
except Exception as e:
print(f"\nReceived prompt text:\n {self.sut.before.decode('utf-8')}\n")
raise e
def directory_exists(self):
try:
self.log.info("testing warnet create, dir does exist")
self.sut = pexpect.spawn("warnet create")
self.sut.expect("name", timeout=10)
self.sut.sendline("ANewNetwork")
self.sut.expect("many", timeout=10)
self.sut.sendline("")
self.sut.expect("connections", timeout=10)
self.sut.sendline("")
self.sut.expect("version", timeout=10)
self.sut.sendline("")
self.sut.expect("enable fork-observer", timeout=10)
self.sut.sendline("")
self.sut.expect("seconds", timeout=10)
self.sut.sendline("")
self.sut.expect("enable grafana", timeout=10)
self.sut.sendline("")
self.sut.expect("successfully", timeout=50)
except Exception as e:
print(f"\nReceived prompt text:\n {self.sut.before.decode('utf-8')}\n")
raise e
def run_created_network(self):
self.log.info("adding custom config to one tank")
with open("networks/ANewNetwork/network.yaml") as f:
s = f.read()
s = s.replace(" name: tank-0000\n", " name: tank-0000\n config: debug=mempool\n")
with open("networks/ANewNetwork/network.yaml", "w") as f:
f.write(s)
self.log.info("deploying new network")
self.warnet("deploy networks/ANewNetwork")
self.wait_for_all_tanks_status(target="running")
debugs = json.loads(self.warnet("bitcoin rpc tank-0000 logging"))
# set in defaultConfig
assert debugs["rpc"]
# set in config just for this tank
assert debugs["mempool"]
# santy check
assert not debugs["zmq"]
if __name__ == "__main__":
test = GraphTest()
test.run_test()