mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 23:09:44 -04:00
test: perturb anchors.dat to test it doesn't throw an error during initialization
This commit is contained in:
parent
1bad29fe02
commit
33fdfc7986
1 changed files with 13 additions and 5 deletions
|
@ -63,17 +63,25 @@ class AnchorsTest(BitcoinTestFramework):
|
||||||
self.log.info("Check the addresses in anchors.dat")
|
self.log.info("Check the addresses in anchors.dat")
|
||||||
|
|
||||||
with open(node_anchors_path, "rb") as file_handler:
|
with open(node_anchors_path, "rb") as file_handler:
|
||||||
anchors = file_handler.read().hex()
|
anchors = file_handler.read()
|
||||||
|
|
||||||
|
anchors_hex = anchors.hex()
|
||||||
for port in block_relay_nodes_port:
|
for port in block_relay_nodes_port:
|
||||||
ip_port = ip + port
|
ip_port = ip + port
|
||||||
assert ip_port in anchors
|
assert ip_port in anchors_hex
|
||||||
for port in inbound_nodes_port:
|
for port in inbound_nodes_port:
|
||||||
ip_port = ip + port
|
ip_port = ip + port
|
||||||
assert ip_port not in anchors
|
assert ip_port not in anchors_hex
|
||||||
|
|
||||||
self.log.info("Start node")
|
self.log.info("Perturb anchors.dat to test it doesn't throw an error during initialization")
|
||||||
self.start_node(0)
|
with self.nodes[0].assert_debug_log(["0 block-relay-only anchors will be tried for connections."]):
|
||||||
|
with open(node_anchors_path, "wb") as out_file_handler:
|
||||||
|
tweaked_contents = bytearray(anchors)
|
||||||
|
tweaked_contents[20:20] = b'1'
|
||||||
|
out_file_handler.write(bytes(tweaked_contents))
|
||||||
|
|
||||||
|
self.log.info("Start node")
|
||||||
|
self.start_node(0)
|
||||||
|
|
||||||
self.log.info("When node starts, check if anchors.dat doesn't exist anymore")
|
self.log.info("When node starts, check if anchors.dat doesn't exist anymore")
|
||||||
assert not os.path.exists(node_anchors_path)
|
assert not os.path.exists(node_anchors_path)
|
||||||
|
|
Loading…
Add table
Reference in a new issue