Add date tests
This commit is contained in:
parent
1b66e17780
commit
213c28992c
1 changed files with 53 additions and 2 deletions
|
@ -1,5 +1,56 @@
|
||||||
import pytest
|
import pytest
|
||||||
|
from unittest import TestCase, mock
|
||||||
|
from freezegun import freeze_time
|
||||||
|
|
||||||
|
import core.config
|
||||||
|
import core.input
|
||||||
|
import core.widget
|
||||||
|
import modules.core.date
|
||||||
|
|
||||||
|
def build_module(args = []):
|
||||||
|
config = core.config.Config(args)
|
||||||
|
return modules.core.date.Module(config=config, theme=None)
|
||||||
|
|
||||||
|
def build_widget():
|
||||||
|
return core.widget.Widget()
|
||||||
|
|
||||||
|
class DateTest(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.date")
|
||||||
|
|
||||||
|
@freeze_time('2020-10-15 03:25:59')
|
||||||
|
def test_default_format(self):
|
||||||
|
module = build_module()
|
||||||
|
assert module.full_text(self.widget) == '10/15/2020'
|
||||||
|
|
||||||
|
@freeze_time('2020-10-20 12:30:00')
|
||||||
|
def test_custom_format(self):
|
||||||
|
module = build_module(['-p', 'date.format=%d.%m.%y'])
|
||||||
|
assert module.full_text(self.widget) == '20.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'
|
||||||
|
|
||||||
|
@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'
|
||||||
|
)
|
||||||
|
|
||||||
def test_load_module():
|
|
||||||
__import__("modules.core.date")
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue