663150940641fbb440c3426b3a42094008d4b33f
[anna.git] / test / time / main.cpp
1 // ANNA - Anna is Not 'N' Anymore
2 //
3 // (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo
4 //
5 // https://bitbucket.org/testillano/anna
6 //
7 // Redistribution and use in source and binary forms, with or without
8 // modification, are permitted provided that the following conditions
9 // are met:
10 //
11 //     * Redistributions of source code must retain the above copyright
12 // notice, this list of conditions and the following disclaimer.
13 //     * Redistributions in binary form must reproduce the above
14 // copyright notice, this list of conditions and the following disclaimer
15 // in the documentation and/or other materials provided with the
16 // distribution.
17 //     * Neither the name of Google Inc. nor the names of its
18 // contributors may be used to endorse or promote products derived from
19 // this software without specific prior written permission.
20 //
21 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 //
33 // Authors: eduardo.ramos.testillano@gmail.com
34 //          cisco.tierra@gmail.com
35
36
37 #define BOOST_TEST_MODULE ANNA_TIME_TEST
38
39 #include <boost/test/included/unit_test.hpp>
40
41 //#include <iostream>
42 #include <string>
43
44 #include <anna/time/Date.hpp>
45 #include <anna/time/functions.hpp>
46
47 using namespace std;
48 using namespace anna;
49
50 // see http://www.boost.org/doc/libs/1_44_0/libs/test/doc/html/utf/testing-tools.html
51 //     http://www.boost.org/doc/libs/1_44_0/libs/test/doc/html/utf/testing-tools/reference.html
52
53 BOOST_AUTO_TEST_CASE(date) {
54   const char * tzarg = NULL;
55   anna::time::functions::initialize();
56   anna::time::Date current, current2;
57   current.setCurrent();
58   unsigned int ntptime = current.getNtpTimestamp();
59   time_t unixtime = current.getUnixTimestamp();
60   current2.storeNtp(ntptime);
61   std::string ntpStr = current2.asString();
62   current2.storeUnix(unixtime);
63   std::string unixStr = current2.asString();
64   BOOST_REQUIRE_EQUAL(ntpStr, unixStr);
65   anna::time::Date myBirth("CET"); // 19 December 1974, 10:00 (GMT+1 = UTC + 1 = CET)
66   //anna::time::Date myBirth; // if Context TZ = shell TZ = "CET"
67   myBirth.store("19741219101500"); // yyyymmddHHmmss
68   anna::time::Date same_moment_canary_island("GMT");
69   same_moment_canary_island.store(myBirth.getUnixTimestamp());
70   myBirth.setTzContext("GMT");
71   BOOST_REQUIRE_EQUAL(same_moment_canary_island.yyyymmddHHmmss(), myBirth.yyyymmddHHmmss());
72   anna::time::Date birthday("EET");
73   birthday.store(same_moment_canary_island.getTm(), "GMT");  // TZ origin = "GMT"
74   //BOOST_REQUIRE_EQUAL(birthday, myBirth);
75   BOOST_REQUIRE_EQUAL(birthday.getUnixTimestamp(), myBirth.getUnixTimestamp());
76   myBirth.setTzContext(anna::time::functions::getLocalTz().getValue().c_str());
77   birthday.setTzContext(anna::time::functions::getLocalTz().getValue().c_str());  // Go from "EET" to "CET"
78   BOOST_REQUIRE_EQUAL(myBirth.yyyymmddHHmmss(), birthday.yyyymmddHHmmss());
79   // Adding 18 years to 'myBirth':
80   struct tm Tm = myBirth.getTm();
81   Tm.tm_year += 18;
82   anna::time::Date eighteen("CET");
83   eighteen.store(Tm);
84   BOOST_REQUIRE(eighteen >= same_moment_canary_island);
85 }
86