1
0
mirror of https://github.com/gsi-upm/senpy synced 2024-09-21 06:01:43 +00:00
senpy/tests/sleep_plugin/sleep.py

18 lines
481 B
Python
Raw Normal View History

from senpy.plugins import SenpyPlugin
2015-02-23 01:13:31 +00:00
from senpy.models import Response
from time import sleep
class SleepPlugin(SenpyPlugin):
def __init__(self, info, *args, **kwargs):
super(SleepPlugin, self).__init__(info, *args, **kwargs)
self.timeout = int(info["timeout"])
def activate(self, *args, **kwargs):
sleep(self.timeout)
2015-02-23 01:13:31 +00:00
def analyse(self, *args, **kwargs):
2015-04-26 19:08:36 +00:00
sleep(float(kwargs.get("timeout", self.timeout)))
2015-02-23 01:13:31 +00:00
return Response()