forked from bitcoin-dev-project/warnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignet_test.py
executable file
·66 lines (51 loc) · 2.09 KB
/
signet_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
#!/usr/bin/env python3
import json
import os
from pathlib import Path
from test_base import TestBase
from warnet.status import _get_deployed_scenarios as scenarios_deployed
class SignetTest(TestBase):
def __init__(self):
super().__init__()
self.network_dir = Path(os.path.dirname(__file__)) / "data" / "signet"
signer_data_path = Path(os.path.dirname(__file__)) / "data" / "signet-signer.json"
with open(signer_data_path) as f:
self.signer_data = json.loads(f.read())
def run_test(self):
try:
self.setup_network()
self.check_signet_miner()
self.check_signet_recon()
finally:
self.cleanup()
def setup_network(self):
self.log.info("Setting up network")
self.log.info(self.warnet(f"deploy {self.network_dir}"))
self.wait_for_all_tanks_status(target="running")
self.wait_for_all_edges()
def check_signet_miner(self):
self.warnet("bitcoin rpc miner createwallet miner")
self.warnet(
f"bitcoin rpc miner importdescriptors '{json.dumps(self.signer_data['descriptors'])}'"
)
self.warnet(
f"run resources/scenarios/signet_miner.py --tank=0 generate --max-blocks=8 --min-nbits --address={self.signer_data['address']['address']}"
)
def block_one():
for n in range(1, 17):
height = int(self.warnet(f"bitcoin rpc tank-{n} getblockcount"))
if height < 8:
return False
return True
self.wait_for_predicate(block_one)
def check_signet_recon(self):
scenario_file = "resources/scenarios/reconnaissance.py"
self.log.info(f"Running scenario from file: {scenario_file}")
self.warnet(f"run {scenario_file}")
def check_scenario_clean_exit():
deployed = scenarios_deployed()
return all(scenario["status"] == "succeeded" for scenario in deployed)
self.wait_for_predicate(check_scenario_clean_exit)
if __name__ == "__main__":
test = SignetTest()
test.run_test()