dash/test/functional/feature_abortnode.py

51 lines
1.7 KiB
Python
Raw Normal View History

2019-07-25 02:30:18 +02:00
#!/usr/bin/env python3
# Copyright (c) 2019-2020 The Bitcoin Core developers
2019-07-25 02:30:18 +02:00
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
"""Test dashd aborts if can't disconnect a block.
2019-07-25 02:30:18 +02:00
- Start a single node and generate 3 blocks.
- Delete the undo data.
- Mine a fork that requires disconnecting the tip.
- Verify that dashd AbortNode's.
2019-07-25 02:30:18 +02:00
"""
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import get_datadir_path
2019-07-25 02:30:18 +02:00
import os
class AbortNodeTest(BitcoinTestFramework):
2019-07-25 02:30:18 +02:00
def set_test_params(self):
self.setup_clean_chain = True
self.num_nodes = 2
self.rpc_timeout = 240
2019-07-25 02:30:18 +02:00
def setup_network(self):
self.setup_nodes()
# We'll connect the nodes later
def run_test(self):
self.generate(self.nodes[0], 3, sync_fun=self.no_op)
2019-07-25 02:30:18 +02:00
datadir = get_datadir_path(self.options.tmpdir, 0)
# Deleting the undo file will result in reorg failure
os.unlink(os.path.join(datadir, self.chain, 'blocks', 'rev00000.dat'))
2019-07-25 02:30:18 +02:00
# Connecting to a node with a more work chain will trigger a reorg
# attempt.
self.generate(self.nodes[1], 3, sync_fun=self.no_op)
2019-07-25 02:30:18 +02:00
with self.nodes[0].assert_debug_log(["Failed to disconnect block"]):
self.connect_nodes(0, 1)
self.generate(self.nodes[1], 1, sync_fun=self.no_op)
2019-07-25 02:30:18 +02:00
# Check that node0 aborted
self.log.info("Waiting for crash")
self.nodes[0].wait_until_stopped(timeout=200)
2019-07-25 02:30:18 +02:00
self.log.info("Node crashed - now verifying restart fails")
self.nodes[0].assert_start_raises_init_error()
2019-07-25 02:30:18 +02:00
if __name__ == '__main__':
AbortNodeTest().main()