blob: 74d893c59f3daf08ebb4bf8d73b81c5125fcbfa1 [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -08002/**
Junxiao Shi5537d132016-08-05 03:48:01 +00003 * Copyright (c) 2013-2016 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
Alexander Afanasyev0abb2da2014-01-30 18:07:57 -080026namespace ndn {
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080027namespace tests {
Alexander Afanasyev0abb2da2014-01-30 18:07:57 -080028
Junxiao Shi5537d132016-08-05 03:48:01 +000029BOOST_AUTO_TEST_SUITE(Util)
30BOOST_AUTO_TEST_SUITE(TestTime)
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -080031
Alexander Afanasyevd1b5c412014-03-27 15:03:51 -070032BOOST_AUTO_TEST_CASE(SystemClock)
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -080033{
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070034 time::system_clock::TimePoint value = time::system_clock::now();
35 time::system_clock::TimePoint referenceTime =
Alexander Afanasyev0bb9aae2014-04-21 18:08:18 -070036 time::fromUnixTimestamp(time::milliseconds(1390966967032LL));
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -080037
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070038 BOOST_CHECK_GT(value, referenceTime);
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -080039
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070040 BOOST_CHECK_EQUAL(time::toIsoString(referenceTime), "20140129T034247.032000");
Alexander Afanasyev53af7a12014-04-10 23:35:28 -070041 BOOST_CHECK_EQUAL(time::toString(referenceTime), "2014-01-29 03:42:47");
42 BOOST_CHECK_EQUAL(time::toString(referenceTime), "2014-01-29 03:42:47");
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070043
Alexander Afanasyev53af7a12014-04-10 23:35:28 -070044 // Unfortunately, not all systems has lv_LV locale installed :(
45 // BOOST_CHECK_EQUAL(time::toString(referenceTime, "%Y. gada %d. %B",
46 // std::locale("lv_LV.UTF-8")),
47 // "2014. gada 29. Janvāris");
48
49 BOOST_CHECK_EQUAL(time::toString(referenceTime, "%Y -- %d -- %B",
50 std::locale("C")),
51 "2014 -- 29 -- January");
52
53 BOOST_CHECK_EQUAL(time::fromIsoString("20140129T034247.032000"), referenceTime);
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070054 BOOST_CHECK_EQUAL(time::fromIsoString("20140129T034247.032000Z"), referenceTime);
Alexander Afanasyev53af7a12014-04-10 23:35:28 -070055 BOOST_CHECK_EQUAL(time::fromString("2014-01-29 03:42:47"),
56 time::fromUnixTimestamp(time::seconds(1390966967)));
57
58 // Unfortunately, not all systems has lv_LV locale installed :(
59 // BOOST_CHECK_EQUAL(time::fromString("2014. gada 29. Janvāris", "%Y. gada %d. %B",
60 // std::locale("lv_LV.UTF-8")),
61 // time::fromUnixTimestamp(time::seconds(1390953600)));
62
63 BOOST_CHECK_EQUAL(time::fromString("2014 -- 29 -- January", "%Y -- %d -- %B",
64 std::locale("C")),
65 time::fromUnixTimestamp(time::seconds(1390953600)));
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070066}
67
Alexander Afanasyevd1b5c412014-03-27 15:03:51 -070068BOOST_AUTO_TEST_CASE(SteadyClock)
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070069{
70 time::steady_clock::TimePoint oldValue = time::steady_clock::now();
71 usleep(100);
72 time::steady_clock::TimePoint newValue = time::steady_clock::now();
73
74 BOOST_CHECK_GT(newValue, oldValue);
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -080075}
76
Junxiao Shi5537d132016-08-05 03:48:01 +000077BOOST_AUTO_TEST_CASE(Abs)
78{
79 BOOST_CHECK_EQUAL(time::abs(time::nanoseconds(24422)), time::nanoseconds(24422));
80 BOOST_CHECK_EQUAL(time::abs(time::microseconds(0)), time::microseconds(0));
81 BOOST_CHECK_EQUAL(time::abs(time::milliseconds(-15583)), time::milliseconds(15583));
82}
83
84BOOST_AUTO_TEST_SUITE_END() // TestTime
85BOOST_AUTO_TEST_SUITE_END() // Util
Alexander Afanasyev0abb2da2014-01-30 18:07:57 -080086
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080087} // namespace tests
Alexander Afanasyev0abb2da2014-01-30 18:07:57 -080088} // namespace ndn