bb1c59d983bbe492800d034807efc1baf2c5ddca
[senf.git] / 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.test unit tests */
25
26 //#include "SocketSource.test.hh"
27 //#include "SocketSource.test.ih"
28
29 // Custom includes
30 #include <algorithm>
31 #include "../Socket/Protocols/INet/UDPSocketHandle.hh"
32 #include "../Scheduler/Scheduler.hh"
33 #include "SocketSource.hh"
34 #include "DebugModules.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
43 namespace ppi = senf::ppi;
44 namespace connector = ppi::connector;
45 namespace module = ppi::module;
46 namespace debug = module::debug;
47
48 namespace {
49     void timeout() {
50         senf::Scheduler::instance().terminate();
51     }
52 }
53
54 BOOST_AUTO_UNIT_TEST(socketSource)
55 {
56     senf::UDPv4ClientSocketHandle inputSocket;
57     inputSocket.bind(senf::INet4SocketAddress("localhost:44344"));
58     inputSocket.blocking(false);
59     module::ActiveSocketSource<> udpSource(inputSocket);
60     debug::PassiveSink sink;
61     ppi::connect(udpSource, sink);
62
63     std::string data ("TEST");
64
65     senf::UDPv4ClientSocketHandle outputSocket;
66     outputSocket.writeto(senf::INet4SocketAddress("localhost:44344"),data);
67     senf::scheduler::TimerEvent timer (
68         "socketSource test timer", &timeout,
69         senf::ClockService::now() + senf::ClockService::milliseconds(100));
70     senf::ppi::run();
71
72     BOOST_REQUIRE( ! sink.empty() );
73     BOOST_CHECK_EQUAL( sink.front().data().size(), data.size() );
74     BOOST_CHECK( std::equal( sink.front().data().begin(), sink.front().data().end(), 
75                              data.begin()) );
76 }
77
78 ///////////////////////////////cc.e////////////////////////////////////////
79 #undef prefix_
80
81 \f
82 // Local Variables:
83 // mode: c++
84 // fill-column: 100
85 // comment-column: 40
86 // c-file-style: "senf"
87 // indent-tabs-mode: nil
88 // ispell-local-dictionary: "american"
89 // compile-command: "scons -u test"
90 // End: