X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Socket%2FProtocols%2FUN%2FUNDatagramSocketHandle.test.cc;h=2297336aa325d74a37e56067cf6300ce8d924c26;hb=731a143df4de38d4c8b0a81121990951971cd858;hp=b39fd0ad43cece7629755e07f310d805c3860339;hpb=49af16667e485eb3be706efaf33b5a0cd085c6c4;p=senf.git diff --git a/Socket/Protocols/UN/UNDatagramSocketHandle.test.cc b/Socket/Protocols/UN/UNDatagramSocketHandle.test.cc index b39fd0a..2297336 100644 --- a/Socket/Protocols/UN/UNDatagramSocketHandle.test.cc +++ b/Socket/Protocols/UN/UNDatagramSocketHandle.test.cc @@ -1,7 +1,9 @@ -// Copyright (C) 2007 -// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) -// Kompetenzzentrum NETwork research (NET) -// David Wagner +// $Id$ +// +// Copyright (C) 2007 +// Fraunhofer Institute for Open Communication Systems (FOKUS) +// Competence Center NETwork research (NET), St. Augustin, GERMANY +// David Wagner // // 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 @@ -19,7 +21,7 @@ // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. /** \file - \brief UNDatagramSocketHandle.test unit tests */ + \brief UNDatagramSocketHandle unit tests */ //#include "UNDatagramSocketHandle.test.hh" //#include "UNDatagramSocketHandle.test.ih" @@ -38,21 +40,30 @@ BOOST_AUTO_UNIT_TEST(unDatagramSocketHandle) std::string testString ("Hallo Welt."); std::string socketPath (".socket-UNDatagramSocketHandle.test"); - unlink(socketPath.c_str()); - + BOOST_CHECKPOINT( 1 ); senf::UNSocketAddress addr (socketPath); + BOOST_CHECKPOINT( 2 ); senf::UNDatagramClientSocketHandle inputSocket(addr); + BOOST_CHECKPOINT( 3 ); senf::UNDatagramClientSocketHandle outputSocket; + + BOOST_CHECKPOINT( 4 ); outputSocket.writeto( addr, testString); + BOOST_CHECKPOINT( 5 ); BOOST_CHECK_EQUAL( inputSocket.read(), testString); + + + + BOOST_CHECKPOINT( 6 ); outputSocket.close(); + BOOST_CHECKPOINT( 7 ); inputSocket.close(); - if( unlink(socketPath.c_str()) != 0) - perror( "unlink failed"); +// if( unlink(socketPath.c_str()) != 0) +// perror( "unlink failed"); }