4d9256b50130413a7136a257a1344907599da0f5
[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     std::string localhost6str(unsigned i)
71     {
72         return (boost::format("[::1]:%d") % port(i)).str();
73     }
74 }
75
76 SENF_AUTO_UNIT_TEST(passiveSocketSink)
77 {
78     senf::ConnectedUDPv4ClientSocketHandle outputSocket (
79         senf::INet4SocketAddress(localhost4str(0)));
80     module::PassiveSocketSink<> udpSink(outputSocket);
81     debug::ActiveSource source;
82     ppi::connect(source, udpSink);
83
84     std::string data ("TEST");
85     senf::Packet p (senf::DataPacket::create(data));
86
87     senf::UDPv4ClientSocketHandle inputSocket;
88     inputSocket.bind(senf::INet4SocketAddress(localhost4str(0)));
89     senf::ppi::init();
90     source.submit(p);
91
92     std::string input (inputSocket.read());
93     BOOST_CHECK_EQUAL( data, input );
94 }
95
96 SENF_AUTO_UNIT_TEST(activeSocketSink)
97 {
98     senf::ConnectedUDPv4ClientSocketHandle outputSocket (
99         senf::INet4SocketAddress(localhost4str(0)));
100     module::ActiveSocketSink<> udpSink(outputSocket);
101     debug::PassiveSource source;
102     ppi::connect(source, udpSink);
103
104     std::string data ("TEST");
105     senf::Packet p (senf::DataPacket::create(data));
106
107     senf::UDPv4ClientSocketHandle inputSocket;
108     inputSocket.bind(senf::INet4SocketAddress(localhost4str(0)));
109     senf::scheduler::TimerEvent timer (
110         "activeSocketSink test timer", &timeout,
111         senf::ClockService::now() + senf::ClockService::milliseconds(100));
112     source.submit(p);
113     senf::ppi::run();
114
115     std::string input (inputSocket.read());
116     BOOST_CHECK_EQUAL( data, input );
117 }
118
119 //-/////////////////////////////////////////////////////////////////////////////////////////////////
120 #undef prefix_
121
122 \f
123 // Local Variables:
124 // mode: c++
125 // fill-column: 100
126 // comment-column: 40
127 // c-file-style: "senf"
128 // indent-tabs-mode: nil
129 // ispell-local-dictionary: "american"
130 // compile-command: "scons -u test"
131 // End: