mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
0bb0d89cb3
0ca4c8b3c6 Changed functional tests which do not require wallets to run without (sanket1729) Pull request description: Addresses #14216 . Changed Changed `get_deterministic_priv_key()` to return named tuple`(address, key)` I have tried to be exhaustive as possible in maximum coverage for non-wallet mode without affecting any coverage for wallet mode. However, I could not check the tests in wallet mode because of timeout issues. Hopefully, travis job checks those. Tests `feature_block.py`, `feature_logging.py` and `feature_reindex.py` were skipping despite having no direct dependency on any wallet functions. So, I have also disabled the `skip_test_no_wallet()` for those files too. Tree-SHA512: 8f84bd8400a732d4266c7518d5cbcf1eb761f623a64a74849e0470142c8ef22cb75364474ddae75d9213c3d16659a52917b5ed979a313695da6abd16c4fd7445
76 lines
2.9 KiB
Python
Executable File
76 lines
2.9 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
# Copyright (c) 2017 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 debug logging."""
|
|
|
|
import os
|
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
|
from test_framework.test_node import ErrorMatch
|
|
|
|
|
|
class LoggingTest(BitcoinTestFramework):
|
|
def set_test_params(self):
|
|
self.num_nodes = 1
|
|
self.setup_clean_chain = True
|
|
|
|
def relative_log_path(self, name):
|
|
return os.path.join(self.nodes[0].datadir, self.chain, name)
|
|
|
|
def run_test(self):
|
|
# test default log file name
|
|
default_log_path = self.relative_log_path("debug.log")
|
|
assert os.path.isfile(default_log_path)
|
|
|
|
# test alternative log file name in datadir
|
|
self.restart_node(0, ["-debuglogfile=foo.log"])
|
|
assert os.path.isfile(self.relative_log_path("foo.log"))
|
|
|
|
# test alternative log file name outside datadir
|
|
tempname = os.path.join(self.options.tmpdir, "foo.log")
|
|
self.restart_node(0, ["-debuglogfile=%s" % tempname])
|
|
assert os.path.isfile(tempname)
|
|
|
|
# check that invalid log (relative) will cause error
|
|
invdir = self.relative_log_path("foo")
|
|
invalidname = os.path.join("foo", "foo.log")
|
|
self.stop_node(0)
|
|
exp_stderr = "Error: Could not open debug log file \S+$"
|
|
self.nodes[0].assert_start_raises_init_error(["-debuglogfile=%s" % (invalidname)], exp_stderr, match=ErrorMatch.FULL_REGEX)
|
|
assert not os.path.isfile(os.path.join(invdir, "foo.log"))
|
|
|
|
# check that invalid log (relative) works after path exists
|
|
self.stop_node(0)
|
|
os.mkdir(invdir)
|
|
self.start_node(0, ["-debuglogfile=%s" % (invalidname)])
|
|
assert os.path.isfile(os.path.join(invdir, "foo.log"))
|
|
|
|
# check that invalid log (absolute) will cause error
|
|
self.stop_node(0)
|
|
invdir = os.path.join(self.options.tmpdir, "foo")
|
|
invalidname = os.path.join(invdir, "foo.log")
|
|
self.nodes[0].assert_start_raises_init_error(["-debuglogfile=%s" % invalidname], exp_stderr, match=ErrorMatch.FULL_REGEX)
|
|
assert not os.path.isfile(os.path.join(invdir, "foo.log"))
|
|
|
|
# check that invalid log (absolute) works after path exists
|
|
self.stop_node(0)
|
|
os.mkdir(invdir)
|
|
self.start_node(0, ["-debuglogfile=%s" % (invalidname)])
|
|
assert os.path.isfile(os.path.join(invdir, "foo.log"))
|
|
|
|
# check that -nodebuglogfile disables logging
|
|
self.stop_node(0)
|
|
os.unlink(default_log_path)
|
|
assert not os.path.isfile(default_log_path)
|
|
self.start_node(0, ["-nodebuglogfile"])
|
|
assert not os.path.isfile(default_log_path)
|
|
|
|
# just sanity check no crash here
|
|
self.stop_node(0)
|
|
self.start_node(0, ["-debuglogfile=%s" % os.devnull])
|
|
|
|
|
|
if __name__ == '__main__':
|
|
LoggingTest().main()
|