2016-03-19 20:58:06 +01:00
|
|
|
#!/usr/bin/env python3
|
2018-01-02 18:12:05 +01:00
|
|
|
# Copyright (c) 2014-2017 The Bitcoin Core developers
|
2015-04-09 17:08:39 +02:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2017-01-18 00:34:40 +01:00
|
|
|
"""Test running bitcoind with -reindex and -reindex-chainstate options.
|
|
|
|
|
|
|
|
- Start a single node and generate 3 blocks.
|
|
|
|
- Stop the node and restart it with -reindex. Verify that the node has reindexed up to block 3.
|
|
|
|
- Stop the node and restart it with -reindex-chainstate. Verify that the node has reindexed up to block 3.
|
|
|
|
"""
|
2015-04-09 17:08:39 +02:00
|
|
|
|
2015-05-02 12:53:35 +02:00
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
2018-02-26 23:04:41 +01:00
|
|
|
from test_framework.util import wait_until
|
2015-04-09 17:08:39 +02:00
|
|
|
|
|
|
|
class ReindexTest(BitcoinTestFramework):
|
|
|
|
|
2017-06-10 00:21:21 +02:00
|
|
|
def set_test_params(self):
|
2016-05-14 13:01:31 +02:00
|
|
|
self.setup_clean_chain = True
|
|
|
|
self.num_nodes = 1
|
2015-04-09 17:08:39 +02:00
|
|
|
|
2016-04-21 14:14:37 +02:00
|
|
|
def reindex(self, justchainstate=False):
|
2015-04-09 17:08:39 +02:00
|
|
|
self.nodes[0].generate(3)
|
2016-04-21 14:14:37 +02:00
|
|
|
blockcount = self.nodes[0].getblockcount()
|
2017-03-24 04:56:31 +01:00
|
|
|
self.stop_nodes()
|
2017-02-24 18:39:33 +01:00
|
|
|
extra_args = [["-reindex-chainstate" if justchainstate else "-reindex", "-checkblockindex=1"]]
|
2017-06-09 22:35:17 +02:00
|
|
|
self.start_nodes(extra_args)
|
2018-02-26 23:04:41 +01:00
|
|
|
wait_until(lambda: self.nodes[0].getblockcount() == blockcount)
|
2017-03-08 00:46:17 +01:00
|
|
|
self.log.info("Success")
|
2015-04-09 17:08:39 +02:00
|
|
|
|
2016-04-21 14:14:37 +02:00
|
|
|
def run_test(self):
|
|
|
|
self.reindex(False)
|
|
|
|
self.reindex(True)
|
|
|
|
self.reindex(False)
|
|
|
|
self.reindex(True)
|
|
|
|
|
2015-04-09 17:08:39 +02:00
|
|
|
if __name__ == '__main__':
|
|
|
|
ReindexTest().main()
|