1fe9b7b433165f06f91950e4d4c21231b43c7b35
[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     public:
48         connector::ActiveOutput output;
49
50         ppi::DebugEvent event;
51
52         TestModule() {
53             noroute(output);
54             registerEvent(&TestModule::onEvent, event);
55         }
56
57         void onEvent() {
58             output(senf::DataPacket::create());
59         }
60
61         using ppi::module::Module::eventTime;
62     };
63 }
64
65 BOOST_AUTO_UNIT_TEST(module)
66 {
67     // route and registerEvent are tested in Route.test.cc
68
69     TestModule tester;
70     debug::PassivePacketSink sink;
71     ppi::connect(tester.output, sink.input);
72     ppi::init();
73
74     tester.event.trigger();
75     BOOST_CHECK_EQUAL( sink.size(), 1u );
76     BOOST_CHECK_EQUAL( (boost::posix_time::microsec_clock::universal_time() - 
77                         tester.eventTime()).total_seconds(), 0 );
78 }
79
80 ///////////////////////////////cc.e////////////////////////////////////////
81 #undef prefix_
82
83 \f
84 // Local Variables:
85 // mode: c++
86 // fill-column: 100
87 // comment-column: 40
88 // c-file-style: "senf"
89 // indent-tabs-mode: nil
90 // ispell-local-dictionary: "american"
91 // compile-command: "scons -u test"
92 // End: