X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FPPI%2FSocketSource.test.cc;h=f7b416cd59e2a01011c5535221f4124630f49b22;hb=74febc7a9abc84c4939269b3443d15fc27f4e960;hp=4bf23ef9a2a6c592804c64e45ce41ddc64aea852;hpb=26610f603ebdd465307b9621f532c1fe19fd5571;p=senf.git diff --git a/senf/PPI/SocketSource.test.cc b/senf/PPI/SocketSource.test.cc index 4bf23ef..f7b416c 100644 --- a/senf/PPI/SocketSource.test.cc +++ b/senf/PPI/SocketSource.test.cc @@ -2,23 +2,28 @@ // // Copyright (C) 2007 // Fraunhofer Institute for Open Communication Systems (FOKUS) -// Competence Center NETwork research (NET), St. Augustin, GERMANY -// Stefan Bund // -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. +// The contents of this file are subject to the Fraunhofer FOKUS Public License +// Version 1.0 (the "License"); you may not use this file except in compliance +// with the License. You may obtain a copy of the License at +// http://senf.berlios.de/license.html // -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. +// The Fraunhofer FOKUS Public License Version 1.0 is based on, +// but modifies the Mozilla Public License Version 1.1. +// See the full license text for the amendments. // -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the -// Free Software Foundation, Inc., -// 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +// Software distributed under the License is distributed on an "AS IS" basis, +// WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +// for the specific language governing rights and limitations under the License. +// +// The Original Code is Fraunhofer FOKUS code. +// +// The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. +// (registered association), Hansastraße 27 c, 80686 Munich, Germany. +// All Rights Reserved. +// +// Contributor(s): +// Stefan Bund /** \file \brief SocketSource unit tests */ @@ -38,21 +43,40 @@ #include #define prefix_ -///////////////////////////////cc.p//////////////////////////////////////// +//-///////////////////////////////////////////////////////////////////////////////////////////////// namespace ppi = senf::ppi; namespace module = ppi::module; namespace debug = module::debug; +namespace scheduler = senf::scheduler; namespace { - void timeout() { - senf::scheduler::terminate(); + void runPPI(senf::ClockService::clock_type t) + { + scheduler::TimerEvent timeout( + "socketSource test timer", &scheduler::terminate, scheduler::now() + t); + ppi::run(); } + + int base_pid = 0; + + unsigned port(unsigned i) + { + if (! base_pid) + base_pid = ::getpid(); + return 23456u + (((base_pid^(base_pid>>8)^(base_pid>>16)^(base_pid>>24))&0xff)<<2) + i; + } + + std::string localhost4str(unsigned i) + { + return (boost::format("localhost:%d") % port(i)).str(); + } + } -BOOST_AUTO_UNIT_TEST(socketSource) +SENF_AUTO_UNIT_TEST(socketSource) { senf::UDPv4ClientSocketHandle inputSocket; - inputSocket.bind(senf::INet4SocketAddress("localhost:44344")); + inputSocket.bind(senf::INet4SocketAddress(localhost4str(0))); inputSocket.blocking(false); module::ActiveSocketSource<> udpSource(inputSocket); debug::PassiveSink sink; @@ -61,19 +85,16 @@ BOOST_AUTO_UNIT_TEST(socketSource) std::string data ("TEST"); senf::UDPv4ClientSocketHandle outputSocket; - outputSocket.writeto(senf::INet4SocketAddress("localhost:44344"),data); - senf::scheduler::TimerEvent timer ( - "socketSource test timer", &timeout, - senf::ClockService::now() + senf::ClockService::milliseconds(100)); - senf::ppi::run(); + outputSocket.writeto(senf::INet4SocketAddress(localhost4str(0)),data); + runPPI( senf::ClockService::milliseconds(100)); BOOST_REQUIRE( ! sink.empty() ); BOOST_CHECK_EQUAL( sink.front().data().size(), data.size() ); - BOOST_CHECK( std::equal( sink.front().data().begin(), sink.front().data().end(), + BOOST_CHECK( std::equal( sink.front().data().begin(), sink.front().data().end(), data.begin()) ); } -///////////////////////////////cc.e//////////////////////////////////////// +//-///////////////////////////////////////////////////////////////////////////////////////////////// #undef prefix_