mirror of
https://gitlab.com/flectra-community/mis-builder.git
synced 2024-11-16 19:22:04 +00:00
20 lines
920 B
Python
20 lines
920 B
Python
|
# Copyright 2014 ACSONE SA/NV (<http://acsone.eu>)
|
||
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||
|
|
||
|
import flectra.tests.common as common
|
||
|
|
||
|
from ..models.mis_report import _utc_midnight
|
||
|
|
||
|
|
||
|
class TestUtcMidnight(common.TransactionCase):
|
||
|
def test_utc_midnight(self):
|
||
|
date_to_convert = "2014-07-05"
|
||
|
date_time_convert = _utc_midnight(date_to_convert, "Europe/Brussels")
|
||
|
self.assertEqual(date_time_convert, "2014-07-04 22:00:00")
|
||
|
date_time_convert = _utc_midnight(date_to_convert, "Europe/Brussels", add_day=1)
|
||
|
self.assertEqual(date_time_convert, "2014-07-05 22:00:00")
|
||
|
date_time_convert = _utc_midnight(date_to_convert, "US/Pacific")
|
||
|
self.assertEqual(date_time_convert, "2014-07-05 07:00:00")
|
||
|
date_time_convert = _utc_midnight(date_to_convert, "US/Pacific", add_day=1)
|
||
|
self.assertEqual(date_time_convert, "2014-07-06 07:00:00")
|