diff options
author | Kvaciral <kvaciral@protonmail.com> | 2018-08-31 22:30:26 +0200 |
---|---|---|
committer | Kvaciral <kvaciral@protonmail.com> | 2018-09-01 01:25:34 +0200 |
commit | 8dfc2f30dea6bde0f74d23691377f248966011ab (patch) | |
tree | ae4865c13ae4106684f4f3c6ff14b5e098f8f5dc /test/functional/rpc_help.py | |
parent | 59ecacfc84af13e5a1608e7d970315d07dcb0269 (diff) |
Test rpc_help.py failed: Check whether ZMQ is enabled or not.
Diffstat (limited to 'test/functional/rpc_help.py')
-rwxr-xr-x | test/functional/rpc_help.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/test/functional/rpc_help.py b/test/functional/rpc_help.py index e878ded258..ceca40527f 100755 --- a/test/functional/rpc_help.py +++ b/test/functional/rpc_help.py @@ -4,7 +4,7 @@ # file COPYING or http://www.opensource.org/licenses/mit-license.php. """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 class HelpRpcTest(BitcoinTestFramework): @@ -25,7 +25,13 @@ class HelpRpcTest(BitcoinTestFramework): # command titles titles = [line[3:-3] for line in node.help().splitlines() if line.startswith('==')] - assert_equal(titles, ['Blockchain', 'Control', 'Generating', 'Mining', 'Network', 'Rawtransactions', 'Util', 'Wallet', 'Zmq']) + + components = ['Blockchain', 'Control', 'Generating', 'Mining', 'Network', 'Rawtransactions', 'Util', 'Wallet'] + + if is_zmq_enabled(self): + components.append('Zmq') + + assert_equal(titles, components) if __name__ == '__main__': HelpRpcTest().main() |