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
|
2014-10-23 03:48:19 +02:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
2014-08-03 18:12:19 +02:00
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2017-01-18 00:34:40 +01:00
|
|
|
"""Test the getchaintips RPC.
|
2014-08-03 18:12:19 +02:00
|
|
|
|
2017-01-18 00:34:40 +01:00
|
|
|
- introduce a network split
|
|
|
|
- work on chains of different lengths
|
|
|
|
- join the network together again
|
|
|
|
- verify that getchaintips now returns two chain tips.
|
|
|
|
"""
|
2014-08-03 18:12:19 +02:00
|
|
|
|
2015-05-02 12:53:35 +02:00
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
|
|
|
from test_framework.util import assert_equal
|
2014-08-03 18:12:19 +02:00
|
|
|
|
|
|
|
class GetChainTipsTest (BitcoinTestFramework):
|
2017-08-24 17:11:56 +02:00
|
|
|
def set_test_params(self):
|
|
|
|
self.num_nodes = 4
|
|
|
|
|
2018-09-09 19:32:37 +02:00
|
|
|
def skip_test_if_missing_module(self):
|
|
|
|
self.skip_if_no_wallet()
|
|
|
|
|
|
|
|
def run_test(self):
|
|
|
|
tips = self.nodes[0].getchaintips()
|
|
|
|
assert_equal(len(tips), 1)
|
|
|
|
assert_equal(tips[0]['branchlen'], 0)
|
|
|
|
assert_equal(tips[0]['height'], 200)
|
|
|
|
assert_equal(tips[0]['status'], 'active')
|
2014-10-20 14:14:04 +02:00
|
|
|
|
|
|
|
# Split the network and build two chains of different lengths.
|
2018-09-09 19:32:37 +02:00
|
|
|
self.split_network()
|
2015-12-02 18:12:23 +01:00
|
|
|
self.nodes[0].generate(10)
|
|
|
|
self.nodes[2].generate(20)
|
2017-04-03 15:34:04 +02:00
|
|
|
self.sync_all([self.nodes[:2], self.nodes[2:]])
|
2014-10-20 14:14:04 +02:00
|
|
|
|
|
|
|
tips = self.nodes[1].getchaintips ()
|
|
|
|
assert_equal (len (tips), 1)
|
|
|
|
shortTip = tips[0]
|
|
|
|
assert_equal (shortTip['branchlen'], 0)
|
|
|
|
assert_equal (shortTip['height'], 210)
|
2014-11-27 10:46:55 +01:00
|
|
|
assert_equal (tips[0]['status'], 'active')
|
2014-10-20 14:14:04 +02:00
|
|
|
|
|
|
|
tips = self.nodes[3].getchaintips ()
|
|
|
|
assert_equal (len (tips), 1)
|
|
|
|
longTip = tips[0]
|
|
|
|
assert_equal (longTip['branchlen'], 0)
|
|
|
|
assert_equal (longTip['height'], 220)
|
2014-11-27 10:46:55 +01:00
|
|
|
assert_equal (tips[0]['status'], 'active')
|
2014-10-20 14:14:04 +02:00
|
|
|
|
|
|
|
# Join the network halves and check that we now have two tips
|
|
|
|
# (at least at the nodes that previously had the short chain).
|
|
|
|
self.join_network ()
|
|
|
|
|
|
|
|
tips = self.nodes[0].getchaintips ()
|
|
|
|
assert_equal (len (tips), 2)
|
|
|
|
assert_equal (tips[0], longTip)
|
|
|
|
|
|
|
|
assert_equal (tips[1]['branchlen'], 10)
|
2014-11-27 10:46:55 +01:00
|
|
|
assert_equal (tips[1]['status'], 'valid-fork')
|
|
|
|
tips[1]['branchlen'] = 0
|
|
|
|
tips[1]['status'] = 'active'
|
2014-10-20 14:14:04 +02:00
|
|
|
assert_equal (tips[1], shortTip)
|
2014-08-03 18:12:19 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
GetChainTipsTest ().main ()
|