blob: 3f5f531a7ccb50aef7c7f74e05543e30befc243c [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento0f830802018-01-16 23:58:58 -05002/*
Davide Pesavento923ba442019-02-12 22:00:38 -05003 * Copyright (c) 2013-2019 Regents of the University of California.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -080020 */
21
Davide Pesavento7e780642018-11-24 15:51:34 -050022#include "ndn-cxx/util/time.hpp"
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -080023
Davide Pesavento7e780642018-11-24 15:51:34 -050024#include "tests/boost-test.hpp"
Alexander Afanasyevb1db7c62014-04-03 14:57:25 -070025
Davide Pesavento923ba442019-02-12 22:00:38 -050026#include <boost/lexical_cast.hpp>
Davide Pesavento0f830802018-01-16 23:58:58 -050027#include <thread>
28
Alexander Afanasyev0abb2da2014-01-30 18:07:57 -080029namespace ndn {
Alexander Afanasyevf8379172017-01-11 16:56:04 -080030namespace time {
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080031namespace tests {
Alexander Afanasyev0abb2da2014-01-30 18:07:57 -080032
Junxiao Shi5537d132016-08-05 03:48:01 +000033BOOST_AUTO_TEST_SUITE(Util)
34BOOST_AUTO_TEST_SUITE(TestTime)
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -080035
Alexander Afanasyevd1b5c412014-03-27 15:03:51 -070036BOOST_AUTO_TEST_CASE(SystemClock)
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -080037{
Alexander Afanasyevf8379172017-01-11 16:56:04 -080038 system_clock::TimePoint value = system_clock::now();
39 system_clock::TimePoint referenceTime = fromUnixTimestamp(milliseconds(1390966967032LL));
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -080040
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070041 BOOST_CHECK_GT(value, referenceTime);
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -080042
Alexander Afanasyevf8379172017-01-11 16:56:04 -080043 BOOST_CHECK_EQUAL(toIsoString(referenceTime), "20140129T034247.032000");
44 BOOST_CHECK_EQUAL(toString(referenceTime), "2014-01-29 03:42:47");
45 BOOST_CHECK_EQUAL(toString(referenceTime), "2014-01-29 03:42:47");
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070046
Alexander Afanasyev53af7a12014-04-10 23:35:28 -070047 // Unfortunately, not all systems has lv_LV locale installed :(
Davide Pesavento0f830802018-01-16 23:58:58 -050048 // BOOST_CHECK_EQUAL(toString(referenceTime, "%Y. gada %d. %B", std::locale("lv_LV.UTF-8")),
Alexander Afanasyev53af7a12014-04-10 23:35:28 -070049 // "2014. gada 29. Janvāris");
50
Davide Pesavento0f830802018-01-16 23:58:58 -050051 BOOST_CHECK_EQUAL(toString(referenceTime, "%Y -- %d -- %B", std::locale("C")),
Alexander Afanasyev53af7a12014-04-10 23:35:28 -070052 "2014 -- 29 -- January");
53
Alexander Afanasyevf8379172017-01-11 16:56:04 -080054 BOOST_CHECK_EQUAL(fromIsoString("20140129T034247.032000"), referenceTime);
55 BOOST_CHECK_EQUAL(fromIsoString("20140129T034247.032000Z"), referenceTime);
Davide Pesaventoc5ba65b2018-01-28 00:30:25 -050056 BOOST_CHECK_EQUAL(fromString("2014-01-29 03:42:47"), fromUnixTimestamp(1390966967_s));
Alexander Afanasyev53af7a12014-04-10 23:35:28 -070057
58 // Unfortunately, not all systems has lv_LV locale installed :(
Davide Pesavento0f830802018-01-16 23:58:58 -050059 // BOOST_CHECK_EQUAL(fromString("2014. gada 29. Janvāris", "%Y. gada %d. %B", std::locale("lv_LV.UTF-8")),
Davide Pesaventoc5ba65b2018-01-28 00:30:25 -050060 // fromUnixTimestamp(1390953600_s));
Alexander Afanasyev53af7a12014-04-10 23:35:28 -070061
Davide Pesavento0f830802018-01-16 23:58:58 -050062 BOOST_CHECK_EQUAL(fromString("2014 -- 29 -- January", "%Y -- %d -- %B", std::locale("C")),
Davide Pesaventoc5ba65b2018-01-28 00:30:25 -050063 fromUnixTimestamp(1390953600_s));
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070064}
65
Alexander Afanasyevd1b5c412014-03-27 15:03:51 -070066BOOST_AUTO_TEST_CASE(SteadyClock)
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070067{
Alexander Afanasyevf8379172017-01-11 16:56:04 -080068 steady_clock::TimePoint oldValue = steady_clock::now();
Davide Pesavento0f830802018-01-16 23:58:58 -050069 std::this_thread::sleep_for(std::chrono::milliseconds(1));
Alexander Afanasyevf8379172017-01-11 16:56:04 -080070 steady_clock::TimePoint newValue = steady_clock::now();
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070071 BOOST_CHECK_GT(newValue, oldValue);
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -080072}
73
Junxiao Shi5537d132016-08-05 03:48:01 +000074BOOST_AUTO_TEST_CASE(Abs)
75{
Alexander Afanasyevf8379172017-01-11 16:56:04 -080076 BOOST_CHECK_EQUAL(abs(nanoseconds(24422)), nanoseconds(24422));
77 BOOST_CHECK_EQUAL(abs(microseconds(0)), microseconds(0));
78 BOOST_CHECK_EQUAL(abs(milliseconds(-15583)), milliseconds(15583));
79}
80
Alexander Afanasyevf8379172017-01-11 16:56:04 -080081BOOST_AUTO_TEST_CASE(LargeDates)
82{
Davide Pesaventoc5ba65b2018-01-28 00:30:25 -050083 auto value = fromUnixTimestamp(1390966967032_ms);
Alexander Afanasyevf8379172017-01-11 16:56:04 -080084 BOOST_CHECK_EQUAL(toIsoString(value), "20140129T034247.032000");
Alexander Afanasyeve66040e2018-01-25 19:15:30 -050085 BOOST_CHECK_EQUAL(fromIsoString("20140129T034247.032000"), value);
Davide Pesaventoc5ba65b2018-01-28 00:30:25 -050086 BOOST_CHECK_EQUAL(toString(value, "%Y-%m-%d %H:%M:%S%F"), "2014-01-29 03:42:47.032000");
87 BOOST_CHECK_EQUAL(fromString("2014-01-29 03:42:47.032000", "%Y-%m-%d %H:%M:%S%F"), value);
Alexander Afanasyevf8379172017-01-11 16:56:04 -080088
Alexander Afanasyeve66040e2018-01-25 19:15:30 -050089 value += 36524_days;
Alexander Afanasyevf8379172017-01-11 16:56:04 -080090 BOOST_CHECK_EQUAL(toIsoString(value), "21140129T034247.032000");
Alexander Afanasyeve66040e2018-01-25 19:15:30 -050091 BOOST_CHECK_EQUAL(fromIsoString("21140129T034247.032000"), value);
Davide Pesaventoc5ba65b2018-01-28 00:30:25 -050092 BOOST_CHECK_EQUAL(toString(value, "%Y-%m-%d %H:%M:%S%F"), "2114-01-29 03:42:47.032000");
93 BOOST_CHECK_EQUAL(fromString("2114-01-29 03:42:47.03200", "%Y-%m-%d %H:%M:%S%F"), value);
Junxiao Shi5537d132016-08-05 03:48:01 +000094}
95
Davide Pesavento0f830802018-01-16 23:58:58 -050096BOOST_AUTO_TEST_CASE(Literals)
97{
98 BOOST_CHECK_EQUAL(42_s, seconds(42));
99
100 BOOST_CHECK_EQUAL(1_day, 24_h);
101 BOOST_CHECK_EQUAL(2_days, 48_h);
102 BOOST_CHECK_EQUAL(0.5_day, 12_h);
103 BOOST_CHECK_EQUAL(.5_days, 12_h);
104
105 BOOST_CHECK_EQUAL(1_h, 60_min);
106 BOOST_CHECK_EQUAL(0.5_h, 30_min);
107
108 BOOST_CHECK_EQUAL(1_min, 60_s);
109 BOOST_CHECK_EQUAL(0.5_min, 30_s);
110
111 BOOST_CHECK_EQUAL(1_s, 1000_ms);
112 BOOST_CHECK_EQUAL(0.5_s, 500_ms);
113
114 BOOST_CHECK_EQUAL(1_ms, 1000_us);
115 BOOST_CHECK_EQUAL(0.5_ms, 500_us);
116
117 BOOST_CHECK_EQUAL(1_us, 1000_ns);
118 BOOST_CHECK_EQUAL(0.5_us, 500_ns);
119
120 BOOST_CHECK_EQUAL(1_ns, nanoseconds(1));
121 BOOST_CHECK_EQUAL(5.5_ns, 0.0055_us);
122}
123
Alexander Afanasyeve66040e2018-01-25 19:15:30 -0500124BOOST_AUTO_TEST_CASE(Year2038)
125{
126 auto year2042 = fromIsoString("20420101T000001.042000");
127 auto year2010 = fromIsoString("20100101T000001.042000");
128
Davide Pesavento923ba442019-02-12 22:00:38 -0500129 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(year2010),
130 "1262304001042000000 nanoseconds since Jan 1, 1970");
131 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(year2042),
132 "2272147201042000000 nanoseconds since Jan 1, 1970");
Alexander Afanasyeve66040e2018-01-25 19:15:30 -0500133 BOOST_CHECK_GT(year2042, year2010);
134}
135
Junxiao Shi5537d132016-08-05 03:48:01 +0000136BOOST_AUTO_TEST_SUITE_END() // TestTime
137BOOST_AUTO_TEST_SUITE_END() // Util
Alexander Afanasyev0abb2da2014-01-30 18:07:57 -0800138
Spyridon Mastorakis429634f2015-02-19 17:35:33 -0800139} // namespace tests
Alexander Afanasyevf8379172017-01-11 16:56:04 -0800140} // namespace time
Alexander Afanasyev0abb2da2014-01-30 18:07:57 -0800141} // namespace ndn