949d3a370abe2327d4de783596009cdc160cbd9f
[senf.git] / senf / PPI / IntervalTimer.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 IntervalTimer unit tests */
25
26 //#include "IntervalTimer.test.hh"
27 //#include "IntervalTimer.test.ih"
28
29 // Custom includes
30 #include "IntervalTimer.hh"
31 #include "Module.hh"
32 #include "Setup.hh"
33
34 #include <senf/Utils/auto_unit_test.hh>
35 #include <boost/test/test_tools.hpp>
36
37 #define prefix_
38 ///////////////////////////////cc.p////////////////////////////////////////
39
40 namespace module = senf::ppi::module;
41 namespace ppi = senf::ppi;
42
43 namespace {
44
45     class TimerTest : public module::Module
46     {
47         SENF_PPI_MODULE(TimerTest);
48
49         ppi::IntervalTimer timer;
50
51         void tick(ppi::IntervalTimer::Event const & event) {
52             if ( --n == 0 )
53                 timer.enabled(false);
54         }
55
56         unsigned n;
57
58     public:
59         TimerTest(senf::ClockService::int64_type d_, unsigned n_)
60         :   timer ( senf::ClockService::milliseconds(d_) ),
61             n     ( n_ )
62         {
63             registerEvent( timer, &TimerTest::tick );
64         }
65     };
66
67     bool is_close_clock(senf::ClockService::clock_type a, senf::ClockService::clock_type b,
68                         senf::ClockService::clock_type delta)
69     {
70         return (a<b ? b-a : a-b ) < delta;
71     }
72 }
73
74 SENF_AUTO_UNIT_TEST(intervalTimer)
75 {
76     char const * enabled (getenv("SENF_TIMING_CRITICAL_TESTS"));
77     BOOST_WARN_MESSAGE(enabled, "Set SENF_TIMING_CRITICAL_TESTS to not skip timing critical tests");
78
79     TimerTest timer (100,3);
80     senf::ClockService::clock_type start (senf::ClockService::now());
81     senf::ppi::run();
82     if (enabled)
83         BOOST_CHECK_PREDICATE( is_close_clock,
84                                (senf::ClockService::now())
85                                (start+senf::ClockService::milliseconds(300))
86                                (senf::ClockService::milliseconds(50)) );
87     else
88         BOOST_CHECK( true );
89 }
90
91 ///////////////////////////////cc.e////////////////////////////////////////
92 #undef prefix_
93
94 \f
95 // Local Variables:
96 // mode: c++
97 // fill-column: 100
98 // comment-column: 40
99 // c-file-style: "senf"
100 // indent-tabs-mode: nil
101 // ispell-local-dictionary: "american"
102 // compile-command: "scons -u test"
103 // End: