PPI: Fix resource management on module destruction
[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::eventTime;
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::PassivePacketSink sink;
73     ppi::connect(tester.output, sink.input);
74     ppi::init();
75
76     tester.event.trigger();
77     BOOST_CHECK_EQUAL( sink.size(), 1u );
78     BOOST_CHECK_EQUAL( (boost::posix_time::microsec_clock::universal_time() - 
79                         tester.eventTime()).total_seconds(), 0 );
80 }
81
82 ///////////////////////////////cc.e////////////////////////////////////////
83 #undef prefix_
84
85 \f
86 // Local Variables:
87 // mode: c++
88 // fill-column: 100
89 // comment-column: 40
90 // c-file-style: "senf"
91 // indent-tabs-mode: nil
92 // ispell-local-dictionary: "american"
93 // compile-command: "scons -u test"
94 // End: