all unit tests: replaced BOOST_AUTO_UNIT_TEST with new SENF_AUTO_UNIT_TEST macro
[senf.git] / senf / PPI / ActiveFeeder.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 ActiveFeeder unit tests */
25
26 //#include "ActiveFeeder.test.hh"
27 //#include "ActiveFeeder.test.ih"
28
29 // Custom includes
30 #include "ActiveFeeder.hh"
31 #include "DebugModules.hh"
32 #include "Setup.hh"
33 #include "CloneSource.hh"
34 #include <senf/Scheduler/Scheduler.hh>
35 #include <senf/Utils/membind.hh>
36
37 #include <senf/Utils/auto_unit_test.hh>
38 #include <boost/test/test_tools.hpp>
39
40 #define prefix_
41 ///////////////////////////////cc.p////////////////////////////////////////
42 namespace debug = senf::ppi::module::debug;
43 namespace ppi = senf::ppi;
44 namespace module = senf::ppi::module;
45 namespace scheduler = senf::scheduler;
46
47 namespace {
48     void timeout() {
49         scheduler::terminate();
50     }
51     
52     void run(senf::ClockService::clock_type t) {
53         scheduler::TimerEvent timeoutTimer ("timeoutTimer", &timeout,
54                 senf::ClockService::now() + t);
55         ppi::run();
56     }
57 }
58
59 SENF_AUTO_UNIT_TEST(activeFeeder)
60 {
61     senf::PacketData::byte data[] = { 0xab };
62     senf::Packet p (senf::DataPacket::create(data));
63
64     module::CloneSource source (p);
65     debug::PassiveSink sink;
66     module::ActiveFeeder feeder;
67
68     ppi::connect( source, feeder );
69     ppi::connect( feeder, sink   );
70
71     senf::ClockService::clock_type start (senf::ClockService::now());    
72     run( senf::ClockService::seconds(1));
73     std::cerr << "\nActiveFeeder: " 
74               << (sink.size()*1e9)/(senf::ClockService::now()-start)
75               << " packets/s" << std::endl;
76     BOOST_CHECK( sink.size() > 0);
77 }
78
79 ///////////////////////////////cc.e////////////////////////////////////////
80 #undef prefix_
81
82 \f
83 // Local Variables:
84 // mode: c++
85 // fill-column: 100
86 // comment-column: 40
87 // c-file-style: "senf"
88 // indent-tabs-mode: nil
89 // ispell-local-dictionary: "american"
90 // compile-command: "scons -u test"
91 // End: