Test rpc_help.py failed: Check whether ZMQ is enabled or not.
This commit is contained in:
parent
59ecacfc84
commit
8dfc2f30de
2 changed files with 15 additions and 4 deletions
test/functional
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue