Move sourcecode into 'senf/' directory
[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 "../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 BOOST_AUTO_UNIT_TEST(intervalTimer)
75 {
76     TimerTest timer (100,3);
77     senf::ClockService::clock_type start (senf::ClockService::now());
78     senf::ppi::run();
79     BOOST_CHECK_PREDICATE( is_close_clock,
80                            (senf::ClockService::now())
81                            (start+senf::ClockService::milliseconds(300))
82                            (senf::ClockService::milliseconds(80)) );
83 }
84
85 ///////////////////////////////cc.e////////////////////////////////////////
86 #undef prefix_
87
88 \f
89 // Local Variables:
90 // mode: c++
91 // fill-column: 100
92 // comment-column: 40
93 // c-file-style: "senf"
94 // indent-tabs-mode: nil
95 // ispell-local-dictionary: "american"
96 // compile-command: "scons -u test"
97 // End: