summaryrefslogtreecommitdiffstats
path: root/tests/unit/test_timeutils.py
diff options
context:
space:
mode:
authorRussell Bryant <rbryant@redhat.com>2012-07-16 10:30:25 -0400
committerRussell Bryant <rbryant@redhat.com>2012-07-16 10:39:44 -0400
commitce3071437d1871f77c4d8573cbe5f4ea8c817650 (patch)
tree5a9f6f292d96d94c762f7e3873d951e43903a47f /tests/unit/test_timeutils.py
parent2adaf2ffafdb67bd237578f094b78d15da17b772 (diff)
downloadoslo-ce3071437d1871f77c4d8573cbe5f4ea8c817650.tar.gz
oslo-ce3071437d1871f77c4d8573cbe5f4ea8c817650.tar.xz
oslo-ce3071437d1871f77c4d8573cbe5f4ea8c817650.zip
Use strtime() in to_primitive() for datetime objs.
This patch updates jsonutils.to_primitive() to use timeutils.strtime() to convert a datimetime object to a string instead of just using str(). This ensures that we can easily convert the string back to a datetime using timeutils.parse_strtime(). Required for the nova blueprint no-db-messaging. Change-Id: I725b333695930e12e2832378102514326fec639c
Diffstat (limited to 'tests/unit/test_timeutils.py')
-rw-r--r--tests/unit/test_timeutils.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/unit/test_timeutils.py b/tests/unit/test_timeutils.py
index d0b773a..7dbd608 100644
--- a/tests/unit/test_timeutils.py
+++ b/tests/unit/test_timeutils.py
@@ -59,6 +59,12 @@ class TimeUtilsTest(unittest.TestCase):
expect = timeutils.parse_strtime(perfect_time_format)
self.assertEqual(self.skynet_self_aware_time_perfect, expect)
+ def test_strtime_and_back(self):
+ orig_t = datetime.datetime(1997, 8, 29, 6, 14, 0)
+ s = timeutils.strtime(orig_t)
+ t = timeutils.parse_strtime(s)
+ self.assertEqual(orig_t, t)
+
def test_is_older_than(self):
with mock.patch('datetime.datetime') as datetime_mock:
datetime_mock.utcnow.return_value = self.skynet_self_aware_time