Source code for unit.calendar.generic.timepicker.periodpicker

# Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018  Rickard Lindberg, Roger Lindberg
#
# This file is part of Timeline.
#
# Timeline is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Timeline is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Timeline.  If not, see <http://www.gnu.org/licenses/>.


import humblewx

from unittest.mock import Mock

from timelinelib.calendar.generic.timepicker.periodpickercontroller import PeriodPickerController
from timelinelib.calendar.generic.timepicker.periodpicker import PeriodPicker
from timelinelib.calendar.gregorian.dateformatter import GregorianDateFormatter
from timelinelib.calendar.gregorian.timetype import GregorianTimeType
from timelinelib.config.dotfile import Config
from timelinelib.test.cases.unit import UnitTestCase
from timelinelib.test.utils import gregorian_period
from timelinelib.test.utils import human_time_to_gregorian
from timelinelib.wxgui.framework import Dialog
from timelinelib.calendar.pharaonic.dateformatter import PharaonicDateFormatter
from timelinelib.calendar.pharaonic.timetype.timetype import PharaonicTimeType
from timelinelib.test.pharaonic_utils import pharaonic_period
from timelinelib.test.pharaonic_utils import human_time_to_pharaonic
from timelinelib.calendar.coptic.dateformatter import CopticDateFormatter
from timelinelib.calendar.coptic.timetype.timetype import CopticTimeType


[docs]class TestGregorianPeriodPicker(UnitTestCase):
[docs] def test_show_manual_test_dialog(self): self.show_dialog(GregorianPeriodPickerTestDialog)
[docs] def test_get_value(self): view = Mock(PeriodPicker) view.GetStartValue.return_value = human_time_to_gregorian("1 Jan 2016") view.GetEndValue.return_value = human_time_to_gregorian("2 Jan 2016") controller = PeriodPickerController(view) self.assertEqual( controller.get_value(), gregorian_period("1 Jan 2016", "2 Jan 2016") )
[docs]class GregorianPeriodPickerTestDialog(Dialog): """ <BoxSizerVertical> <FlexGridSizer columns="1" border="ALL"> <Button label="before" /> <PeriodPicker time_type="$(time_type)" name="period_picker" config="$(config)" /> <Button label="after" /> </FlexGridSizer> </BoxSizerVertical> """
[docs] def __init__(self): Dialog.__init__(self, humblewx.Controller, None, { "time_type": GregorianTimeType(), "config": self._create_mock_config(), }) self.period_picker.SetValue( gregorian_period("1 Jan 2016", "4 Jan 2016") )
def _create_mock_config(self): config = Mock(Config) config.get_date_formatter.return_value = GregorianDateFormatter() return config
[docs]class TestPharaonicPeriodPicker(UnitTestCase):
[docs] def test_show_manual_test_dialog(self): self.show_dialog(PharaonicPeriodPickerTestDialog)
[docs] def test_get_value(self): view = Mock(PeriodPicker) view.GetStartValue.return_value = human_time_to_pharaonic("1 I Akhet 2016") view.GetEndValue.return_value = human_time_to_pharaonic("2 I Akhet 2016") controller = PeriodPickerController(view) self.assertEqual( controller.get_value(), pharaonic_period("1 I Akhet 2016", "2 I Akhet 2016") )
[docs]class PharaonicPeriodPickerTestDialog(Dialog): """ <BoxSizerVertical> <FlexGridSizer columns="1" border="ALL"> <Button label="before" /> <PeriodPicker time_type="$(time_type)" name="period_picker" config="$(config)" /> <Button label="after" /> </FlexGridSizer> </BoxSizerVertical> """
[docs] def __init__(self): Dialog.__init__(self, humblewx.Controller, None, { "time_type": PharaonicTimeType(), "config": self._create_mock_config(), }) self.period_picker.SetValue( pharaonic_period("1 I Akhet 2016", "4 I Akhet 2016") )
def _create_mock_config(self): config = Mock(Config) config.get_date_formatter.return_value = PharaonicDateFormatter() return config
[docs]class TestCopticPeriodPicker(UnitTestCase):
[docs] def test_show_manual_test_dialog(self): self.show_dialog(CopticPeriodPickerTestDialog)
[docs] def test_get_value(self): view = Mock(PeriodPicker) view.GetStartValue.return_value = human_time_to_pharaonic("1 I Akhet 2016") view.GetEndValue.return_value = human_time_to_pharaonic("2 I Akhet 2016") controller = PeriodPickerController(view) self.assertEqual( controller.get_value(), pharaonic_period("1 I Akhet 2016", "2 I Akhet 2016") )
[docs]class CopticPeriodPickerTestDialog(Dialog): """ <BoxSizerVertical> <FlexGridSizer columns="1" border="ALL"> <Button label="before" /> <PeriodPicker time_type="$(time_type)" name="period_picker" config="$(config)" /> <Button label="after" /> </FlexGridSizer> </BoxSizerVertical> """
[docs] def __init__(self): Dialog.__init__(self, humblewx.Controller, None, { "time_type": CopticTimeType(), "config": self._create_mock_config(), }) self.period_picker.SetValue( pharaonic_period("1 I Akhet 2016", "4 I Akhet 2016") )
def _create_mock_config(self): config = Mock(Config) config.get_date_formatter.return_value = CopticDateFormatter() return config