Skip to content

Commit

Permalink
qa: Add test to ensure node can generate all help texts at runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoFalke committed Nov 5, 2018
1 parent 73a8408 commit bbbbb3f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions test/functional/rpc_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,18 @@
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import assert_equal, assert_raises_rpc_error

import os


class HelpRpcTest(BitcoinTestFramework):
def set_test_params(self):
self.num_nodes = 1

def run_test(self):
self.test_categories()
self.dump_help()

def test_categories(self):
node = self.nodes[0]

# wrong argument count
Expand All @@ -37,6 +43,15 @@ def run_test(self):

assert_equal(titles, components)

def dump_help(self):
dump_dir = os.path.join(self.options.tmpdir, 'rpc_help_dump')
os.mkdir(dump_dir)
calls = [line.split(' ', 1)[0] for line in self.nodes[0].help().splitlines() if line and not line.startswith('==')]
for call in calls:
with open(os.path.join(dump_dir, call), 'w', encoding='utf-8') as f:
# Make sure the node can generate the help at runtime without crashing
f.write(self.nodes[0].help(call))


if __name__ == '__main__':
HelpRpcTest().main()

0 comments on commit bbbbb3f

Please sign in to comment.