mirror of
https://github.com/aljazceru/lightning.git
synced 2026-01-10 01:24:30 +01:00
pytest: Add a test for the plugin option passthrough
Signed-off-by: Christian Decker <@cdecker>
This commit is contained in:
committed by
Rusty Russell
parent
c3d2caafa2
commit
e27b2ea69b
29
tests/test_plugin.py
Normal file
29
tests/test_plugin.py
Normal file
@@ -0,0 +1,29 @@
|
||||
from fixtures import * # noqa: F401,F403
|
||||
|
||||
import subprocess
|
||||
|
||||
|
||||
def test_option_passthrough(node_factory):
|
||||
""" Ensure that registering options works.
|
||||
|
||||
First attempts without the plugin and then with the plugin.
|
||||
"""
|
||||
plugin_path = 'contrib/helloworld-plugin/main.py'
|
||||
|
||||
help_out = subprocess.check_output([
|
||||
'lightningd/lightningd',
|
||||
'--help'
|
||||
]).decode('utf-8')
|
||||
assert('--greeting' not in help_out)
|
||||
|
||||
help_out = subprocess.check_output([
|
||||
'lightningd/lightningd',
|
||||
'--plugin={}'.format(plugin_path),
|
||||
'--help'
|
||||
]).decode('utf-8')
|
||||
assert('--greeting' in help_out)
|
||||
|
||||
# Now try to see if it gets accepted, would fail to start if the
|
||||
# option didn't exist
|
||||
n = node_factory.get_node(options={'plugin': plugin_path, 'greeting': 'Mars'})
|
||||
n.stop()
|
||||
@@ -772,7 +772,7 @@ class NodeFactory(object):
|
||||
'valgrind',
|
||||
'-q',
|
||||
'--trace-children=yes',
|
||||
'--trace-children-skip=*bitcoin-cli*',
|
||||
'--trace-children-skip=*plugins*,*python*,*bitcoin-cli*',
|
||||
'--error-exitcode=7',
|
||||
'--log-file={}/valgrind-errors.%p'.format(node.daemon.lightning_dir)
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user