mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-19 15:14:23 +01:00
pytest: test rpc_command hook chain
This commit is contained in:
committed by
Rusty Russell
parent
316457a1de
commit
d753ee27a2
24
tests/plugins/rpc_command_2.py
Executable file
24
tests/plugins/rpc_command_2.py
Executable file
@@ -0,0 +1,24 @@
|
||||
#!/usr/bin/env python3
|
||||
"""
|
||||
This plugin is used to test the chained `rpc_command` hook.
|
||||
"""
|
||||
from pyln.client import Plugin
|
||||
|
||||
plugin = Plugin()
|
||||
|
||||
|
||||
@plugin.hook("rpc_command")
|
||||
def on_rpc_command(plugin, rpc_command, **kwargs):
|
||||
request = rpc_command
|
||||
if request["method"] == "invoice":
|
||||
# Replace part of this command
|
||||
request["params"]["description"] = "rpc_command_2 modified this description"
|
||||
return {"replace": request}
|
||||
elif request["method"] == "sendpay":
|
||||
# Don't allow this command to be executed
|
||||
return {"return": {"error": {"code": -1,
|
||||
"message": "rpc_command_2 cannot do this"}}}
|
||||
return {"result": "continue"}
|
||||
|
||||
|
||||
plugin.run()
|
||||
Reference in New Issue
Block a user