pytest: test the reply functionality (via blinded path) using a plugin.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell
2020-04-01 14:23:22 +10:30
parent 23a36ac8c8
commit 77e7beeb06
2 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
#!/usr/bin/env python3
"""
This plugin is used to test the `onion_message` hook.
"""
from lightning import Plugin
plugin = Plugin()
@plugin.hook("onion_message")
def on_onion_message(plugin, onion_message, **kwargs):
if 'reply_path' not in onion_message:
plugin.log("no reply path")
return
plugin.rpc.call('sendonionmessage', [onion_message['reply_path']])
plugin.log("Sent reply via {}".format(onion_message['reply_path']))
return {"result": "continue"}
plugin.run()