2017-03-04 11:25:52 +01:00
|
|
|
# pylint: disable=C0103,C0111
|
|
|
|
|
|
|
|
import mock
|
2017-03-05 08:35:15 +01:00
|
|
|
import json
|
2017-03-04 11:25:52 +01:00
|
|
|
import shlex
|
|
|
|
import subprocess
|
|
|
|
|
2017-03-04 13:44:51 +01:00
|
|
|
from bumblebee.output import Widget
|
|
|
|
|
2017-03-05 09:37:59 +01:00
|
|
|
import random
|
2017-03-05 08:35:15 +01:00
|
|
|
|
|
|
|
def rand(cnt):
|
2017-03-05 09:37:59 +01:00
|
|
|
return "".join(random.choice("abcdefghijklmnopqrstuvwxyz0123456789") for i in range(cnt))
|
2017-03-05 08:35:15 +01:00
|
|
|
|
|
|
|
def mouseEvent(stdin, button, inp, module=None, instance=None):
|
|
|
|
stdin.readline.return_value = json.dumps({
|
|
|
|
"name": module.id if module else rand(10),
|
|
|
|
"button": button,
|
|
|
|
"instance": instance
|
|
|
|
})
|
|
|
|
inp.start()
|
|
|
|
inp.stop()
|
|
|
|
stdin.readline.assert_any_call()
|
|
|
|
|
2017-03-04 11:25:52 +01:00
|
|
|
class MockPopen(object):
|
2017-03-05 08:35:15 +01:00
|
|
|
def __init__(self, module=""):
|
|
|
|
if len(module) > 0: module = "{}.".format(module)
|
|
|
|
self._patch = mock.patch("{}subprocess.Popen".format(module))
|
2017-03-04 11:25:52 +01:00
|
|
|
self._popen = self._patch.start()
|
|
|
|
self.mock = mock.Mock()
|
|
|
|
# for a nicer, more uniform interface
|
|
|
|
self.mock.popen = self._popen
|
|
|
|
# for easier command execution checks
|
|
|
|
self.mock.popen.assert_call = self.assert_call
|
|
|
|
self._popen.return_value = self.mock
|
|
|
|
|
|
|
|
self.mock.communicate.return_value = [ "", None ]
|
|
|
|
self.mock.returncode = 0
|
|
|
|
|
|
|
|
def assert_call(self, cmd):
|
|
|
|
self.mock.popen.assert_called_with(shlex.split(cmd), stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
|
|
|
|
|
|
|
def cleanup(self):
|
|
|
|
self._patch.stop()
|
|
|
|
|
2017-03-04 13:44:51 +01:00
|
|
|
class MockInput(object):
|
|
|
|
def __init__(self):
|
|
|
|
self._callbacks = {}
|
|
|
|
def start(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def stop(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def get_callback(self, uid):
|
|
|
|
return self._callbacks.get(uid, None)
|
|
|
|
|
|
|
|
def register_callback(self, obj, button, cmd):
|
|
|
|
if not obj:
|
|
|
|
return
|
|
|
|
self._callbacks[obj.id] = {
|
|
|
|
"button": button,
|
|
|
|
"command": cmd,
|
|
|
|
}
|
|
|
|
|
|
|
|
class MockOutput(object):
|
|
|
|
def start(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def stop(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def draw(self, widget, engine, module):
|
|
|
|
engine.stop()
|
|
|
|
|
|
|
|
def begin(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def flush(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def end(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
class MockEngine(object):
|
|
|
|
def __init__(self):
|
|
|
|
self.input = MockInput()
|
|
|
|
|
|
|
|
class MockWidget(Widget):
|
|
|
|
def __init__(self, text):
|
|
|
|
super(MockWidget, self).__init__(text)
|
|
|
|
self.module = None
|
|
|
|
self.attr_state = ["state-default"]
|
2017-03-05 08:35:15 +01:00
|
|
|
self.id = rand(10)
|
2017-03-04 13:44:51 +01:00
|
|
|
|
2017-03-05 08:35:15 +01:00
|
|
|
self.full_text(text)
|
|
|
|
|
|
|
|
# def state(self):
|
|
|
|
# return self.attr_state
|
2017-03-04 13:44:51 +01:00
|
|
|
|
|
|
|
def update(self, widgets):
|
|
|
|
pass
|
|
|
|
|
2017-03-04 11:25:52 +01:00
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|