2016-12-09 22:28:04 +01:00
|
|
|
# pylint: disable=C0103,C0111
|
|
|
|
|
|
|
|
import json
|
|
|
|
import unittest
|
|
|
|
import mock
|
|
|
|
|
|
|
|
import bumblebee.input
|
|
|
|
from bumblebee.input import I3BarInput
|
|
|
|
from bumblebee.modules.cpu import Module
|
2016-12-10 19:08:29 +01:00
|
|
|
from tests.util import MockEngine, MockConfig, assertPopen, assertMouseEvent, assertStateContains
|
2016-12-09 22:28:04 +01:00
|
|
|
|
|
|
|
class TestCPUModule(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
self.engine = MockEngine()
|
|
|
|
self.engine.input = I3BarInput()
|
|
|
|
self.engine.input.need_event = True
|
2016-12-10 08:09:13 +01:00
|
|
|
self.config = MockConfig()
|
|
|
|
self.module = Module(engine=self.engine, config={ "config": self.config })
|
2016-12-09 22:28:04 +01:00
|
|
|
|
|
|
|
@mock.patch("sys.stdout")
|
|
|
|
def test_format(self, mock_output):
|
|
|
|
for widget in self.module.widgets():
|
2016-12-10 09:04:12 +01:00
|
|
|
self.assertEquals(len(widget.full_text()), len("100.00%"))
|
2016-12-09 22:28:04 +01:00
|
|
|
|
2016-12-10 13:45:54 +01:00
|
|
|
@mock.patch("select.select")
|
2016-12-09 22:28:04 +01:00
|
|
|
@mock.patch("subprocess.Popen")
|
|
|
|
@mock.patch("sys.stdin")
|
2016-12-10 13:45:54 +01:00
|
|
|
def test_leftclick(self, mock_input, mock_output, mock_select):
|
2016-12-10 19:08:29 +01:00
|
|
|
assertMouseEvent(mock_input, mock_output, mock_select, self.engine,
|
|
|
|
self.module, bumblebee.input.LEFT_MOUSE,
|
|
|
|
"gnome-system-monitor"
|
|
|
|
)
|
2016-12-09 22:28:04 +01:00
|
|
|
|
2016-12-10 08:09:13 +01:00
|
|
|
@mock.patch("psutil.cpu_percent")
|
|
|
|
def test_warning(self, mock_psutil):
|
|
|
|
self.config.set("cpu.critical", "20")
|
|
|
|
self.config.set("cpu.warning", "18")
|
|
|
|
mock_psutil.return_value = 19.0
|
2016-12-10 19:08:29 +01:00
|
|
|
assertStateContains(self, self.module, "warning")
|
2016-12-10 08:09:13 +01:00
|
|
|
|
|
|
|
@mock.patch("psutil.cpu_percent")
|
|
|
|
def test_critical(self, mock_psutil):
|
|
|
|
self.config.set("cpu.critical", "20")
|
|
|
|
self.config.set("cpu.warning", "19")
|
|
|
|
mock_psutil.return_value = 21.0
|
2016-12-10 19:08:29 +01:00
|
|
|
assertStateContains(self, self.module, "critical")
|
2016-12-10 08:09:13 +01:00
|
|
|
|
2016-12-09 22:28:04 +01:00
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|