mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-15 20:09:18 +01:00
pytest: test for filtering bug.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
parent
3191ff7e32
commit
be2cbe784f
2 changed files with 24 additions and 0 deletions
13
tests/plugins/log.py
Executable file
13
tests/plugins/log.py
Executable file
|
@ -0,0 +1,13 @@
|
|||
#!/usr/bin/env python3
|
||||
from pyln.client import Plugin
|
||||
|
||||
plugin = Plugin()
|
||||
|
||||
|
||||
@plugin.init()
|
||||
def init(options, configuration, plugin):
|
||||
plugin.log("printing debug log", level='debug')
|
||||
plugin.log("printing info log", level='info')
|
||||
|
||||
|
||||
plugin.run()
|
|
@ -3076,6 +3076,17 @@ def test_log_filter(node_factory):
|
|||
assert all([' {}-'.format(l1.info['id']) in l for l in lines])
|
||||
|
||||
|
||||
@pytest.mark.xfail(strict=True)
|
||||
def test_log_filter_bug(node_factory):
|
||||
"""Test the log-level option with overriding to a more verbose setting"""
|
||||
log_plugin = os.path.join(os.getcwd(), 'tests/plugins/log.py')
|
||||
l1 = node_factory.get_node(options={'plugin': log_plugin,
|
||||
'log-level': ['info', 'debug:plugin-log']})
|
||||
l1.daemon.logsearch_start = 0
|
||||
l1.daemon.wait_for_log("printing debug log")
|
||||
l1.daemon.wait_for_log("printing info log")
|
||||
|
||||
|
||||
def test_force_feerates(node_factory):
|
||||
l1 = node_factory.get_node(options={'force-feerates': 1111})
|
||||
assert l1.rpc.listconfigs()['configs']['force-feerates']['value_str'] == '1111'
|
||||
|
|
Loading…
Add table
Reference in a new issue