mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-21 16:14:23 +01:00
pytest: add notifications to tests.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
22
tests/plugins/notify.py
Executable file
22
tests/plugins/notify.py
Executable file
@@ -0,0 +1,22 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
from pyln.client import Plugin
|
||||
import time
|
||||
|
||||
plugin = Plugin()
|
||||
|
||||
|
||||
@plugin.method("make_notify")
|
||||
def make_notify(plugin, request, **kwargs):
|
||||
plugin.notify_message(request, "Beginning stage 1")
|
||||
for i in range(100):
|
||||
plugin.notify_progress(request, i, 100, stage=0, stage_total=2)
|
||||
time.sleep(0.01)
|
||||
plugin.notify_message(request, "Beginning stage 2", level='debug')
|
||||
for i in range(10):
|
||||
plugin.notify_progress(request, i, 10, stage=1, stage_total=2)
|
||||
time.sleep(0.1)
|
||||
return "This worked"
|
||||
|
||||
|
||||
plugin.run()
|
||||
Reference in New Issue
Block a user