Scheduler: TimerEvent doku
[senf.git] / Scheduler / FileDispatcher.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2008 
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 FileDispatcher.test unit tests */
25
26 //#include "FileDispatcher.test.hh"
27 //#include "FileDispatcher.test.ih"
28
29 // Custom includes
30 #include <sys/types.h>
31 #include <sys/stat.h>
32 #include <fcntl.h>
33 #include <unistd.h>
34 #include "FileDispatcher.hh"
35 #include "ClockService.hh"
36
37 #include "../Utils/auto_unit_test.hh"
38 #include <boost/test/test_tools.hpp>
39
40 #define prefix_
41 ///////////////////////////////cc.p////////////////////////////////////////
42
43 namespace {
44
45     bool is_close(senf::ClockService::clock_type a, senf::ClockService::clock_type b)
46     {
47         return (a<b ? b-a : a-b) < senf::ClockService::milliseconds(100);
48     }
49
50     bool called (false);
51     void handler(int events)
52     {
53         called=true;
54     }
55 }
56
57 BOOST_AUTO_UNIT_TEST(fileDispatcher)
58 {
59     senf::scheduler::FileDispatcher dispatcher (senf::scheduler::FdManager::instance(), senf::scheduler::FIFORunner::instance());
60     dispatcher.timeout(500);
61
62     // It's not necessary for the cb to be a real file .. it can be anything. The only thing is,
63     // it's always called without delay.
64     int fd (open("/dev/null", O_RDWR));
65     
66     senf::ClockService::clock_type t (senf::ClockService::now());
67     SENF_CHECK_NO_THROW( dispatcher.add("testHandler", fd, &handler, 
68                                         senf::scheduler::FileDispatcher::EV_READ) );
69     SENF_CHECK_NO_THROW( senf::scheduler::FdManager::instance().processOnce() );
70     SENF_CHECK_NO_THROW( dispatcher.prepareRun() );
71     SENF_CHECK_NO_THROW( senf::scheduler::FIFORunner::instance().run() );
72     
73     BOOST_CHECK( called );
74     BOOST_CHECK_PREDICATE( is_close, (t)(senf::ClockService::now()) );
75
76     SENF_CHECK_NO_THROW( dispatcher.remove(fd) );
77     close(fd);
78
79     called = false;
80     t = senf::ClockService::now();
81     SENF_CHECK_NO_THROW( senf::scheduler::FdManager::instance().processOnce() );
82     SENF_CHECK_NO_THROW( dispatcher.prepareRun() );
83     SENF_CHECK_NO_THROW( senf::scheduler::FIFORunner::instance().run() );
84
85     BOOST_CHECK( ! called );
86     BOOST_CHECK_PREDICATE( 
87         is_close, (t+senf::ClockService::milliseconds(500))(senf::ClockService::now()) );
88 }
89
90 ///////////////////////////////cc.e////////////////////////////////////////
91 #undef prefix_
92
93 \f
94 // Local Variables:
95 // mode: c++
96 // fill-column: 100
97 // comment-column: 40
98 // c-file-style: "senf"
99 // indent-tabs-mode: nil
100 // ispell-local-dictionary: "american"
101 // compile-command: "scons -u test"
102 // End: