diff --git a/test/functional/feature_init.py b/test/functional/feature_init.py index 659d33684e5cd2..3ee33c7cb0aef4 100755 --- a/test/functional/feature_init.py +++ b/test/functional/feature_init.py @@ -2,7 +2,7 @@ # Copyright (c) 2021-present The Bitcoin Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. -"""Stress tests related to node initialization.""" +"""Tests related to node initialization.""" from pathlib import Path import platform import shutil @@ -12,7 +12,11 @@ from test_framework.util import assert_equal -class InitStressTest(BitcoinTestFramework): +BITCOIN_PID_FILENAME_DEFAULT = "bitcoind.pid" +BITCOIN_PID_FILENAME_CUSTOM = "my_fancy_bitcoin_pid_file.foobar" + + +class InitTest(BitcoinTestFramework): """ Ensure that initialization can be interrupted at a number of points and not impair subsequent starts. @@ -25,7 +29,7 @@ def set_test_params(self): self.setup_clean_chain = False self.num_nodes = 1 - def run_test(self): + def init_stress_test(self): """ - test terminating initialization after seeing a certain log line. - test removing certain essential files to test startup error paths. @@ -147,6 +151,19 @@ def check_clean_start(): shutil.move(node.chain_path / "blocks_bak", node.chain_path / "blocks") shutil.move(node.chain_path / "chainstate_bak", node.chain_path / "chainstate") + def init_pid_test(self): + self.log.info("Test specifying custom pid file via -pid command line option") + self.restart_node(0, [f"-pid={BITCOIN_PID_FILENAME_CUSTOM}"]) + datadir = self.nodes[0].chain_path + assert not (datadir / BITCOIN_PID_FILENAME_DEFAULT).exists() + assert (datadir / BITCOIN_PID_FILENAME_CUSTOM).exists() + self.stop_node(0) + assert not (datadir / BITCOIN_PID_FILENAME_CUSTOM).exists() + + def run_test(self): + self.init_pid_test() + self.init_stress_test() + if __name__ == '__main__': - InitStressTest(__file__).main() + InitTest(__file__).main()