bitcoin/test/functional/feature_fee_estimates_persist.py

55 lines
2.2 KiB
Python
Executable File

#!/usr/bin/env python3
# Copyright (c) 2014-2021 The Bitcoin Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
"""Test fee estimates persistence.
By default, bitcoind will dump fee estimates on shutdown and
then reload it on startup.
Test is as follows:
- start node0
- call the savefeeestimates RPC and verify the RPC succeeds and
that the file exists
- make the file read only and attempt to call the savefeeestimates RPC
with the expecation that it will fail
- move the read only file and shut down the node, verify the node writes
on shutdown a file that is identical to the one we saved via the RPC
"""
import filecmp
import os
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import assert_raises_rpc_error
class FeeEstimatesPersistTest(BitcoinTestFramework):
def set_test_params(self):
self.num_nodes = 1
def run_test(self):
fee_estimatesdat = os.path.join(self.nodes[0].chain_path, 'fee_estimates.dat')
self.log.debug('Verify the fee_estimates.dat file does not exists on start up')
assert not os.path.isfile(fee_estimatesdat)
self.nodes[0].savefeeestimates()
self.log.debug('Verify the fee_estimates.dat file exists after calling savefeeestimates RPC')
assert os.path.isfile(fee_estimatesdat)
self.log.debug("Prevent bitcoind from writing fee_estimates.dat to disk. Verify that `savefeeestimates` fails")
fee_estimatesdatold = fee_estimatesdat + '.old'
os.rename(fee_estimatesdat, fee_estimatesdatold)
os.mkdir(fee_estimatesdat)
assert_raises_rpc_error(-1, "Unable to dump fee estimates to disk", self.nodes[0].savefeeestimates)
os.rmdir(fee_estimatesdat)
self.stop_nodes()
self.log.debug("Verify that fee_estimates are written on shutdown")
assert os.path.isfile(fee_estimatesdat)
self.log.debug("Verify that the fee estimates from a shutdown are identical from the ones from savefeeestimates")
assert filecmp.cmp(fee_estimatesdat, fee_estimatesdatold)
if __name__ == "__main__":
FeeEstimatesPersistTest(__file__).main()