a844abb1a5271ef87e859d7e44238062d0077774
[senf.git] / PPI / Module.test.cc
1 // Copyright (C) 2007 
2 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
3 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
4 //     Stefan Bund <g0dil@berlios.de>
5 //
6 // This program is free software; you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation; either version 2 of the License, or
9 // (at your option) any later version.
10 //
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the
18 // Free Software Foundation, Inc.,
19 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20
21 /** \file
22     \brief Module.test unit tests */
23
24 //#include "Module.test.hh"
25 //#include "Module.test.ih"
26
27 // Custom includes
28 #include "DebugEvent.hh"
29 #include "DebugModules.hh"
30 #include "Setup.hh"
31 #include "Module.hh"
32
33 #include <boost/test/auto_unit_test.hpp>
34 #include <boost/test/test_tools.hpp>
35 #include <boost/type_traits.hpp>
36
37 #define prefix_
38 ///////////////////////////////cc.p////////////////////////////////////////
39
40 namespace ppi = senf::ppi;
41 namespace connector = ppi::connector;
42 namespace debug = ppi::module::debug;
43
44 namespace {
45     class TestModule : public ppi::module::Module
46     {
47         SENF_PPI_MODULE(TestModule);
48
49     public:
50         connector::ActiveOutput output;
51
52         ppi::DebugEvent event;
53
54         TestModule() {
55             noroute(output);
56             registerEvent(&TestModule::onEvent, event);
57         }
58
59         void onEvent() {
60             output(senf::DataPacket::create());
61         }
62
63         using ppi::module::Module::time;
64     };
65 }
66
67 BOOST_AUTO_UNIT_TEST(module)
68 {
69     // route and registerEvent are tested in Route.test.cc
70
71     TestModule tester;
72     debug::PassiveSink sink;
73     ppi::connect(tester, sink);
74     ppi::init();
75
76     tester.event.trigger();
77     BOOST_CHECK_EQUAL( sink.size(), 1u );
78     BOOST_CHECK( senf::ClockService::now() - tester.time() < senf::ClockService::seconds(1) );
79 }
80
81 ///////////////////////////////cc.e////////////////////////////////////////
82 #undef prefix_
83
84 \f
85 // Local Variables:
86 // mode: c++
87 // fill-column: 100
88 // comment-column: 40
89 // c-file-style: "senf"
90 // indent-tabs-mode: nil
91 // ispell-local-dictionary: "american"
92 // compile-command: "scons -u test"
93 // End: