diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 06:48:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 06:48:59 +0000 |
commit | d835b2cae8abc71958b69362162e6a70c3d7ef63 (patch) | |
tree | 81052e3d2ce3e1bcda085f73d925e9d6257dec15 /test/unittests/test_time.py | |
parent | Initial commit. (diff) | |
download | crmsh-d835b2cae8abc71958b69362162e6a70c3d7ef63.tar.xz crmsh-d835b2cae8abc71958b69362162e6a70c3d7ef63.zip |
Adding upstream version 4.6.0.upstream/4.6.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | test/unittests/test_time.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/unittests/test_time.py b/test/unittests/test_time.py new file mode 100644 index 0000000..b252a5d --- /dev/null +++ b/test/unittests/test_time.py @@ -0,0 +1,24 @@ +from __future__ import unicode_literals +# Copyright (C) 2014 Kristoffer Gronlund <kgronlund@suse.com> +# See COPYING for license information. + + +from crmsh import utils +from crmsh import logtime +import time +import datetime +import dateutil.tz + + +def test_time_convert1(): + loctz = dateutil.tz.tzlocal() + tm = time.localtime(utils.datetime_to_timestamp(utils.make_datetime_naive(datetime.datetime(2015, 6, 1, 10, 0, 0).replace(tzinfo=loctz)))) + dt = utils.parse_time('Jun 01, 2015 10:00:00') + assert logtime.human_date(dt) == time.strftime('%Y-%m-%d %H:%M:%S', tm) + + +def test_time_convert2(): + loctz = dateutil.tz.tzlocal() + tm = time.localtime(utils.datetime_to_timestamp(utils.make_datetime_naive(datetime.datetime(2015, 6, 1, 10, 0, 0).replace(tzinfo=loctz)))) + ts = time.localtime(utils.parse_to_timestamp('Jun 01, 2015 10:00:00')) + assert time.strftime('%Y-%m-%d %H:%M:%S', ts) == time.strftime('%Y-%m-%d %H:%M:%S', tm) |