mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
Merge #14122: Test rpc_help.py failed: Check whether ZMQ is enabled or not.
8dfc2f30dea6bde0f74d23691377f248966011ab Test rpc_help.py failed: Check whether ZMQ is enabled or not. (Kvaciral) Pull request description: /test/functional/rpc_help.py checks for the zmq-category even while zmq may be disabled (in /test/config.ini) , I have added a check function to test_framework.py that can be used whether to determine to include zmq in a test or not. Tree-SHA512: 6819050277e2dc875f8d9bf49a02291555cb7b301379dfb9d898e6d8e14bfb8eeb6bef8af46d07b5db45b2fe281b35ea7f98af9ffba703768658a69addbc81b1
This commit is contained in:
parent
f62d2ed80b
commit
0b76f1495a
@ -4,7 +4,7 @@
|
|||||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
"""Test RPC help output."""
|
"""Test RPC help output."""
|
||||||
|
|
||||||
from test_framework.test_framework import BitcoinTestFramework
|
from test_framework.test_framework import BitcoinTestFramework, is_zmq_enabled
|
||||||
from test_framework.util import assert_equal, assert_raises_rpc_error
|
from test_framework.util import assert_equal, assert_raises_rpc_error
|
||||||
|
|
||||||
class HelpRpcTest(BitcoinTestFramework):
|
class HelpRpcTest(BitcoinTestFramework):
|
||||||
@ -25,7 +25,13 @@ class HelpRpcTest(BitcoinTestFramework):
|
|||||||
|
|
||||||
# command titles
|
# command titles
|
||||||
titles = [line[3:-3] for line in node.help().splitlines() if line.startswith('==')]
|
titles = [line[3:-3] for line in node.help().splitlines() if line.startswith('==')]
|
||||||
assert_equal(titles, ['Addressindex', 'Blockchain', 'Control', 'Dash', 'Evo', 'Generating', 'Mining', 'Network', 'Rawtransactions', 'Util', 'Wallet', 'Zmq'])
|
|
||||||
|
components = ['Addressindex', 'Blockchain', 'Control', 'Dash', 'Evo', 'Generating', 'Mining', 'Network', 'Rawtransactions', 'Util', 'Wallet']
|
||||||
|
|
||||||
|
if is_zmq_enabled(self):
|
||||||
|
components.append('Zmq')
|
||||||
|
|
||||||
|
assert_equal(titles, components)
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
HelpRpcTest().main()
|
HelpRpcTest().main()
|
||||||
|
@ -1185,8 +1185,13 @@ def skip_if_no_py3_zmq():
|
|||||||
|
|
||||||
def skip_if_no_bitcoind_zmq(test_instance):
|
def skip_if_no_bitcoind_zmq(test_instance):
|
||||||
"""Skip the running test if dashd has not been compiled with zmq support."""
|
"""Skip the running test if dashd has not been compiled with zmq support."""
|
||||||
|
if not is_zmq_enabled(test_instance):
|
||||||
|
raise SkipTest("dashd has not been built with zmq enabled.")
|
||||||
|
|
||||||
|
|
||||||
|
def is_zmq_enabled(test_instance):
|
||||||
|
"""Checks whether zmq is enabled or not."""
|
||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser()
|
||||||
config.read_file(open(test_instance.options.configfile))
|
config.read_file(open(test_instance.options.configfile))
|
||||||
|
|
||||||
if not config["components"].getboolean("ENABLE_ZMQ"):
|
return config["components"].getboolean("ENABLE_ZMQ")
|
||||||
raise SkipTest("dashd has not been built with zmq enabled.")
|
|
||||||
|
Loading…
Reference in New Issue
Block a user