2016-03-19 16:58:06 -03:00
|
|
|
#!/usr/bin/env python3
|
2021-07-28 07:57:16 -04:00
|
|
|
# Copyright (c) 2014-2021 The Bitcoin Core developers
|
2015-04-09 12:08:39 -03:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2017-01-17 20:34:40 -03: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 12:08:39 -03:00
|
|
|
|
2015-05-02 07:53:35 -03:00
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
2020-05-04 20:06:38 -04:00
|
|
|
from test_framework.util import assert_equal
|
2015-04-09 12:08:39 -03:00
|
|
|
|
|
|
|
|
2020-05-04 20:06:38 -04:00
|
|
|
class ReindexTest(BitcoinTestFramework):
|
2017-06-09 18:21:21 -04:00
|
|
|
def set_test_params(self):
|
2016-05-14 08:01:31 -03:00
|
|
|
self.setup_clean_chain = True
|
|
|
|
self.num_nodes = 1
|
2015-04-09 12:08:39 -03:00
|
|
|
|
2016-04-21 09:14:37 -03:00
|
|
|
def reindex(self, justchainstate=False):
|
2021-08-19 11:10:24 -04:00
|
|
|
self.generatetoaddress(self.nodes[0], 3, self.nodes[0].get_deterministic_priv_key().address)
|
2016-04-21 09:14:37 -03:00
|
|
|
blockcount = self.nodes[0].getblockcount()
|
2017-03-24 00:56:31 -03:00
|
|
|
self.stop_nodes()
|
2018-08-08 14:30:09 -04:00
|
|
|
extra_args = [["-reindex-chainstate" if justchainstate else "-reindex"]]
|
2017-06-09 16:35:17 -04:00
|
|
|
self.start_nodes(extra_args)
|
2020-05-04 20:06:38 -04:00
|
|
|
assert_equal(self.nodes[0].getblockcount(), blockcount) # start_node is blocking on reindex
|
2017-03-07 20:46:17 -03:00
|
|
|
self.log.info("Success")
|
2015-04-09 12:08:39 -03:00
|
|
|
|
2016-04-21 09:14:37 -03:00
|
|
|
def run_test(self):
|
|
|
|
self.reindex(False)
|
|
|
|
self.reindex(True)
|
|
|
|
self.reindex(False)
|
|
|
|
self.reindex(True)
|
|
|
|
|
2015-04-09 12:08:39 -03:00
|
|
|
if __name__ == '__main__':
|
|
|
|
ReindexTest().main()
|