Utils/Console: Fix singleton instantiation order (ServerManager / Scheduler)
[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::FdManager manager;
60     senf::scheduler::FIFORunner runner;
61     senf::scheduler::FileDispatcher dispatcher (manager, runner);
62     dispatcher.timeout(500);
63
64     // It's not necessary for the cb to be a real file .. it can be anything. The only thing is,
65     // it's always called without delay.
66     int fd (open("/dev/null", O_RDWR));
67     
68     senf::ClockService::clock_type t (senf::ClockService::now());
69     SENF_CHECK_NO_THROW( dispatcher.add("testHandler", fd, &handler, 
70                                         senf::scheduler::FileDispatcher::EV_READ) );
71     SENF_CHECK_NO_THROW( manager.processOnce() );
72     SENF_CHECK_NO_THROW( dispatcher.prepareRun() );
73     SENF_CHECK_NO_THROW( runner.run() );
74     
75     BOOST_CHECK( called );
76     BOOST_CHECK_PREDICATE( is_close, (t)(senf::ClockService::now()) );
77
78     SENF_CHECK_NO_THROW( dispatcher.remove(fd) );
79     close(fd);
80
81     called = false;
82     t = senf::ClockService::now();
83     SENF_CHECK_NO_THROW( manager.processOnce() );
84     SENF_CHECK_NO_THROW( dispatcher.prepareRun() );
85     SENF_CHECK_NO_THROW( runner.run() );
86
87     BOOST_CHECK( ! called );
88     BOOST_CHECK_PREDICATE( 
89         is_close, (t+senf::ClockService::milliseconds(500))(senf::ClockService::now()) );
90 }
91
92 ///////////////////////////////cc.e////////////////////////////////////////
93 #undef prefix_
94
95 \f
96 // Local Variables:
97 // mode: c++
98 // fill-column: 100
99 // comment-column: 40
100 // c-file-style: "senf"
101 // indent-tabs-mode: nil
102 // ispell-local-dictionary: "american"
103 // compile-command: "scons -u test"
104 // End: