blob: c4ac2600ff8af8ba5becbbf828d19ae5a536e137 [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/**
Spyridon Mastorakis429634f2015-02-19 17:35:33 -08003 * Copyright (c) 2013-2015 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
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080029BOOST_AUTO_TEST_SUITE(UtilTime)
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -080030
Alexander Afanasyevd1b5c412014-03-27 15:03:51 -070031BOOST_AUTO_TEST_CASE(SystemClock)
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -080032{
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070033 time::system_clock::TimePoint value = time::system_clock::now();
34 time::system_clock::TimePoint referenceTime =
Alexander Afanasyev0bb9aae2014-04-21 18:08:18 -070035 time::fromUnixTimestamp(time::milliseconds(1390966967032LL));
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -080036
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070037 BOOST_CHECK_GT(value, referenceTime);
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -080038
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070039 BOOST_CHECK_EQUAL(time::toIsoString(referenceTime), "20140129T034247.032000");
Alexander Afanasyev53af7a12014-04-10 23:35:28 -070040 BOOST_CHECK_EQUAL(time::toString(referenceTime), "2014-01-29 03:42:47");
41 BOOST_CHECK_EQUAL(time::toString(referenceTime), "2014-01-29 03:42:47");
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070042
Alexander Afanasyev53af7a12014-04-10 23:35:28 -070043 // Unfortunately, not all systems has lv_LV locale installed :(
44 // BOOST_CHECK_EQUAL(time::toString(referenceTime, "%Y. gada %d. %B",
45 // std::locale("lv_LV.UTF-8")),
46 // "2014. gada 29. Janvāris");
47
48 BOOST_CHECK_EQUAL(time::toString(referenceTime, "%Y -- %d -- %B",
49 std::locale("C")),
50 "2014 -- 29 -- January");
51
52 BOOST_CHECK_EQUAL(time::fromIsoString("20140129T034247.032000"), referenceTime);
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070053 BOOST_CHECK_EQUAL(time::fromIsoString("20140129T034247.032000Z"), referenceTime);
Alexander Afanasyev53af7a12014-04-10 23:35:28 -070054 BOOST_CHECK_EQUAL(time::fromString("2014-01-29 03:42:47"),
55 time::fromUnixTimestamp(time::seconds(1390966967)));
56
57 // Unfortunately, not all systems has lv_LV locale installed :(
58 // BOOST_CHECK_EQUAL(time::fromString("2014. gada 29. Janvāris", "%Y. gada %d. %B",
59 // std::locale("lv_LV.UTF-8")),
60 // time::fromUnixTimestamp(time::seconds(1390953600)));
61
62 BOOST_CHECK_EQUAL(time::fromString("2014 -- 29 -- January", "%Y -- %d -- %B",
63 std::locale("C")),
64 time::fromUnixTimestamp(time::seconds(1390953600)));
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070065}
66
Alexander Afanasyevd1b5c412014-03-27 15:03:51 -070067BOOST_AUTO_TEST_CASE(SteadyClock)
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070068{
69 time::steady_clock::TimePoint oldValue = time::steady_clock::now();
70 usleep(100);
71 time::steady_clock::TimePoint newValue = time::steady_clock::now();
72
73 BOOST_CHECK_GT(newValue, oldValue);
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -080074}
75
76BOOST_AUTO_TEST_SUITE_END()
Alexander Afanasyev0abb2da2014-01-30 18:07:57 -080077
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080078} // namespace tests
Alexander Afanasyev0abb2da2014-01-30 18:07:57 -080079} // namespace ndn