2020-07-20 13:56:18 +02:00
|
|
|
import pytest
|
2020-08-31 22:48:19 +02:00
|
|
|
from unittest import mock, TestCase
|
|
|
|
from freezegun import freeze_time
|
|
|
|
|
|
|
|
import core.config
|
|
|
|
import core.input
|
|
|
|
import core.widget
|
|
|
|
import modules.core.datetime
|
2020-07-20 13:56:18 +02:00
|
|
|
|
|
|
|
pytest.importorskip("datetime")
|
|
|
|
|
2020-08-31 22:48:19 +02:00
|
|
|
def build_module(args = []):
|
|
|
|
config = core.config.Config(args)
|
|
|
|
return modules.core.datetime.Module(config=config, theme=None)
|
|
|
|
|
|
|
|
def build_widget():
|
|
|
|
return core.widget.Widget()
|
|
|
|
|
|
|
|
class DatetimeTest(TestCase):
|
|
|
|
def setup_class(self):
|
|
|
|
locale_patcher = mock.patch('locale.getdefaultlocale')
|
|
|
|
locale_mock = locale_patcher.start()
|
|
|
|
locale_mock.return_value = ('en-US', 'UTF-8')
|
|
|
|
|
|
|
|
self.widget = build_widget()
|
|
|
|
|
|
|
|
def test_load_module(self):
|
|
|
|
__import__("modules.core.datetime")
|
|
|
|
|
|
|
|
@freeze_time('2020-10-15')
|
|
|
|
def test_default_format(self):
|
|
|
|
module = build_module()
|
|
|
|
assert module.full_text(self.widget) == '10/15/2020 12:00:00 AM'
|
|
|
|
|
|
|
|
@freeze_time('2020-10-20')
|
|
|
|
def test_custom_format(self):
|
|
|
|
module = build_module(['-p', 'datetime.format=%Y.%m.%d'])
|
|
|
|
assert module.full_text(self.widget) == '2020.10.20'
|
|
|
|
|
|
|
|
@freeze_time('2020-01-10 10:20:30')
|
|
|
|
@mock.patch('locale.getdefaultlocale')
|
|
|
|
def test_invalid_locale(self, locale_mock):
|
|
|
|
locale_mock.return_value = ('in-IN', 'UTF-0')
|
|
|
|
|
|
|
|
module = build_module()
|
|
|
|
assert module.full_text(self.widget) == '01/10/2020 10:20:30 AM'
|
|
|
|
|
|
|
|
@mock.patch('core.input.register')
|
|
|
|
def test_register_left_mouse_action(self, input_register_mock):
|
|
|
|
module = build_module()
|
|
|
|
|
|
|
|
input_register_mock.assert_called_with(
|
|
|
|
module,
|
|
|
|
button=core.input.LEFT_MOUSE,
|
|
|
|
cmd='calendar'
|
|
|
|
)
|
2020-07-20 13:56:18 +02:00
|
|
|
|