Socket: Move protocol into the socket body (as private base class) and allow non...
[senf.git] / Socket / Protocols / UN / UNDatagramSocketHandle.test.cc
index 6eb4460..cf2b413 100644 (file)
@@ -1,7 +1,9 @@
+// $Id$
+//
 // Copyright (C) 2007 
-// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
-// Kompetenzzentrum NETwork research (NET)
-//     David Wagner <david.wagner@fokus.fraunhofer.de>
+// Fraunhofer Institute for Open Communication Systems (FOKUS) 
+// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+//     David Wagner <dw6@berlios.de>
 //
 // 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
 
 BOOST_AUTO_UNIT_TEST(unDatagramSocketHandle)
 {
-  std::string hallo = "Hallo Welt.";
-  std::string testS = ".socket-UNDatagramSocketHandle.test";
-  
-  unlink(testS.c_str()); 
-
-  senf::UNSocketAddress addr (testS) ; 
-  senf::UNDatagramClientSocketHandle inputSocket(addr);
-  senf::UNDatagramClientSocketHandle outputSocket;
-
-  outputSocket.writeto( addr, hallo);
-
-  BOOST_CHECK_EQUAL( inputSocket.read(), hallo);
-  outputSocket.close();
-  inputSocket.close();
-  
-  if( unlink(testS.c_str()) != 0) 
-       perror( "unlink failed");
+    std::string testString ("Hallo Welt.");
+    std::string socketPath (".socket-UNDatagramSocketHandle.test");
+
+    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");
 }