blob: 58fdfae7d06d230cc1a00b13cb44a99ac65f193b [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/*
3 * Copyright (c) 2013-2018 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
Alexander Afanasyev09c613f2014-01-29 00:23:58 -080022#include "util/time.hpp"
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -080023
Alexander Afanasyevb1db7c62014-04-03 14:57:25 -070024#include "boost-test.hpp"
25
Davide Pesavento0f830802018-01-16 23:58:58 -050026#include <thread>
27
Alexander Afanasyev0abb2da2014-01-30 18:07:57 -080028namespace ndn {
Alexander Afanasyevf8379172017-01-11 16:56:04 -080029namespace time {
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080030namespace tests {
Alexander Afanasyev0abb2da2014-01-30 18:07:57 -080031
Junxiao Shi5537d132016-08-05 03:48:01 +000032BOOST_AUTO_TEST_SUITE(Util)
33BOOST_AUTO_TEST_SUITE(TestTime)
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -080034
Alexander Afanasyevd1b5c412014-03-27 15:03:51 -070035BOOST_AUTO_TEST_CASE(SystemClock)
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -080036{
Alexander Afanasyevf8379172017-01-11 16:56:04 -080037 system_clock::TimePoint value = system_clock::now();
38 system_clock::TimePoint referenceTime = fromUnixTimestamp(milliseconds(1390966967032LL));
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -080039
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070040 BOOST_CHECK_GT(value, referenceTime);
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -080041
Alexander Afanasyevf8379172017-01-11 16:56:04 -080042 BOOST_CHECK_EQUAL(toIsoString(referenceTime), "20140129T034247.032000");
43 BOOST_CHECK_EQUAL(toString(referenceTime), "2014-01-29 03:42:47");
44 BOOST_CHECK_EQUAL(toString(referenceTime), "2014-01-29 03:42:47");
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070045
Alexander Afanasyev53af7a12014-04-10 23:35:28 -070046 // Unfortunately, not all systems has lv_LV locale installed :(
Davide Pesavento0f830802018-01-16 23:58:58 -050047 // BOOST_CHECK_EQUAL(toString(referenceTime, "%Y. gada %d. %B", std::locale("lv_LV.UTF-8")),
Alexander Afanasyev53af7a12014-04-10 23:35:28 -070048 // "2014. gada 29. Janvāris");
49
Davide Pesavento0f830802018-01-16 23:58:58 -050050 BOOST_CHECK_EQUAL(toString(referenceTime, "%Y -- %d -- %B", std::locale("C")),
Alexander Afanasyev53af7a12014-04-10 23:35:28 -070051 "2014 -- 29 -- January");
52
Alexander Afanasyevf8379172017-01-11 16:56:04 -080053 BOOST_CHECK_EQUAL(fromIsoString("20140129T034247.032000"), referenceTime);
54 BOOST_CHECK_EQUAL(fromIsoString("20140129T034247.032000Z"), referenceTime);
55 BOOST_CHECK_EQUAL(fromString("2014-01-29 03:42:47"),
56 fromUnixTimestamp(seconds(1390966967)));
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")),
Alexander Afanasyevf8379172017-01-11 16:56:04 -080060 // fromUnixTimestamp(seconds(1390953600)));
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")),
Alexander Afanasyevf8379172017-01-11 16:56:04 -080063 fromUnixTimestamp(seconds(1390953600)));
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 Pesavento0f830802018-01-16 23:58:58 -050083 auto value = fromUnixTimestamp(milliseconds(1390966967032LL));
Alexander Afanasyevf8379172017-01-11 16:56:04 -080084 BOOST_CHECK_EQUAL(toIsoString(value), "20140129T034247.032000");
85
86 value += days(365 * 100 + 25 - 1); // 36524 days
87 BOOST_CHECK_EQUAL(toIsoString(value), "21140129T034247.032000");
Junxiao Shi5537d132016-08-05 03:48:01 +000088}
89
Davide Pesavento0f830802018-01-16 23:58:58 -050090BOOST_AUTO_TEST_CASE(Literals)
91{
92 BOOST_CHECK_EQUAL(42_s, seconds(42));
93
94 BOOST_CHECK_EQUAL(1_day, 24_h);
95 BOOST_CHECK_EQUAL(2_days, 48_h);
96 BOOST_CHECK_EQUAL(0.5_day, 12_h);
97 BOOST_CHECK_EQUAL(.5_days, 12_h);
98
99 BOOST_CHECK_EQUAL(1_h, 60_min);
100 BOOST_CHECK_EQUAL(0.5_h, 30_min);
101
102 BOOST_CHECK_EQUAL(1_min, 60_s);
103 BOOST_CHECK_EQUAL(0.5_min, 30_s);
104
105 BOOST_CHECK_EQUAL(1_s, 1000_ms);
106 BOOST_CHECK_EQUAL(0.5_s, 500_ms);
107
108 BOOST_CHECK_EQUAL(1_ms, 1000_us);
109 BOOST_CHECK_EQUAL(0.5_ms, 500_us);
110
111 BOOST_CHECK_EQUAL(1_us, 1000_ns);
112 BOOST_CHECK_EQUAL(0.5_us, 500_ns);
113
114 BOOST_CHECK_EQUAL(1_ns, nanoseconds(1));
115 BOOST_CHECK_EQUAL(5.5_ns, 0.0055_us);
116}
117
Junxiao Shi5537d132016-08-05 03:48:01 +0000118BOOST_AUTO_TEST_SUITE_END() // TestTime
119BOOST_AUTO_TEST_SUITE_END() // Util
Alexander Afanasyev0abb2da2014-01-30 18:07:57 -0800120
Spyridon Mastorakis429634f2015-02-19 17:35:33 -0800121} // namespace tests
Alexander Afanasyevf8379172017-01-11 16:56:04 -0800122} // namespace time
Alexander Afanasyev0abb2da2014-01-30 18:07:57 -0800123} // namespace ndn