Move sourcecode into 'senf/' directory
[senf.git] / senf / PPI / SocketSink.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 SocketSink unit tests */
25
26 //#include "SocketSink.test.hh"
27 //#include "SocketSink.test.ih"
28
29 // Custom includes
30 #include "../Socket/Protocols/INet/UDPSocketHandle.hh"
31 #include "../Socket/Protocols/INet/ConnectedUDPSocketHandle.hh"
32 #include "SocketSource.hh"
33 #include "DebugModules.hh"
34 #include "SocketSink.hh"
35 #include "Setup.hh"
36
37 #include "../Utils/auto_unit_test.hh"
38 #include <boost/test/test_tools.hpp>
39
40 #define prefix_
41 ///////////////////////////////cc.p////////////////////////////////////////
42 namespace ppi = senf::ppi;
43 namespace module = ppi::module;
44 namespace debug = module::debug;
45
46 namespace {
47     void timeout() {
48         senf::scheduler::terminate();
49     }
50 }
51
52 BOOST_AUTO_UNIT_TEST(passiveSocketSink)
53 {
54     senf::ConnectedUDPv4ClientSocketHandle outputSocket (
55         senf::INet4SocketAddress("localhost:44344"));
56     module::PassiveSocketSink<> udpSink(outputSocket);
57     debug::ActiveSource source;
58     ppi::connect(source, udpSink);
59
60     std::string data ("TEST");
61     senf::Packet p (senf::DataPacket::create(data));
62
63     senf::UDPv4ClientSocketHandle inputSocket;
64     inputSocket.bind(senf::INet4SocketAddress("localhost:44344"));
65     senf::ppi::init();
66     source.submit(p);
67
68     std::string input (inputSocket.read());
69     BOOST_CHECK_EQUAL( data, input );
70 }
71
72 BOOST_AUTO_UNIT_TEST(activeSocketSink)
73 {
74     senf::ConnectedUDPv4ClientSocketHandle outputSocket (
75         senf::INet4SocketAddress("localhost:44344"));
76     module::ActiveSocketSink<> udpSink(outputSocket);
77     debug::PassiveSource 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("localhost:44344"));
85     senf::scheduler::TimerEvent timer (
86         "activeSocketSink test timer", &timeout,
87         senf::ClockService::now() + senf::ClockService::milliseconds(100));
88     source.submit(p);
89     senf::ppi::run();
90
91     std::string input (inputSocket.read());
92     BOOST_CHECK_EQUAL( data, input );
93 }
94
95 ///////////////////////////////cc.e////////////////////////////////////////
96 #undef prefix_
97
98 \f
99 // Local Variables:
100 // mode: c++
101 // fill-column: 100
102 // comment-column: 40
103 // c-file-style: "senf"
104 // indent-tabs-mode: nil
105 // ispell-local-dictionary: "american"
106 // compile-command: "scons -u test"
107 // End: