Scheduler: Remove obsolete 'Scheduler' class
[senf.git] / 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.test 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
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::terminate();
51     }
52 }
53
54 BOOST_AUTO_UNIT_TEST(passiveSocketSink)
55 {
56     senf::ConnectedUDPv4ClientSocketHandle outputSocket (
57         senf::INet4SocketAddress("localhost:44344"));
58     module::PassiveSocketSink<> udpSink(outputSocket);
59     debug::ActiveSource source;
60     ppi::connect(source, udpSink);
61
62     std::string data ("TEST");
63     senf::Packet p (senf::DataPacket::create(data));
64
65     senf::UDPv4ClientSocketHandle inputSocket;
66     inputSocket.bind(senf::INet4SocketAddress("localhost:44344"));
67     senf::ppi::init();
68     source.submit(p);
69
70     std::string input (inputSocket.read());
71     BOOST_CHECK_EQUAL( data, input );
72 }
73
74 BOOST_AUTO_UNIT_TEST(activeSocketSink)
75 {
76     senf::ConnectedUDPv4ClientSocketHandle outputSocket (
77         senf::INet4SocketAddress("localhost:44344"));
78     module::ActiveSocketSink<> udpSink(outputSocket);
79     debug::PassiveSource source;
80     ppi::connect(source, udpSink);
81
82     std::string data ("TEST");
83     senf::Packet p (senf::DataPacket::create(data));
84
85     senf::UDPv4ClientSocketHandle inputSocket;
86     inputSocket.bind(senf::INet4SocketAddress("localhost:44344"));
87     senf::scheduler::TimerEvent timer (
88         "activeSocketSink test timer", &timeout,
89         senf::ClockService::now() + senf::ClockService::milliseconds(100));
90     source.submit(p);
91     senf::ppi::run();
92
93     std::string input (inputSocket.read());
94     BOOST_CHECK_EQUAL( data, input );
95 }
96
97 ///////////////////////////////cc.e////////////////////////////////////////
98 #undef prefix_
99
100 \f
101 // Local Variables:
102 // mode: c++
103 // fill-column: 100
104 // comment-column: 40
105 // c-file-style: "senf"
106 // indent-tabs-mode: nil
107 // ispell-local-dictionary: "american"
108 // compile-command: "scons -u test"
109 // End: