83f653292f475d914b53ebe1e3abf64da9fc57dc
[senf.git] / senf / PPI / MultiConnectorMixin.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2009 
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 MultiConnectorMixin.test unit tests */
25
26 //#include "MultiConnectorMixin.test.hh"
27 //#include "MultiConnectorMixin.test.ih"
28
29 // Custom includes
30 #include "PPI.hh"
31
32 #include <senf/Utils/auto_unit_test.hh>
33 #include <boost/test/test_tools.hpp>
34
35 #define prefix_
36 ///////////////////////////////cc.p////////////////////////////////////////
37
38 namespace ppi = senf::ppi;
39 namespace connector = ppi::connector;
40 namespace module = ppi::module;
41 namespace debug = module::debug;
42
43 namespace {
44     // We only test the user-collection case, all other cases are already handled by
45     // existing modules
46
47     // Primitive duplicator
48     class MyModule
49         : public module::Module,
50           public module::MultiConnectorMixin<MyModule, connector::ActiveOutput<>, void, void>
51     {
52         SENF_PPI_MODULE(MyModule);
53     public:
54         connector::PassiveInput<> input;
55
56         MyModule()
57         {
58             noroute(input); 
59             input.onRequest(&MyModule::request);
60         }
61
62     private:
63         void connectorSetup(std::auto_ptr<ConnectorType> c)
64         {
65             route(input, *c);
66             connectors_.push_back(boost::shared_ptr<ConnectorType>(c));
67         }
68
69         void request()
70         {
71             senf::Packet p (input());
72             for (Connectors::iterator i (connectors_.begin()), i_end (connectors_.end());
73                     i != i_end; ++i)
74                 (**i)(p);
75         }
76
77         typedef std::vector< boost::shared_ptr<MyModule::ConnectorType> > Connectors;
78         Connectors connectors_;
79                 
80         friend class module::MultiConnectorMixin<MyModule, connector::ActiveOutput<>, void, void>;
81     };
82         
83     struct IntAnnotation {
84         int value;
85         bool operator<(IntAnnotation const & other) const { return value < other.value; }
86         IntAnnotation() {}
87         IntAnnotation(int v) : value(v) {}
88     };
89
90     std::ostream & operator<<(std::ostream & os, IntAnnotation const & value)
91     { os << value.value; return os; }
92 }
93
94 BOOST_AUTO_UNIT_TEST(multiConnectorMixin_userContainer)
95 {
96     debug::ActiveSource source;
97     MyModule module;
98     debug::PassiveSink sink1;
99     debug::PassiveSink sink2;
100
101     ppi::connect(source, module);
102     ppi::connect(module, sink1);
103     ppi::connect(module, sink2);
104     ppi::init();
105
106     senf::Packet p (senf::DataPacket::create());
107
108     source.submit(p);
109     BOOST_CHECK_EQUAL( sink1.size(), 1u );
110     BOOST_CHECK_EQUAL( sink2.size(), 1u );
111     BOOST_CHECK( sink1.pop_front() == p );
112     BOOST_CHECK( sink2.pop_front() == p );
113 }
114
115 BOOST_AUTO_UNIT_TEST(multiConnectorMixin_multipleModules)
116 {
117     // This test fails!
118     /*
119     debug::ActiveSource source;
120     debug::PassiveSink sink;
121     module::PassiveJoin join1;
122     module::PassiveJoin join2;
123     module::AnnotationRouter<IntAnnotation> router;
124     MyModule module;
125     
126     ppi::connect(source, join1);
127     ppi::connect(join1, router);
128     ppi::connect(router, join2, 1);
129     ppi::connect(join2, module);
130     ppi::connect(module, sink);
131     
132     senf::Packet p (senf::DataPacket::create());
133     p.annotation<IntAnnotation>().value = 1;
134
135     source.submit(p);
136     BOOST_CHECK_EQUAL( sink.size(), 1u );
137     BOOST_CHECK( sink.pop_front() == p );
138     */
139 }
140
141 ///////////////////////////////cc.e////////////////////////////////////////
142 #undef prefix_
143
144 \f
145 // Local Variables:
146 // mode: c++
147 // fill-column: 100
148 // comment-column: 40
149 // c-file-style: "senf"
150 // indent-tabs-mode: nil
151 // ispell-local-dictionary: "american"
152 // compile-command: "scons -u test"
153 // End: