045f125d3895f8c2ddce7b38e30baf99eaf89055
[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(fd, &handler, senf::scheduler::FileDispatcher::EV_READ) );
70     SENF_CHECK_NO_THROW( manager.processOnce() );
71     SENF_CHECK_NO_THROW( dispatcher.prepareRun() );
72     SENF_CHECK_NO_THROW( runner.run() );
73     
74     BOOST_CHECK( called );
75     BOOST_CHECK_PREDICATE( is_close, (t)(senf::ClockService::now()) );
76
77     SENF_CHECK_NO_THROW( dispatcher.remove(fd) );
78     close(fd);
79
80     called = false;
81     t = senf::ClockService::now();
82     SENF_CHECK_NO_THROW( manager.processOnce() );
83     SENF_CHECK_NO_THROW( dispatcher.prepareRun() );
84     SENF_CHECK_NO_THROW( runner.run() );
85
86     BOOST_CHECK( ! called );
87     BOOST_CHECK_PREDICATE( 
88         is_close, (t+senf::ClockService::milliseconds(500))(senf::ClockService::now()) );
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: