f6be25bc73
Use epoll instead of select in order to be able to use level-triggered semantics and not get stuck on the first event.
56 lines
1.9 KiB
Python
56 lines
1.9 KiB
Python
# pylint: disable=C0103,C0111
|
|
|
|
import json
|
|
import unittest
|
|
import mock
|
|
|
|
import bumblebee.input
|
|
from bumblebee.input import I3BarInput
|
|
from bumblebee.modules.disk import Module
|
|
from tests.util import MockEngine, MockConfig, assertPopen, assertStateContains, MockEpoll
|
|
|
|
class MockVFS(object):
|
|
def __init__(self, perc):
|
|
self.f_blocks = 1024*1024
|
|
self.f_frsize = 1
|
|
self.f_bavail = self.f_blocks - self.f_blocks*(perc/100.0)
|
|
|
|
class TestDiskModule(unittest.TestCase):
|
|
def setUp(self):
|
|
self.engine = MockEngine()
|
|
self.engine.input = I3BarInput()
|
|
self.engine.input.need_event = True
|
|
self.config = MockConfig()
|
|
self.config.set("disk.path", "somepath")
|
|
self.module = Module(engine=self.engine, config={"config": self.config})
|
|
|
|
@mock.patch("select.epoll")
|
|
@mock.patch("subprocess.Popen")
|
|
@mock.patch("sys.stdin")
|
|
def test_leftclick(self, mock_input, mock_output, mock_select):
|
|
mock_input.readline.return_value = json.dumps({
|
|
"name": self.module.id,
|
|
"button": bumblebee.input.LEFT_MOUSE,
|
|
"instance": None
|
|
})
|
|
mock_select.return_value = MockEpoll()
|
|
self.engine.input.start()
|
|
self.engine.input.stop()
|
|
mock_input.readline.assert_any_call()
|
|
assertPopen(mock_output, "nautilus {}".format(self.module.parameter("path")))
|
|
|
|
@mock.patch("os.statvfs")
|
|
def test_warning(self, mock_stat):
|
|
self.config.set("disk.critical", "80")
|
|
self.config.set("disk.warning", "70")
|
|
mock_stat.return_value = MockVFS(75.0)
|
|
assertStateContains(self, self.module, "warning")
|
|
|
|
@mock.patch("os.statvfs")
|
|
def test_critical(self, mock_stat):
|
|
self.config.set("disk.critical", "80")
|
|
self.config.set("disk.warning", "70")
|
|
mock_stat.return_value = MockVFS(85.0)
|
|
assertStateContains(self, self.module, "critical")
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|