Move sourcecode into 'senf/' directory
[senf.git] / senf / PPI / AnnotationRouter.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2008 
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 AnnotationRouter unit tests */
25
26 //#include "AnnotationRouter.test.hh"
27 //#include "AnnotationRouter.test.ih"
28
29 // Custom includes
30 #include "AnnotationRouter.hh"
31 #include "DebugModules.hh"
32
33 #include "../Utils//auto_unit_test.hh"
34 #include <boost/test/test_tools.hpp>
35
36 #define prefix_
37 ///////////////////////////////cc.p////////////////////////////////////////
38
39 namespace {
40     struct IntAnnotation {
41         int value;
42         bool operator<(IntAnnotation const & other) const { return value < other.value; }
43         bool operator==(IntAnnotation const & other) const { return value == other.value; }
44         IntAnnotation() {}
45         IntAnnotation(int v) : value(v) {}
46         IntAnnotation & operator=(int v) { value=v; return *this; }
47         operator int () const { return value; }
48     };
49
50     std::ostream & operator<<(std::ostream & os, IntAnnotation const & value)
51     { os << value.value; return os; }
52 }
53
54 BOOST_AUTO_UNIT_TEST(annotationRouter)
55 {
56     senf::ppi::module::debug::ActiveSource source;
57     senf::ppi::module::debug::PassiveSink sink1;
58     senf::ppi::module::debug::PassiveSink sink2;
59
60     senf::ppi::module::AnnotationRouter<IntAnnotation> router;
61     
62     senf::ppi::connect(source, router);
63     senf::ppi::connect(router, sink1, 1);
64     senf::ppi::connect(router, sink2, 2);
65     
66     BOOST_CHECK_THROW( senf::ppi::connect(router, sink2, 2), 
67             senf::ppi::module::AnnotationRouter<IntAnnotation>::DuplicateKeyException);
68
69     senf::ppi::init();
70
71     senf::Packet p1 (senf::DataPacket::create());
72     p1.annotation<IntAnnotation>() = 1;
73     senf::Packet p2 (senf::DataPacket::create());
74     p2.annotation<IntAnnotation>() = 2;
75
76     source.submit(p1);
77     source.submit(p2);
78     source.submit(senf::DataPacket::create());
79
80     BOOST_CHECK_EQUAL( sink1.size(), 1u );
81     BOOST_CHECK_EQUAL( sink2.size(), 1u );
82     BOOST_CHECK( sink1.front() == p1 );
83     BOOST_CHECK( sink2.front() == p2 );
84 }
85
86 ///////////////////////////////cc.e////////////////////////////////////////
87 #undef prefix_
88
89 \f
90 // Local Variables:
91 // mode: c++
92 // fill-column: 100
93 // comment-column: 40
94 // c-file-style: "senf"
95 // indent-tabs-mode: nil
96 // ispell-local-dictionary: "american"
97 // compile-command: "scons -u test"
98 // End: