2016-03-09 09:25:50 +00:00
|
|
|
"""Test Home Assistant date util methods."""
|
2015-04-29 02:12:05 +00:00
|
|
|
# pylint: disable=too-many-public-methods
|
|
|
|
import unittest
|
|
|
|
from datetime import datetime, timedelta
|
|
|
|
|
|
|
|
import homeassistant.util.dt as dt_util
|
|
|
|
|
|
|
|
TEST_TIME_ZONE = 'America/Los_Angeles'
|
|
|
|
|
|
|
|
|
|
|
|
class TestDateUtil(unittest.TestCase):
|
2016-03-09 09:25:50 +00:00
|
|
|
"""Test util date methods."""
|
2015-04-29 02:12:05 +00:00
|
|
|
|
|
|
|
def setUp(self):
|
2016-03-09 09:25:50 +00:00
|
|
|
"""Setup the tests."""
|
2015-04-29 02:12:05 +00:00
|
|
|
self.orig_default_time_zone = dt_util.DEFAULT_TIME_ZONE
|
|
|
|
|
|
|
|
def tearDown(self):
|
2016-03-09 09:25:50 +00:00
|
|
|
"""Stop everything that was started."""
|
2015-04-29 02:12:05 +00:00
|
|
|
dt_util.set_default_time_zone(self.orig_default_time_zone)
|
|
|
|
|
|
|
|
def test_get_time_zone_retrieves_valid_time_zone(self):
|
2016-03-09 09:25:50 +00:00
|
|
|
"""Test getting a time zone."""
|
2015-04-29 02:12:05 +00:00
|
|
|
time_zone = dt_util.get_time_zone(TEST_TIME_ZONE)
|
|
|
|
|
|
|
|
self.assertIsNotNone(time_zone)
|
|
|
|
self.assertEqual(TEST_TIME_ZONE, time_zone.zone)
|
|
|
|
|
|
|
|
def test_get_time_zone_returns_none_for_garbage_time_zone(self):
|
2016-03-09 09:25:50 +00:00
|
|
|
"""Test getting a non existing time zone."""
|
2015-04-29 02:12:05 +00:00
|
|
|
time_zone = dt_util.get_time_zone("Non existing time zone")
|
|
|
|
|
|
|
|
self.assertIsNone(time_zone)
|
|
|
|
|
|
|
|
def test_set_default_time_zone(self):
|
2016-03-09 09:25:50 +00:00
|
|
|
"""Test setting default time zone."""
|
2015-04-29 02:12:05 +00:00
|
|
|
time_zone = dt_util.get_time_zone(TEST_TIME_ZONE)
|
|
|
|
|
|
|
|
dt_util.set_default_time_zone(time_zone)
|
|
|
|
|
|
|
|
# We cannot compare the timezones directly because of DST
|
|
|
|
self.assertEqual(time_zone.zone, dt_util.now().tzinfo.zone)
|
|
|
|
|
|
|
|
def test_utcnow(self):
|
2016-03-09 09:25:50 +00:00
|
|
|
"""Test the UTC now method."""
|
2015-04-29 02:12:05 +00:00
|
|
|
self.assertAlmostEqual(
|
|
|
|
dt_util.utcnow().replace(tzinfo=None),
|
|
|
|
datetime.utcnow(),
|
|
|
|
delta=timedelta(seconds=1))
|
|
|
|
|
|
|
|
def test_now(self):
|
2016-03-09 09:25:50 +00:00
|
|
|
"""Test the now method."""
|
2015-04-29 02:12:05 +00:00
|
|
|
dt_util.set_default_time_zone(dt_util.get_time_zone(TEST_TIME_ZONE))
|
|
|
|
|
|
|
|
self.assertAlmostEqual(
|
|
|
|
dt_util.as_utc(dt_util.now()).replace(tzinfo=None),
|
|
|
|
datetime.utcnow(),
|
|
|
|
delta=timedelta(seconds=1))
|
|
|
|
|
|
|
|
def test_as_utc_with_naive_object(self):
|
2016-03-09 09:25:50 +00:00
|
|
|
"""Test the now method."""
|
2015-04-29 02:12:05 +00:00
|
|
|
utcnow = datetime.utcnow()
|
|
|
|
|
|
|
|
self.assertEqual(utcnow,
|
|
|
|
dt_util.as_utc(utcnow).replace(tzinfo=None))
|
|
|
|
|
|
|
|
def test_as_utc_with_utc_object(self):
|
2016-03-09 09:25:50 +00:00
|
|
|
"""Test UTC time with UTC object."""
|
2015-04-29 02:12:05 +00:00
|
|
|
utcnow = dt_util.utcnow()
|
|
|
|
|
|
|
|
self.assertEqual(utcnow, dt_util.as_utc(utcnow))
|
|
|
|
|
|
|
|
def test_as_utc_with_local_object(self):
|
2016-03-09 09:25:50 +00:00
|
|
|
"""Test the UTC time with local object."""
|
2015-04-29 02:12:05 +00:00
|
|
|
dt_util.set_default_time_zone(dt_util.get_time_zone(TEST_TIME_ZONE))
|
|
|
|
localnow = dt_util.now()
|
|
|
|
utcnow = dt_util.as_utc(localnow)
|
|
|
|
|
|
|
|
self.assertEqual(localnow, utcnow)
|
|
|
|
self.assertNotEqual(localnow.tzinfo, utcnow.tzinfo)
|
|
|
|
|
|
|
|
def test_as_local_with_naive_object(self):
|
2016-03-09 09:25:50 +00:00
|
|
|
"""Test local time with native object."""
|
2015-04-29 02:12:05 +00:00
|
|
|
now = dt_util.now()
|
|
|
|
self.assertAlmostEqual(
|
|
|
|
now, dt_util.as_local(datetime.utcnow()),
|
|
|
|
delta=timedelta(seconds=1))
|
|
|
|
|
|
|
|
def test_as_local_with_local_object(self):
|
2016-03-09 09:25:50 +00:00
|
|
|
"""Test local with local object."""
|
2015-04-29 02:12:05 +00:00
|
|
|
now = dt_util.now()
|
|
|
|
self.assertEqual(now, now)
|
|
|
|
|
|
|
|
def test_as_local_with_utc_object(self):
|
2016-03-09 09:25:50 +00:00
|
|
|
"""Test local time with UTC object."""
|
2015-04-29 02:12:05 +00:00
|
|
|
dt_util.set_default_time_zone(dt_util.get_time_zone(TEST_TIME_ZONE))
|
|
|
|
|
|
|
|
utcnow = dt_util.utcnow()
|
|
|
|
localnow = dt_util.as_local(utcnow)
|
|
|
|
|
|
|
|
self.assertEqual(localnow, utcnow)
|
|
|
|
self.assertNotEqual(localnow.tzinfo, utcnow.tzinfo)
|
|
|
|
|
|
|
|
def test_utc_from_timestamp(self):
|
2016-03-09 09:25:50 +00:00
|
|
|
"""Test utc_from_timestamp method."""
|
2015-04-29 02:12:05 +00:00
|
|
|
self.assertEqual(
|
|
|
|
datetime(1986, 7, 9, tzinfo=dt_util.UTC),
|
|
|
|
dt_util.utc_from_timestamp(521251200))
|
|
|
|
|
2016-05-07 01:33:46 +00:00
|
|
|
def test_as_timestamp(self):
|
|
|
|
"""Test as_timestamp method."""
|
|
|
|
ts = 1462401234
|
|
|
|
utc_dt = dt_util.utc_from_timestamp(ts)
|
|
|
|
self.assertEqual(ts, dt_util.as_timestamp(utc_dt))
|
|
|
|
utc_iso = utc_dt.isoformat()
|
|
|
|
self.assertEqual(ts, dt_util.as_timestamp(utc_iso))
|
|
|
|
|
|
|
|
# confirm the ability to handle a string passed in
|
|
|
|
delta = dt_util.as_timestamp("2016-01-01 12:12:12")
|
|
|
|
delta -= dt_util.as_timestamp("2016-01-01 12:12:11")
|
|
|
|
self.assertEquals(1, delta)
|
|
|
|
|
2016-04-16 07:55:35 +00:00
|
|
|
def test_parse_datetime_converts_correctly(self):
|
|
|
|
"""Test parse_datetime converts strings."""
|
|
|
|
assert \
|
|
|
|
datetime(1986, 7, 9, 12, 0, 0, tzinfo=dt_util.UTC) == \
|
|
|
|
dt_util.parse_datetime("1986-07-09T12:00:00Z")
|
2015-04-29 02:12:05 +00:00
|
|
|
|
2016-04-16 07:55:35 +00:00
|
|
|
utcnow = dt_util.utcnow()
|
2015-04-29 02:12:05 +00:00
|
|
|
|
2016-04-16 07:55:35 +00:00
|
|
|
assert utcnow == dt_util.parse_datetime(utcnow.isoformat())
|
2015-04-29 02:12:05 +00:00
|
|
|
|
2016-04-16 07:55:35 +00:00
|
|
|
def test_parse_datetime_returns_none_for_incorrect_format(self):
|
|
|
|
"""Test parse_datetime returns None if incorrect format."""
|
|
|
|
self.assertIsNone(dt_util.parse_datetime("not a datetime string"))
|