ed2499725c44c8cfb3504a555379ba1b71836483
[senf.git] / senf / PPI / SocketSource.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 SocketSource unit tests */
25
26 //#include "SocketSource.test.hh"
27 //#include "SocketSource.test.ih"
28
29 // Custom includes
30 #include <algorithm>
31 #include <senf/Socket/Protocols/INet/UDPSocketHandle.hh>
32 #include <senf/Scheduler/Scheduler.hh>
33 #include "SocketSource.hh"
34 #include "DebugModules.hh"
35 #include "Setup.hh"
36
37 #include <senf/Utils/auto_unit_test.hh>
38 #include <boost/test/test_tools.hpp>
39
40 #define prefix_
41 //-/////////////////////////////////////////////////////////////////////////////////////////////////
42 namespace ppi = senf::ppi;
43 namespace module = ppi::module;
44 namespace debug = module::debug;
45 namespace scheduler = senf::scheduler;
46
47 namespace {
48     void runPPI(senf::ClockService::clock_type t)
49     {
50         scheduler::TimerEvent timeout(
51                 "socketSource test timer", &scheduler::terminate, scheduler::now() + t);
52         ppi::run();
53     }
54
55     int base_pid = 0;
56
57     unsigned port(unsigned i)
58     {
59         if (! base_pid)
60             base_pid = ::getpid();
61         return 23456u + (((base_pid^(base_pid>>8)^(base_pid>>16)^(base_pid>>24))&0xff)<<2) + i;
62     }
63
64     std::string localhost4str(unsigned i)
65     {
66         return (boost::format("localhost:%d") % port(i)).str();
67     }
68
69     std::string localhost6str(unsigned i)
70     {
71         return (boost::format("[::1]:%d") % port(i)).str();
72     }
73 }
74
75 SENF_AUTO_UNIT_TEST(socketSource)
76 {
77     senf::UDPv4ClientSocketHandle inputSocket;
78     inputSocket.bind(senf::INet4SocketAddress(localhost4str(0)));
79     inputSocket.blocking(false);
80     module::ActiveSocketSource<> udpSource(inputSocket);
81     debug::PassiveSink sink;
82     ppi::connect(udpSource, sink);
83
84     std::string data ("TEST");
85
86     senf::UDPv4ClientSocketHandle outputSocket;
87     outputSocket.writeto(senf::INet4SocketAddress(localhost4str(0)),data);
88     runPPI( senf::ClockService::milliseconds(100));
89
90     BOOST_REQUIRE( ! sink.empty() );
91     BOOST_CHECK_EQUAL( sink.front().data().size(), data.size() );
92     BOOST_CHECK( std::equal( sink.front().data().begin(), sink.front().data().end(),
93                              data.begin()) );
94 }
95
96 //-/////////////////////////////////////////////////////////////////////////////////////////////////
97 #undef prefix_
98
99 \f
100 // Local Variables:
101 // mode: c++
102 // fill-column: 100
103 // comment-column: 40
104 // c-file-style: "senf"
105 // indent-tabs-mode: nil
106 // ispell-local-dictionary: "american"
107 // compile-command: "scons -u test"
108 // End: