2014-11-27 06:01:25 +01:00
|
|
|
#!/usr/bin/env python2
|
2015-12-13 17:58:29 +01:00
|
|
|
# Copyright (c) 2014-2015 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.
|
|
|
|
|
2014-10-20 14:14:04 +02:00
|
|
|
# Exercise the getchaintips API. We introduce a network split, work
|
|
|
|
# on chains of different lengths, and join the network together again.
|
|
|
|
# This gives us two tips, verify that it works.
|
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):
|
|
|
|
|
2014-10-20 14:14:04 +02:00
|
|
|
def run_test (self):
|
|
|
|
BitcoinTestFramework.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)
|
2014-11-27 10:46:55 +01:00
|
|
|
assert_equal (tips[0]['status'], 'active')
|
2014-10-20 14:14:04 +02:00
|
|
|
|
|
|
|
# Split the network and build two chains of different lengths.
|
|
|
|
self.split_network ()
|
2015-12-02 18:12:23 +01:00
|
|
|
self.nodes[0].generate(10)
|
|
|
|
self.nodes[2].generate(20)
|
2014-10-20 14:14:04 +02:00
|
|
|
self.sync_all ()
|
|
|
|
|
|
|
|
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 ()
|