dogecoin/test/functional/rpc_invalidateblock.py

70 lines
2.9 KiB
Python
Raw Normal View History

2016-03-19 20:58:06 +01:00
#!/usr/bin/env python3
2018-07-27 00:36:45 +02:00
# Copyright (c) 2014-2018 The Bitcoin Core developers
2015-03-11 16:58:40 +01:00
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
"""Test the invalidateblock RPC."""
2015-03-11 16:58:40 +01:00
2018-07-07 00:10:35 +02:00
import time
from test_framework.test_framework import BitcoinTestFramework
2018-07-07 00:10:35 +02:00
from test_framework.util import assert_equal, connect_nodes_bi, sync_blocks
2015-03-11 16:58:40 +01:00
class InvalidateTest(BitcoinTestFramework):
def set_test_params(self):
self.setup_clean_chain = True
self.num_nodes = 3
def skip_test_if_missing_module(self):
self.skip_if_no_wallet()
2015-03-11 16:58:40 +01:00
def setup_network(self):
self.setup_nodes()
2015-03-11 16:58:40 +01:00
def run_test(self):
2017-03-08 00:46:17 +01:00
self.log.info("Make sure we repopulate setBlockIndexCandidates after InvalidateBlock:")
self.log.info("Mine 4 blocks on Node 0")
2015-04-01 05:28:28 +02:00
self.nodes[0].generate(4)
2015-03-11 16:58:40 +01:00
assert(self.nodes[0].getblockcount() == 4)
besthash = self.nodes[0].getbestblockhash()
2017-03-08 00:46:17 +01:00
self.log.info("Mine competing 6 blocks on Node 1")
2015-04-01 05:28:28 +02:00
self.nodes[1].generate(6)
2015-03-11 16:58:40 +01:00
assert(self.nodes[1].getblockcount() == 6)
2017-03-08 00:46:17 +01:00
self.log.info("Connect nodes to force a reorg")
2015-03-11 16:58:40 +01:00
connect_nodes_bi(self.nodes,0,1)
sync_blocks(self.nodes[0:2])
2015-03-11 16:58:40 +01:00
assert(self.nodes[0].getblockcount() == 6)
badhash = self.nodes[1].getblockhash(2)
2017-03-08 00:46:17 +01:00
self.log.info("Invalidate block 2 on node 0 and verify we reorg to node 0's original chain")
2015-03-11 16:58:40 +01:00
self.nodes[0].invalidateblock(badhash)
newheight = self.nodes[0].getblockcount()
newhash = self.nodes[0].getbestblockhash()
if (newheight != 4 or newhash != besthash):
raise AssertionError("Wrong tip for node0, hash %s, height %d"%(newhash,newheight))
2017-03-08 00:46:17 +01:00
self.log.info("Make sure we won't reorg to a lower work chain:")
connect_nodes_bi(self.nodes,1,2)
2017-03-08 00:46:17 +01:00
self.log.info("Sync node 2 to node 1 so both have 6 blocks")
sync_blocks(self.nodes[1:3])
assert(self.nodes[2].getblockcount() == 6)
2017-03-08 00:46:17 +01:00
self.log.info("Invalidate block 5 on node 1 so its tip is now at 4")
self.nodes[1].invalidateblock(self.nodes[1].getblockhash(5))
assert(self.nodes[1].getblockcount() == 4)
2017-03-08 00:46:17 +01:00
self.log.info("Invalidate block 3 on node 2, so its tip is now 2")
self.nodes[2].invalidateblock(self.nodes[2].getblockhash(3))
assert(self.nodes[2].getblockcount() == 2)
2017-03-08 00:46:17 +01:00
self.log.info("..and then mine a block")
2015-04-01 05:28:28 +02:00
self.nodes[2].generate(1)
2017-03-08 00:46:17 +01:00
self.log.info("Verify all nodes are at the right height")
time.sleep(5)
2017-03-08 00:46:17 +01:00
assert_equal(self.nodes[2].getblockcount(), 3)
assert_equal(self.nodes[0].getblockcount(), 4)
node1height = self.nodes[1].getblockcount()
if node1height < 4:
raise AssertionError("Node 1 reorged to a lower height: %d"%node1height)
2015-03-11 16:58:40 +01:00
if __name__ == '__main__':
InvalidateTest().main()