b061582da240c1fa6ee71129646cec91204dd421
[senf.git] / senf / Scheduler / ClockService.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Stefan Bund <g0dil@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief ClockService unit tests */
25
26 //#include "ClockService.test.hh"
27 //#include "ClockService.test.ih"
28
29 // Custom includes
30 #include "ClockService.hh"
31 #include <errno.h>
32
33 #include <senf/Utils/auto_unit_test.hh>
34 #include <boost/test/test_tools.hpp>
35
36 #define prefix_
37 //-/////////////////////////////////////////////////////////////////////////////////////////////////
38
39 namespace {
40
41     bool is_close_clock(senf::ClockService::clock_type a, senf::ClockService::clock_type b,
42                         senf::ClockService::clock_type delta)
43     {
44         return (a<b ? b-a : a-b ) < delta;
45     }
46
47     void delay(unsigned long milliseconds)
48     {
49         struct timespec ts;
50         ts.tv_sec = milliseconds / 1000;
51         ts.tv_nsec = (milliseconds % 1000) * 1000000;
52         while (nanosleep(&ts,&ts) < 0 && errno == EINTR) ;
53     }
54
55 }
56
57 SENF_AUTO_UNIT_TEST(clockService)
58 {
59     BOOST_CHECK( senf::ClockService::abstime(0).is_not_a_date_time());
60
61     char const * enabled (getenv("SENF_TIMING_CRITICAL_TESTS"));
62     BOOST_WARN_MESSAGE(enabled, "Set SENF_TIMING_CRITICAL_TESTS to not skip timing critical tests");
63     BOOST_CHECK( true );
64
65     senf::ClockService::restart(); // So we know, when the signal will be delivered
66
67     senf::ClockService::clock_type t1 (senf::ClockService::now());
68     delay(200);
69     senf::ClockService::clock_type t2 (senf::ClockService::now());
70     if (enabled)
71         BOOST_CHECK_PREDICATE( is_close_clock,
72                                (t1 + senf::ClockService::milliseconds(200))
73                                (t2)
74                                (senf::ClockService::milliseconds(100)) );
75
76     t1 = t2;
77
78     // Wait for SIGALRM and let the signal handler do the clock-skew detection
79     delay(1*1000);
80
81     t2 = senf::ClockService::now();
82     if (enabled)
83         BOOST_CHECK_PREDICATE( is_close_clock,
84                                (t1 + senf::ClockService::seconds(1))
85                                (t2)
86                                (senf::ClockService::milliseconds(500)) );
87
88     t1 = t2;
89
90     delay(200);
91     if (enabled)
92         BOOST_CHECK_PREDICATE( is_close_clock,
93                                (t1 + senf::ClockService::milliseconds(200))
94                                (senf::ClockService::now())
95                                (senf::ClockService::milliseconds(100)) );
96
97     // The next check validates that the clock service itimer/heartbeat_ is correctly reset after a
98     // clock-skew is detected
99
100     if (enabled)
101         BOOST_CHECK_PREDICATE( is_close_clock,
102                                (t1 + senf::ClockService::milliseconds(200))
103                                (senf::ClockService::now())
104                                (senf::ClockService::milliseconds(100)) );
105 }
106
107 //-/////////////////////////////////////////////////////////////////////////////////////////////////
108 #undef prefix_
109
110 \f
111 // Local Variables:
112 // mode: c++
113 // fill-column: 100
114 // comment-column: 40
115 // c-file-style: "senf"
116 // indent-tabs-mode: nil
117 // ispell-local-dictionary: "american"
118 // compile-command: "scons -u test"
119 // End: