minor fixes for clang++
[senf.git] / senf / PPI / SocketSink.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   Stefan Bund <g0dil@berlios.de>
27
28 /** \file
29     \brief SocketSink unit tests */
30
31 //#include "SocketSink.test.hh"
32 //#include "SocketSink.test.ih"
33
34 // Custom includes
35 #include <senf/Socket/Protocols/INet/UDPSocketHandle.hh>
36 #include <senf/Socket/Protocols/INet/ConnectedUDPSocketHandle.hh>
37 #include "SocketSource.hh"
38 #include "DebugModules.hh"
39 #include "SocketSink.hh"
40 #include "Setup.hh"
41
42 #include <senf/Utils/auto_unit_test.hh>
43 #include <boost/test/test_tools.hpp>
44
45 #define prefix_
46 //-/////////////////////////////////////////////////////////////////////////////////////////////////
47 namespace ppi = senf::ppi;
48 namespace module = ppi::module;
49 namespace debug = module::debug;
50
51 namespace {
52     void timeout() {
53         senf::scheduler::terminate();
54     }
55
56     int base_pid = 0;
57
58     unsigned port(unsigned i)
59     {
60         if (! base_pid)
61             base_pid = ::getpid();
62         return 23456u + (((base_pid^(base_pid>>8)^(base_pid>>16)^(base_pid>>24))&0xff)<<2) + i;
63     }
64
65     std::string localhost4str(unsigned i)
66     {
67         return (boost::format("localhost:%d") % port(i)).str();
68     }
69
70 }
71
72 SENF_AUTO_UNIT_TEST(passiveSocketSink)
73 {
74     senf::ConnectedUDPv4ClientSocketHandle outputSocket (
75         senf::INet4SocketAddress(localhost4str(0)));
76     module::PassiveSocketSink<> udpSink(outputSocket);
77     debug::ActiveSource source;
78     ppi::connect(source, udpSink);
79
80     std::string data ("TEST");
81     senf::Packet p (senf::DataPacket::create(data));
82
83     senf::UDPv4ClientSocketHandle inputSocket;
84     inputSocket.bind(senf::INet4SocketAddress(localhost4str(0)));
85     senf::ppi::init();
86     source.submit(p);
87
88     std::string input (inputSocket.read());
89     BOOST_CHECK_EQUAL( data, input );
90 }
91
92 SENF_AUTO_UNIT_TEST(activeSocketSink)
93 {
94     senf::ConnectedUDPv4ClientSocketHandle outputSocket (
95         senf::INet4SocketAddress(localhost4str(0)));
96     module::ActiveSocketSink<> udpSink(outputSocket);
97     debug::PassiveSource source;
98     ppi::connect(source, udpSink);
99
100     std::string data ("TEST");
101     senf::Packet p (senf::DataPacket::create(data));
102
103     senf::UDPv4ClientSocketHandle inputSocket;
104     inputSocket.bind(senf::INet4SocketAddress(localhost4str(0)));
105     senf::scheduler::TimerEvent timer (
106         "activeSocketSink test timer", &timeout,
107         senf::ClockService::now() + senf::ClockService::milliseconds(100));
108     source.submit(p);
109     senf::ppi::run();
110
111     std::string input (inputSocket.read());
112     BOOST_CHECK_EQUAL( data, input );
113 }
114
115 //-/////////////////////////////////////////////////////////////////////////////////////////////////
116 #undef prefix_
117
118 \f
119 // Local Variables:
120 // mode: c++
121 // fill-column: 100
122 // comment-column: 40
123 // c-file-style: "senf"
124 // indent-tabs-mode: nil
125 // ispell-local-dictionary: "american"
126 // compile-command: "scons -u test"
127 // End: