95b223244b2cc7a9cc913cad40de5aa46105cd73
[senf.git] / PPI / Module.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2007 
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 Module.test unit tests */
25
26 //#include "Module.test.hh"
27 //#include "Module.test.ih"
28
29 // Custom includes
30 #include "DebugEvent.hh"
31 #include "DebugModules.hh"
32 #include "Setup.hh"
33 #include "Module.hh"
34
35 #include "../Utils/auto_unit_test.hh"
36 #include <boost/test/test_tools.hpp>
37 #include <boost/type_traits.hpp>
38
39 #define prefix_
40 ///////////////////////////////cc.p////////////////////////////////////////
41
42 namespace ppi = senf::ppi;
43 namespace connector = ppi::connector;
44 namespace debug = ppi::module::debug;
45
46 namespace {
47     class TestModule : public ppi::module::Module
48     {
49         SENF_PPI_MODULE(TestModule);
50
51     public:
52         connector::ActiveOutput<> output;
53
54         ppi::DebugEvent event;
55
56         TestModule() {
57             noroute(output);
58             registerEvent(event, &TestModule::onEvent);
59         }
60
61         void onEvent() {
62             output(senf::DataPacket::create());
63         }
64
65         using ppi::module::Module::time;
66     };
67 }
68
69 BOOST_AUTO_UNIT_TEST(module)
70 {
71     // route and registerEvent are tested in Route.test.cc
72
73     TestModule tester;
74     debug::PassiveSink sink;
75     ppi::connect(tester, sink);
76     ppi::init();
77
78     tester.event.trigger();
79     BOOST_CHECK_EQUAL( sink.size(), 1u );
80     BOOST_CHECK( senf::ClockService::now() - tester.time() < senf::ClockService::seconds(1) );
81 }
82
83 ///////////////////////////////cc.e////////////////////////////////////////
84 #undef prefix_
85
86 \f
87 // Local Variables:
88 // mode: c++
89 // fill-column: 100
90 // comment-column: 40
91 // c-file-style: "senf"
92 // indent-tabs-mode: nil
93 // ispell-local-dictionary: "american"
94 // compile-command: "scons -u test"
95 // End: