45275a4322fe358333911c75257b63285801c72e
[anna.git] / test / time / main.cpp
1 // ANNA - Anna is Not Nothingness Anymore
2 //
3 // (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo
4 //
5 // http://redmine.teslayout.com/projects/anna-suite
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 the copyright holder 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   anna::time::functions::initialize();
55   anna::time::Date current, current2;
56   current.setNow();
57   unsigned int ntptime = current.getNtpTimestamp();
58   time_t unixtime = current.getUnixTimestamp();
59   current2.storeNtp(ntptime);
60   std::string ntpStr = current2.asString();
61   current2.storeUnix(unixtime);
62   std::string unixStr = current2.asString();
63   BOOST_REQUIRE_EQUAL(ntpStr, unixStr);
64
65   anna::time::Date myBirth("CET"); // 19 December 1974, 10:00 (GMT+1 = UTC + 1 = CET)
66   myBirth.store("19741219101500"); // yyyymmddHHmmss
67   anna::time::Date same_moment_canary_island("GMT");
68   same_moment_canary_island.store(myBirth.getUnixTimestamp());
69   myBirth.setTz("GMT");
70   BOOST_REQUIRE_EQUAL(same_moment_canary_island.yyyymmddHHmmss(), myBirth.yyyymmddHHmmss());
71
72   anna::time::Date birthday("EET");
73   birthday.store(same_moment_canary_island.getTm(), "GMT");  // TZ origin = "GMT"
74   BOOST_REQUIRE_EQUAL(birthday.getUnixTimestamp(), myBirth.getUnixTimestamp());
75
76   myBirth.setTz();
77   birthday.setTz();
78   BOOST_REQUIRE_EQUAL(myBirth.asString(), birthday.asString());
79   BOOST_REQUIRE_EQUAL(myBirth.yyyymmddHHmmss(), birthday.yyyymmddHHmmss());
80
81   myBirth.setTz("GMT");
82   BOOST_REQUIRE_EQUAL(myBirth.yyyymmddHHmmss(), "19741219091500");
83
84   // Adding 18 years to 'myBirth':
85   same_moment_canary_island.setTz("CET");
86   anna::time::Date eighteen("CET");
87   struct tm Tm = myBirth.getTm();
88   Tm.tm_year += 18;
89   eighteen.store(Tm, "GMT");
90   BOOST_REQUIRE(eighteen >= same_moment_canary_island);
91   BOOST_REQUIRE_EQUAL(eighteen.yyyymmddHHmmss(), "19921219101500");
92 }
93