- validate client generated PIDs
[oweals/gnunet.git] / src / mesh / test_mesh_small.c
index bac494cd60e99b9e7875c8f3662cec4988b3b667..d78d12117decad50d96a99a4f14b437453c06879 100644 (file)
  *
  * @brief Test for the mesh service: retransmission of traffic.
  */
+#include <stdio.h>
 #include "platform.h"
 #include "gnunet_testing_lib.h"
 #include "gnunet_mesh_service.h"
+#include <gauger.h>
+
 
 #define VERBOSE GNUNET_YES
 #define REMOVE_DIR GNUNET_YES
@@ -41,12 +44,6 @@ struct MeshPeer
 };
 
 
-struct StatsContext
-{
-  unsigned long long total_mesh_bytes;
-};
-
-
 /**
  * How long until we give up on connecting the peers?
  */
@@ -172,8 +169,8 @@ static struct GNUNET_TIME_Absolute start_time;
 
 static struct GNUNET_TIME_Absolute end_time;
 
+static struct GNUNET_TIME_Relative total_time;
 
-static uint16_t *mesh_peers;
 
 /**
  * Check whether peers successfully shut down.
@@ -185,7 +182,7 @@ shutdown_callback (void *cls, const char *emsg)
   {
 #if VERBOSE
     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "***************** test: Shutdown of peers failed!\n");
+                "Shutdown of peers failed!\n");
 #endif
     ok--;
   }
@@ -193,9 +190,10 @@ shutdown_callback (void *cls, const char *emsg)
   {
 #if VERBOSE
     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "***************** test: All peers successfully shut down!\n");
+                "All peers successfully shut down!\n");
 #endif
   }
+  GNUNET_CONFIGURATION_destroy (testing_cfg);
 }
 
 
@@ -207,7 +205,7 @@ shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
 {
 #if VERBOSE
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "***************** test: Ending test.\n");
+              "Ending test.\n");
 #endif
 
   if (disconnect_task != GNUNET_SCHEDULER_NO_TASK)
@@ -216,10 +214,25 @@ shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
     disconnect_task = GNUNET_SCHEDULER_NO_TASK;
   }
 
+  if (NULL != h1)
+  {
+    GNUNET_MESH_disconnect (h1);
+    h1 = NULL;
+  }
+  if (NULL != h2)
+  {
+    GNUNET_MESH_disconnect (h2);
+    h2 = NULL;
+  }
+  if (test == MULTICAST && NULL != h3)
+  {
+    GNUNET_MESH_disconnect (h3);
+    h3 = NULL;
+  }
+  
   if (data_file != NULL)
     GNUNET_DISK_file_close (data_file);
   GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
-  GNUNET_CONFIGURATION_destroy (testing_cfg);
 }
 
 
@@ -230,12 +243,31 @@ static void
 disconnect_mesh_peers (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
 {
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "***************** test: disconnecting mesh service of peers\n");
+              "disconnecting mesh service of peers\n");
   disconnect_task = GNUNET_SCHEDULER_NO_TASK;
+  if (NULL != t)
+  {
+    GNUNET_MESH_tunnel_destroy(t);
+    t = NULL;
+  }
+  if (NULL != incoming_t)
+  {
+    GNUNET_MESH_tunnel_destroy(incoming_t);
+    incoming_t = NULL;
+  }
+  if (NULL != incoming_t2)
+  {
+    GNUNET_MESH_tunnel_destroy(incoming_t2);
+    incoming_t2 = NULL;
+  }
   GNUNET_MESH_disconnect (h1);
   GNUNET_MESH_disconnect (h2);
+  h1 = h2 = NULL;
   if (test == MULTICAST)
+  {
     GNUNET_MESH_disconnect (h3);
+    h3 = NULL;
+  }
   if (GNUNET_SCHEDULER_NO_TASK != shutdown_handle)
   {
     GNUNET_SCHEDULER_cancel (shutdown_handle);
@@ -243,7 +275,7 @@ disconnect_mesh_peers (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
   }
 }
 
-size_t
+static size_t
 tmt_rdy (void *cls, size_t size, void *buf);
 
 static void
@@ -252,7 +284,7 @@ data_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
   struct GNUNET_MESH_TransmitHandle *th;
   if ((GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason) != 0)
     return;
-  th = GNUNET_MESH_notify_transmit_ready (t, GNUNET_NO, 0,
+  th = GNUNET_MESH_notify_transmit_ready (t, GNUNET_NO,
                                     GNUNET_TIME_UNIT_FOREVER_REL, &d2->id,
                                     sizeof (struct GNUNET_MessageHeader),
                                     &tmt_rdy, (void *) 1L);
@@ -292,7 +324,7 @@ tmt_rdy (void *cls, size_t size, void *buf)
   struct GNUNET_MessageHeader *msg = buf;
 
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "***************** test:  tmt_rdy called\n");
+              " tmt_rdy called\n");
   if (size < sizeof (struct GNUNET_MessageHeader) || NULL == buf)
     return 0;
   msg->size = htons (sizeof (struct GNUNET_MessageHeader));
@@ -303,7 +335,7 @@ tmt_rdy (void *cls, size_t size, void *buf)
     if (data_sent < 1000)
     {
       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "***************** test:  Scheduling %d packet\n", data_sent);
+              " Scheduling %d packet\n", data_sent);
       GNUNET_SCHEDULER_add_now(&data_task, NULL);
     }
   }
@@ -334,9 +366,9 @@ data_callback (void *cls, struct GNUNET_MESH_Tunnel *tunnel, void **tunnel_ctx,
   switch (client)
   {
   case 1L:
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "***************** test: Origin client got a response!\n");
+    GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Origin client got a response!\n");
     ok++;
+    GNUNET_log (GNUNET_ERROR_TYPE_INFO, " ok: %d\n", ok);
     peers_responded++;
     data_ack++;
     if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
@@ -348,39 +380,41 @@ data_callback (void *cls, struct GNUNET_MESH_Tunnel *tunnel, void **tunnel_ctx,
     }
     if (test == MULTICAST && peers_responded < 2)
       return GNUNET_OK;
-    if (test == SPEED_ACK)
+    if (test == SPEED_ACK || test == SPEED)
     {
-      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "***************** test:  received ack %u\n", data_ack);
-      GNUNET_MESH_notify_transmit_ready (tunnel, GNUNET_NO, 0,
+      GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+              " received ack %u\n", data_ack);
+      GNUNET_MESH_notify_transmit_ready (tunnel, GNUNET_NO,
                                         GNUNET_TIME_UNIT_FOREVER_REL, sender,
                                         sizeof (struct GNUNET_MessageHeader),
                                         &tmt_rdy, (void *) 1L);
-      if (data_ack < 1000)
+      if (data_ack < 1000 && test != SPEED)
         return GNUNET_OK;
       end_time = GNUNET_TIME_absolute_get();
-      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                  "***************** test time %u ms\n",
-                  GNUNET_TIME_absolute_get_difference(start_time, end_time).rel_value);
-    }
-    GNUNET_MESH_tunnel_destroy (tunnel);
-    if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
-    {
-      GNUNET_SCHEDULER_cancel (disconnect_task);
-      disconnect_task =
-          GNUNET_SCHEDULER_add_now (&disconnect_mesh_peers,
-                                        NULL);
+      total_time = GNUNET_TIME_absolute_get_difference(start_time, end_time);
+      FPRINTF (stderr, "\nTest time %llu ms\n",
+               (unsigned long long) total_time.rel_value);
+      FPRINTF (stderr, "Test bandwidth: %f kb/s\n",
+               4 * 1000.0 / total_time.rel_value); // 4bytes * ms
+      FPRINTF (stderr, "Test throughput: %f packets/s\n\n",
+               1000.0 * 1000.0 / total_time.rel_value); // 1000 packets * ms
+      GAUGER ("MESH", "Tunnel 5 peers", 1000.0 * 1000.0 / total_time.rel_value,
+              "packets/s");
     }
+    GNUNET_assert (tunnel == t);
+    GNUNET_MESH_tunnel_destroy (t);
+    t = NULL;
     break;
   case 2L:
   case 3L:
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "***************** test: Destination client %u got a message.\n",
+    GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+                "Destination client %u got a message.\n",
                 client);
     ok++;
-    if (SPEED != test)
+    GNUNET_log (GNUNET_ERROR_TYPE_INFO, " ok: %d\n", ok);
+    if (SPEED != test || 1002 == ok)
     {
-      GNUNET_MESH_notify_transmit_ready (tunnel, GNUNET_NO, 0,
+      GNUNET_MESH_notify_transmit_ready (tunnel, GNUNET_NO,
                                         GNUNET_TIME_UNIT_FOREVER_REL, sender,
                                         sizeof (struct GNUNET_MessageHeader),
                                         &tmt_rdy, (void *) 1L);
@@ -388,8 +422,8 @@ data_callback (void *cls, struct GNUNET_MESH_Tunnel *tunnel, void **tunnel_ctx,
     else
     {
       data_received++;
-      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "***************** test:  received data %u\n", data_received);
+      GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+              " received data %u\n", data_received);
       if (data_received < 1000)
         return GNUNET_OK;
     }
@@ -433,14 +467,20 @@ incoming_tunnel (void *cls, struct GNUNET_MESH_Tunnel *tunnel,
                  const struct GNUNET_PeerIdentity *initiator,
                  const struct GNUNET_ATS_Information *atsi)
 {
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "***************** test: Incoming tunnel from %s to peer %d\n",
+  GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+              "Incoming tunnel from %s to peer %d\n",
               GNUNET_i2s (initiator), (long) cls);
   ok++;
-  if ((long) cls == 1L)
+  GNUNET_log (GNUNET_ERROR_TYPE_INFO, " ok: %d\n", ok);
+  if ((long) cls == 2L)
     incoming_t = tunnel;
-  else
+  else if ((long) cls == 3L)
     incoming_t2 = tunnel;
+  else
+  {
+    GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
+                "Incoming tunnel for unknown client %lu\n", (long) cls);
+  }
   if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
   {
     GNUNET_SCHEDULER_cancel (disconnect_task);
@@ -465,16 +505,23 @@ tunnel_cleaner (void *cls, const struct GNUNET_MESH_Tunnel *tunnel,
 {
   long i = (long) cls;
 
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "***************** test: Incoming tunnel disconnected at peer %d\n",
+  GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+              "Incoming tunnel disconnected at peer %d\n",
               i);
   if (2L == i)
+  {
     ok++;
+    incoming_t = NULL;
+  }
   else if (3L == i)
+  {
     ok++;
+    incoming_t2 = NULL;
+  }
   else
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "***************** test: Unknown peer! %d\n", i);
+    GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
+                "Unknown peer! %d\n", i);
+  GNUNET_log (GNUNET_ERROR_TYPE_INFO, " ok: %d\n", ok);
   peers_in_tunnel--;
   if (peers_in_tunnel > 0)
     return;
@@ -499,7 +546,7 @@ static void
 dh (void *cls, const struct GNUNET_PeerIdentity *peer)
 {
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "***************** test: peer %s disconnected\n",
+              "peer %s disconnected\n",
               GNUNET_i2s (peer));
   return;
 }
@@ -518,14 +565,19 @@ ch (void *cls, const struct GNUNET_PeerIdentity *peer,
 {
   struct GNUNET_PeerIdentity *dest;
 
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "***************** test: peer %s connected\n", GNUNET_i2s (peer));
+  GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+              "peer %s connected\n", GNUNET_i2s (peer));
 
   if (0 == memcmp (&d2->id, peer, sizeof (d2->id)) && (long) cls == 1L)
+  {
     ok++;
+  }
   if (test == MULTICAST && 0 == memcmp (&d3->id, peer, sizeof (d3->id)) &&
       (long) cls == 1L)
+  {
     ok++;
+  }
+  GNUNET_log (GNUNET_ERROR_TYPE_INFO, " ok: %d\n", ok);
   switch (test)
   {
   case UNICAST:
@@ -548,13 +600,13 @@ ch (void *cls, const struct GNUNET_PeerIdentity *peer,
     disconnect_task =
         GNUNET_SCHEDULER_add_delayed (SHORT_TIME, &disconnect_mesh_peers, NULL);
     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "***************** test: Sending data...\n");
+                "Sending data...\n");
     peers_responded = 0;
     data_ack = 0;
     data_received = 0;
     data_sent = 0;
     start_time = GNUNET_TIME_absolute_get();
-    GNUNET_MESH_notify_transmit_ready (t, GNUNET_NO, 0,
+    GNUNET_MESH_notify_transmit_ready (t, GNUNET_NO,
                                        GNUNET_TIME_UNIT_FOREVER_REL, dest,
                                        sizeof (struct GNUNET_MessageHeader),
                                        &tmt_rdy, (void *) 1L);
@@ -562,9 +614,9 @@ ch (void *cls, const struct GNUNET_PeerIdentity *peer,
   else
   {
     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "***************** test: Disconnect already run?\n");
+                "Disconnect already run?\n");
     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "***************** test: Aborting...\n");
+                "Aborting...\n");
   }
   return;
 }
@@ -573,17 +625,17 @@ ch (void *cls, const struct GNUNET_PeerIdentity *peer,
 static void
 do_test (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
 {
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "***************** test: test_task\n");
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test_task\n");
   if (test == MULTICAST)
   {
     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "***************** test: add peer 3\n");
+                "add peer 3\n");
     GNUNET_MESH_peer_request_connect_add (t, &d3->id);
   }
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "***************** test: add peer 2\n");
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "add peer 2\n");
   GNUNET_MESH_peer_request_connect_add (t, &d2->id);
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "***************** test: schedule timeout in 90s\n");
+              "schedule timeout in 90s\n");
   if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
   {
     GNUNET_SCHEDULER_cancel (disconnect_task);
@@ -593,61 +645,6 @@ do_test (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
 }
 
 
-/**
- * Prototype of a callback function indicating that two peers
- * are currently connected.
- *
- * @param cls closure
- * @param first peer id for first daemon
- * @param second peer id for the second daemon
- * @param distance distance between the connected peers
- * @param emsg error message (NULL on success)
- */
-void
-topo_cb (void *cls, const struct GNUNET_PeerIdentity *first,
-         const struct GNUNET_PeerIdentity *second, const char *emsg)
-{
-  GNUNET_PEER_Id p1;
-  GNUNET_PEER_Id p2;
-  struct GNUNET_PeerIdentity id;
-
-  GNUNET_PEER_resolve (1, &id);
-  p1 = GNUNET_PEER_search (first);
-  if (p1 == pid1)
-  {
-    p2 = GNUNET_PEER_search (second);
-    if (p2 == 0 || p2 > num_peers)
-    {
-      GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
-                  "***************** test: %s is UNKNOWN!? (%u)\n",
-                  GNUNET_i2s (second), p2);
-      return;
-    }
-    mesh_peers[p2]++;
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "***************** test: %s IS a neighbor\n",
-                GNUNET_i2s (second));
-    return;
-  }
-  p1 = GNUNET_PEER_search (second);
-  if (p1 == pid1)
-  {
-    p2 = GNUNET_PEER_search (first);
-    if (p2 == 0 || p2 > num_peers)
-    {
-      GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
-                  "***************** test: %s is UNKNOWN!? (%u)\n",
-                  GNUNET_i2s (first), p2);
-      return;
-    }
-    mesh_peers[p2]++;
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "***************** test: %s IS a neighbor\n",
-                GNUNET_i2s (first));
-    return;
-  }
-}
-
 /**
  * connect_mesh_service: connect to the mesh service of one of the peers
  *
@@ -656,67 +653,45 @@ static void
 connect_mesh_service (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
 {
   GNUNET_MESH_ApplicationType app;
-  unsigned int i;
-  struct GNUNET_PeerIdentity id;
 
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "***************** test: connect_mesh_service\n");
+              "connect_mesh_service\n");
 
-  for (i = 1; i <= num_peers; i++)
-  {
-    GNUNET_PEER_resolve (i, &id);
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "***************** test:   peer %s has %u conns to d1\n",
-                GNUNET_i2s (&id), mesh_peers[i]);
-    if (mesh_peers[i] == 0)
-      break;
-  }
-  GNUNET_assert (i < num_peers);
-  d2 = GNUNET_TESTING_daemon_get_by_id (pg, &id);
+  d2 = GNUNET_TESTING_daemon_get (pg, 4);
   if (test == MULTICAST)
   {
-    for (i++; i <= num_peers; i++)
-    {
-      GNUNET_PEER_resolve (i, &id);
-      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                  "***************** test:   peer %s has %u conns to d1\n",
-                  GNUNET_i2s (&id), mesh_peers[i]);
-      if (mesh_peers[i] == 0)
-        break;
-    }
-    GNUNET_assert (i < num_peers);
-    d3 = GNUNET_TESTING_daemon_get_by_id (pg, &id);
+    d3 = GNUNET_TESTING_daemon_get (pg, 3);
   }
   app = (GNUNET_MESH_ApplicationType) 0;
 
 #if VERBOSE
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "***************** test: connecting to mesh service of peer %s (%u)\n",
-              GNUNET_i2s (&d1->id), mesh_peers[0]);
+              "connecting to mesh service of peer %s\n",
+              GNUNET_i2s (&d1->id));
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "***************** test: connecting to mesh service of peer %s (%u)\n",
-              GNUNET_i2s (&d2->id), i);
+              "connecting to mesh service of peer %s\n",
+              GNUNET_i2s (&d2->id));
   if (test == MULTICAST)
   {
     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "***************** test: connecting to mesh service of peer %s (%u)\n",
-                GNUNET_i2s (&d3->id), i);
+                "connecting to mesh service of peer %s\n",
+                GNUNET_i2s (&d3->id));
   }
 #endif
-  h1 = GNUNET_MESH_connect (d1->cfg, 5, (void *) 1L, NULL, &tunnel_cleaner,
+  h1 = GNUNET_MESH_connect (d1->cfg, (void *) 1L, NULL, &tunnel_cleaner,
                             handlers, &app);
-  h2 = GNUNET_MESH_connect (d2->cfg, 5, (void *) 2L, &incoming_tunnel,
+  h2 = GNUNET_MESH_connect (d2->cfg, (void *) 2L, &incoming_tunnel,
                             &tunnel_cleaner, handlers, &app);
   if (test == MULTICAST)
   {
-    h3 = GNUNET_MESH_connect (d3->cfg, 10, (void *) 3L, &incoming_tunnel,
+    h3 = GNUNET_MESH_connect (d3->cfg, (void *) 3L, &incoming_tunnel,
                               &tunnel_cleaner, handlers, &app);
   }
   t = GNUNET_MESH_tunnel_create (h1, NULL, &ch, &dh, (void *) 1L);
   peers_in_tunnel = 0;
   test_task =
       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
-                                    (GNUNET_TIME_UNIT_SECONDS, 6), &do_test,
+                                    (GNUNET_TIME_UNIT_SECONDS, 1), &do_test,
                                     NULL);
 }
 
@@ -737,9 +712,9 @@ peergroup_ready (void *cls, const char *emsg)
   if (emsg != NULL)
   {
     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "***************** test: Peergroup callback called with error, aborting test!\n");
+                "Peergroup callback called with error, aborting test!\n");
     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "***************** test: Error from testing: `%s'\n", emsg);
+                "Error from testing: `%s'\n", emsg);
     ok--;
     GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
     return;
@@ -748,9 +723,9 @@ peergroup_ready (void *cls, const char *emsg)
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
               "************************************************************\n");
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "***************** test: Peer Group started successfully!\n");
+              "Peer Group started successfully!\n");
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "***************** test: Have %u connections\n",
+              "Have %u connections\n",
               total_connections);
 #endif
 
@@ -769,20 +744,16 @@ peergroup_ready (void *cls, const char *emsg)
 
     d1 = GNUNET_TESTING_daemon_get (pg, i);
     peer_id = GNUNET_PEER_intern (&d1->id);
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "***************** test:   %u: %s\n",
+    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  %u: %s\n",
                 peer_id, GNUNET_i2s (&d1->id));
   }
   d1 = GNUNET_TESTING_daemon_get (pg, 0);
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "***************** test: Peer looking: %s\n",
+              "Peer looking: %s\n",
               GNUNET_i2s (&d1->id));
   pid1 = GNUNET_PEER_intern (&d1->id);
-  mesh_peers[pid1] = 100;
-  GNUNET_TESTING_get_topology (pg, &topo_cb, NULL);
 
-  GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
-                                (GNUNET_TIME_UNIT_SECONDS, 4),
-                                &connect_mesh_service, NULL);
+  GNUNET_SCHEDULER_add_now (&connect_mesh_service, NULL);
   disconnect_task =
       GNUNET_SCHEDULER_add_delayed (wait_time, &disconnect_mesh_peers, NULL);
 
@@ -818,12 +789,10 @@ connect_cb (void *cls, const struct GNUNET_PeerIdentity *first,
   else
   {
     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "***************** test: Problem with new connection (%s)\n",
+                "Problem with new connection (%s)\n",
                 emsg);
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "***************** test:   (%s)\n",
-                GNUNET_i2s (first));
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "***************** test:   (%s)\n",
-                GNUNET_i2s (second));
+    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " (%s)\n", GNUNET_i2s (first));
+    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " (%s)\n", GNUNET_i2s (second));
   }
 
 }
@@ -857,13 +826,13 @@ run (void *cls, char *const *args, const char *cfgfile,
 
 #if VERBOSE
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "***************** test: Starting daemons.\n");
-  GNUNET_CONFIGURATION_set_value_string (testing_cfg, "testing",
+              "Starting daemons.\n");
+  GNUNET_CONFIGURATION_set_value_string (testing_cfg, "testing_old",
                                          "use_progressbars", "YES");
 #endif
 
   if (GNUNET_OK !=
-      GNUNET_CONFIGURATION_get_value_number (testing_cfg, "testing",
+      GNUNET_CONFIGURATION_get_value_number (testing_cfg, "testing_old",
                                              "num_peers", &num_peers))
   {
     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
@@ -871,8 +840,6 @@ run (void *cls, char *const *args, const char *cfgfile,
     return;
   }
 
-  mesh_peers = GNUNET_malloc (sizeof (uint16_t) * (num_peers + 1));
-
   if (GNUNET_OK !=
       GNUNET_CONFIGURATION_get_value_time (testing_cfg, "test_mesh_small",
                                            "WAIT_TIME", &wait_time))
@@ -883,7 +850,7 @@ run (void *cls, char *const *args, const char *cfgfile,
   }
 
   if (GNUNET_OK !=
-      GNUNET_CONFIGURATION_get_value_string (testing_cfg, "testing",
+      GNUNET_CONFIGURATION_get_value_string (testing_cfg, "testing_old",
                                              "topology_output_file",
                                              &topology_file))
   {
@@ -934,7 +901,7 @@ run (void *cls, char *const *args, const char *cfgfile,
                                        hosts);
   GNUNET_assert (pg != NULL);
   shutdown_handle =
-      GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_get_forever (),
+    GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
                                     &shutdown_task, NULL);
 }
 
@@ -980,16 +947,16 @@ main (int argc, char *argv[])
    */
   int ok_goal;
 
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "***************** test: Start\n");
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Start\n");
   if (strstr (argv[0], "test_mesh_small_unicast") != NULL)
   {
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "***************** test: UNICAST\n");
+    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "UNICAST\n");
     test = UNICAST;
     ok_goal = 5;
   }
   else if (strstr (argv[0], "test_mesh_small_multicast") != NULL)
   {
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "***************** test: MULTICAST\n");
+    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MULTICAST\n");
     test = MULTICAST;
     ok_goal = 10;
   }
