2019-07-25 15:57:53 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
"""Plugin to be used to test miscellaneous notifications.
|
|
|
|
"""
|
|
|
|
|
2021-11-10 09:31:06 +01:00
|
|
|
from pyln.client import Plugin, RpcError
|
2021-11-03 08:59:10 +01:00
|
|
|
import sys
|
2021-11-10 09:31:06 +01:00
|
|
|
import pytest
|
2019-07-25 15:57:53 +02:00
|
|
|
|
|
|
|
plugin = Plugin()
|
|
|
|
|
|
|
|
|
|
|
|
@plugin.init()
|
|
|
|
def init(plugin, options, configuration):
|
|
|
|
plugin.log("misc_notifications initialized")
|
|
|
|
|
|
|
|
|
|
|
|
@plugin.subscribe("channel_opened")
|
2020-09-08 18:16:04 +02:00
|
|
|
def channel_opened(plugin, channel_opened, **kwargs):
|
2019-07-25 15:57:53 +02:00
|
|
|
plugin.log("A channel was opened to us by {}, with an amount"
|
|
|
|
" of {} and the following funding transaction id: {}"
|
|
|
|
.format(channel_opened["id"], channel_opened["amount"],
|
|
|
|
channel_opened["funding_txid"]))
|
|
|
|
|
|
|
|
|
2020-09-08 18:16:04 +02:00
|
|
|
@plugin.subscribe("channel_state_changed")
|
|
|
|
def channel_state_changed(plugin, channel_state_changed, **kwargs):
|
|
|
|
plugin.log("channel_state_changed {}".format(channel_state_changed))
|
|
|
|
|
|
|
|
|
2021-11-03 08:59:10 +01:00
|
|
|
@plugin.subscribe("shutdown")
|
|
|
|
def shutdown(plugin, **kwargs):
|
2021-11-10 09:31:06 +01:00
|
|
|
|
|
|
|
# 'shutdown' notification can be called in two ways, from `plugin stop` or from
|
|
|
|
# lightningd's shutdown loop, we test which one by making `getinfo` call
|
|
|
|
try:
|
|
|
|
plugin.rpc.getinfo()
|
|
|
|
plugin.rpc.datastore(key='test', string='Allowed', mode="create-or-append")
|
2021-12-08 18:58:09 +01:00
|
|
|
plugin.log("via plugin stop, datastore success")
|
2021-11-10 09:31:06 +01:00
|
|
|
except RpcError as e:
|
|
|
|
if e.error == {'code': -5, 'message': 'lightningd is shutting down'}:
|
|
|
|
# JSON RPC is disabled by now, but can do logging
|
|
|
|
with pytest.raises(RpcError, match=r'-5.*lightningd is shutting down'):
|
|
|
|
plugin.rpc.datastore(key='test', string='Not allowed', mode="create-or-append")
|
2021-12-08 18:58:09 +01:00
|
|
|
plugin.log("via lightningd shutdown, datastore failed")
|
2021-11-10 09:31:06 +01:00
|
|
|
else:
|
|
|
|
raise
|
|
|
|
|
2021-11-03 08:59:10 +01:00
|
|
|
sys.exit(0)
|
|
|
|
|
|
|
|
|
2019-07-25 15:57:53 +02:00
|
|
|
plugin.run()
|