@@ -1004,11 +971,13 @@ main (int argc, char *argv[])
     * _________________________________
     * 5 x ok expected per peer
     */
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "***************** test: SPEED_ACK\n");
+    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "SPEED_ACK\n");
     test = SPEED_ACK;
     ok_goal = 2003;
     argv2 [3] = NULL; // remove -L DEBUG
+#if VERBOSE
     argc2 -= 2;
+#endif
   }
   else if (strstr (argv[0], "test_mesh_small_speed") != NULL)
   {
@@ -1016,17 +985,17 @@ main (int argc, char *argv[])
     * 1 incoming tunnel (@dest)
     * 1 connected peer (@orig)
     * 1000 received data packet (@dest)
+    * 1received data packet (@orig)
     * 1 received tunnel destroy (@dest)
     * _________________________________
-    * 5 x ok expected per peer
     */
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "***************** test: SPEED\n");
+    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "SPEED\n");
     test = SPEED;
-    ok_goal = 1003;
+    ok_goal = 1004;
   }
   else
   {
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "***************** test: UNKNOWN\n");
+    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "UNKNOWN\n");
     test = SETUP;
     ok_goal = 0;
   }
@@ -1041,10 +1010,10 @@ main (int argc, char *argv[])
   if (ok_goal > ok)
   {
     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
-                "***************** test: FAILED! (%d/%d)\n", ok, ok_goal);
+                "FAILED! (%d/%d)\n", ok, ok_goal);
     return 1;
   }
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "***************** test: success\n");
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "success\n");
   return 0;
 }