- sync
[oweals/gnunet.git] / src / mesh / test_mesh_small.c
1 /*
2      This file is part of GNUnet.
3      (C) 2011 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20 /**
21  * @file mesh/test_mesh_small.c
22  *
23  * @brief Test for the mesh service: retransmission of traffic.
24  */
25 #include <stdio.h>
26 #include "platform.h"
27 #include "mesh_test_lib.h"
28 #include "gnunet_mesh_service_enc.h"
29 #include <gauger.h>
30
31
32 /**
33  * How namy messages to send
34  */
35 #define TOTAL_PACKETS 1000
36
37 /**
38  * How long until we give up on connecting the peers?
39  */
40 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 120)
41
42 /**
43  * Time to wait for stuff that should be rather fast
44  */
45 #define SHORT_TIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
46
47 /**
48  * DIFFERENT TESTS TO RUN
49  */
50 #define SETUP 0
51 #define FORWARD 1
52 #define SPEED 3
53 #define SPEED_ACK 4
54 #define SPEED_NOBUF 6
55 #define SPEED_REL 8
56 #define P2P_SIGNAL 10
57
58 /**
59  * Which test are we running?
60  */
61 static int test;
62
63 /**
64  * String with test name
65  */
66 char *test_name;
67
68 /**
69  * Flag to send traffic leaf->root in speed tests to test BCK_ACK logic.
70  */
71 static int test_backwards = GNUNET_NO;
72
73 /**
74  * How many events have happened
75  */
76 static int ok;
77
78  /**
79   * Each peer is supposed to generate the following callbacks:
80   * 1 incoming channel (@dest)
81   * 1 connected peer (@orig)
82   * 1 received data packet (@dest)
83   * 1 received data packet (@orig)
84   * 1 received channel destroy (@dest)
85   * _________________________________
86   * 5 x ok expected per peer
87   */
88 int ok_goal;
89
90
91 /**
92  * Size of each test packet
93  */
94 size_t size_payload = sizeof (struct GNUNET_MessageHeader) + sizeof (uint32_t);
95
96 /**
97  * Operation to get peer ids.
98  */
99 struct GNUNET_TESTBED_Operation *t_op[2];
100
101 /**
102  * Peer ids.
103  */
104 struct GNUNET_PeerIdentity *p_id[2];
105
106 /**
107  * Peer ids counter.
108  */
109 unsigned int p_ids;
110
111 /**
112  * Is the setup initialized?
113  */
114 static int initialized;
115
116 /**
117  * Number of payload packes sent
118  */
119 static int data_sent;
120
121 /**
122  * Number of payload packets received
123  */
124 static int data_received;
125
126 /**
127  * Number of payload packed explicitly (app level) acknowledged
128  */
129 static int data_ack;
130
131 /**
132  * Total number of currently running peers.
133  */
134 static unsigned long long peers_running;
135
136 /**
137  * Test context (to shut down).
138  */
139 struct GNUNET_MESH_TEST_Context *test_ctx;
140
141 /**
142  * Task called to disconnect peers.
143  */
144 static GNUNET_SCHEDULER_TaskIdentifier disconnect_task;
145
146 /**
147  * Task To perform tests
148  */
149 static GNUNET_SCHEDULER_TaskIdentifier test_task;
150
151 /**
152  * Task called to shutdown test.
153  */
154 static GNUNET_SCHEDULER_TaskIdentifier shutdown_handle;
155
156 /**
157  * Mesh handle for the root peer
158  */
159 static struct GNUNET_MESH_Handle *h1;
160
161 /**
162  * Mesh handle for the first leaf peer
163  */
164 static struct GNUNET_MESH_Handle *h2;
165
166 /**
167  * Channel handle for the root peer
168  */
169 static struct GNUNET_MESH_Channel *ch;
170
171 /**
172  * Channel handle for the dest peer
173  */
174 static struct GNUNET_MESH_Channel *incoming_ch;
175
176 /**
177  * Time we started the data transmission (after channel has been established
178  * and initilized).
179  */
180 static struct GNUNET_TIME_Absolute start_time;
181
182
183 /**
184  * Show the results of the test (banwidth acheived) and log them to GAUGER
185  */
186 static void
187 show_end_data (void)
188 {
189   static struct GNUNET_TIME_Absolute end_time;
190   static struct GNUNET_TIME_Relative total_time;
191
192   end_time = GNUNET_TIME_absolute_get();
193   total_time = GNUNET_TIME_absolute_get_difference(start_time, end_time);
194   FPRINTF (stderr, "\nResults of test \"%s\"\n", test_name);
195   FPRINTF (stderr, "Test time %s\n",
196            GNUNET_STRINGS_relative_time_to_string (total_time,
197                                                    GNUNET_YES));
198   FPRINTF (stderr, "Test bandwidth: %f kb/s\n",
199            4 * TOTAL_PACKETS * 1.0 / (total_time.rel_value_us / 1000)); // 4bytes * ms
200   FPRINTF (stderr, "Test throughput: %f packets/s\n\n",
201            TOTAL_PACKETS * 1000.0 / (total_time.rel_value_us / 1000)); // packets * ms
202   GAUGER ("MESH", test_name,
203           TOTAL_PACKETS * 1000.0 / (total_time.rel_value_us / 1000),
204           "packets/s");
205 }
206
207
208 /**
209  * Shut down peergroup, clean up.
210  * 
211  * @param cls Closure (unused).
212  * @param tc Task Context.
213  */
214 static void
215 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
216 {
217   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Ending test.\n");
218   shutdown_handle = GNUNET_SCHEDULER_NO_TASK;
219 }
220
221
222 /**
223  * Disconnect from mesh services af all peers, call shutdown.
224  * 
225  * @param cls Closure (unused).
226  * @param tc Task Context.
227  */
228 static void
229 disconnect_mesh_peers (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
230 {
231   long line = (long) cls;
232   unsigned int i;
233
234   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
235               "disconnecting mesh service of peers, called from line %ld\n",
236               line);
237   disconnect_task = GNUNET_SCHEDULER_NO_TASK;
238   for (i = 0; i < 2; i++)
239   {
240     GNUNET_TESTBED_operation_done (t_op[i]);
241   }
242   if (NULL != ch)
243   {
244     GNUNET_MESH_channel_destroy (ch);
245     ch = NULL;
246   }
247   if (NULL != incoming_ch)
248   {
249     GNUNET_MESH_channel_destroy (incoming_ch);
250     incoming_ch = NULL;
251   }
252   GNUNET_MESH_TEST_cleanup (test_ctx);
253   if (GNUNET_SCHEDULER_NO_TASK != shutdown_handle)
254   {
255     GNUNET_SCHEDULER_cancel (shutdown_handle);
256   }
257   shutdown_handle = GNUNET_SCHEDULER_add_now (&shutdown_task, NULL);
258 }
259
260
261 /**
262  * Abort test: schedule disconnect and shutdown immediately
263  * 
264  * @param line Line in the code the abort is requested from (__LINE__).
265  */
266 static void
267 abort_test (long line)
268 {
269   if (disconnect_task != GNUNET_SCHEDULER_NO_TASK)
270   {
271     GNUNET_SCHEDULER_cancel (disconnect_task);
272     disconnect_task = GNUNET_SCHEDULER_add_now (&disconnect_mesh_peers,
273                                                 (void *) line);
274   }
275 }
276
277 /**
278  * Transmit ready callback.
279  * 
280  * @param cls Closure (message type).
281  * @param size Size of the tranmist buffer.
282  * @param buf Pointer to the beginning of the buffer.
283  * 
284  * @return Number of bytes written to buf.
285  */
286 static size_t
287 tmt_rdy (void *cls, size_t size, void *buf);
288
289
290 /**
291  * Task to schedule a new data transmission.
292  * 
293  * @param cls Closure (peer #).
294  * @param tc Task Context.
295  */
296 static void
297 data_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
298 {
299   struct GNUNET_MESH_TransmitHandle *th;
300   struct GNUNET_MESH_Channel *channel;
301
302   if ((GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason) != 0)
303     return;
304
305   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Data task\n");
306   if (GNUNET_YES == test_backwards)
307   {
308     channel = incoming_ch;
309   }
310   else
311   {
312     channel = ch;
313   }
314   th = GNUNET_MESH_notify_transmit_ready (channel, GNUNET_NO,
315                                           GNUNET_TIME_UNIT_FOREVER_REL,
316                                           size_payload, &tmt_rdy, (void *) 1L);
317   if (NULL == th)
318   {
319     unsigned long i = (unsigned long) cls;
320
321     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Retransmission\n");
322     if (0 == i)
323     {
324       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "  in 1 ms\n");
325       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MILLISECONDS,
326                                     &data_task, (void *)1UL);
327     }
328     else
329     {
330       i++;
331       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "in %u ms\n", i);
332       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply(
333                                       GNUNET_TIME_UNIT_MILLISECONDS,
334                                       i),
335                                     &data_task, (void *)i);
336     }
337   }
338 }
339
340
341 /**
342  * Transmit ready callback
343  *
344  * @param cls Closure (message type).
345  * @param size Size of the buffer we have.
346  * @param buf Buffer to copy data to.
347  */
348 size_t
349 tmt_rdy (void *cls, size_t size, void *buf)
350 {
351   struct GNUNET_MessageHeader *msg = buf;
352   uint32_t *data;
353
354   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
355               " tmt_rdy called\n");
356   if (size < size_payload || NULL == buf)
357   {
358     GNUNET_break (0);
359     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
360                 "size %u, buf %p, data_sent %u, data_received %u\n",
361                 size,
362                 buf,
363                 data_sent,
364                 data_received);
365     return 0;
366   }
367   msg->size = htons (size);
368   msg->type = htons ((long) cls);
369   data = (uint32_t *) &msg[1];
370   *data = htonl (data_sent);
371   if (SPEED == test && GNUNET_YES == initialized)
372   {
373     data_sent++;
374     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
375               " Sent packet %d\n", data_sent);
376     if (data_sent < TOTAL_PACKETS)
377     {
378       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
379               " Scheduling packet %d\n", data_sent + 1);
380       GNUNET_SCHEDULER_add_now(&data_task, NULL);
381     }
382   }
383   return size_payload;
384 }
385
386
387 /**
388  * Function is called whenever a message is received.
389  *
390  * @param cls closure (set from GNUNET_MESH_connect)
391  * @param channel connection to the other end
392  * @param channel_ctx place to store local state associated with the channel
393  * @param message the actual message
394  * @return GNUNET_OK to keep the connection open,
395  *         GNUNET_SYSERR to close it (signal serious error)
396  */
397 int
398 data_callback (void *cls, struct GNUNET_MESH_Channel *channel,
399                void **channel_ctx,
400                const struct GNUNET_MessageHeader *message)
401 {
402   long client = (long) cls;
403   long expected_target_client;
404   uint32_t *data;
405
406   ok++;
407
408   GNUNET_MESH_receive_done (channel);
409
410   if ((ok % 20) == 0)
411   {
412     if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
413     {
414       GNUNET_SCHEDULER_cancel (disconnect_task);
415       disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
416                                                       &disconnect_mesh_peers,
417                                                       (void *) __LINE__);
418     }
419   }
420
421   switch (client)
422   {
423   case 0L:
424     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Root client got a message!\n");
425     break;
426   case 4L:
427     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
428                 "Leaf client %li got a message.\n",
429                 client);
430     break;
431   default:
432     GNUNET_assert (0);
433     break;
434   }
435   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " ok: (%d/%d)\n", ok, ok_goal);
436   data = (uint32_t *) &message[1];
437   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " payload: (%u)\n", ntohl (*data));
438   if (SPEED == test && GNUNET_YES == test_backwards)
439   {
440     expected_target_client = 0L;
441   }
442   else
443   {
444     expected_target_client = 4L;
445   }
446
447   if (GNUNET_NO == initialized)
448   {
449     initialized = GNUNET_YES;
450     start_time = GNUNET_TIME_absolute_get ();
451     if (SPEED == test)
452     {
453       GNUNET_assert (4L == client);
454       GNUNET_SCHEDULER_add_now (&data_task, NULL);
455       return GNUNET_OK;
456     }
457   }
458
459   if (client == expected_target_client) // Normally 4
460   {
461     data_received++;
462     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
463                 " received data %u\n", data_received);
464     if (SPEED != test || (ok_goal - 2) == ok)
465     {
466       GNUNET_MESH_notify_transmit_ready (channel, GNUNET_NO,
467                                          GNUNET_TIME_UNIT_FOREVER_REL,
468                                          size_payload, &tmt_rdy, (void *) 1L);
469       return GNUNET_OK;
470     }
471     else
472     {
473       if (data_received < TOTAL_PACKETS)
474         return GNUNET_OK;
475     }
476   }
477   else // Normally 0
478   {
479     if (test == SPEED_ACK || test == SPEED)
480     {
481       data_ack++;
482       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
483               " received ack %u\n", data_ack);
484       GNUNET_MESH_notify_transmit_ready (channel, GNUNET_NO,
485                                          GNUNET_TIME_UNIT_FOREVER_REL,
486                                          size_payload, &tmt_rdy, (void *) 1L);
487       if (data_ack < TOTAL_PACKETS && SPEED != test)
488         return GNUNET_OK;
489       if (ok == 2 && SPEED == test)
490         return GNUNET_OK;
491       show_end_data();
492     }
493     if (test == P2P_SIGNAL)
494     {
495       GNUNET_MESH_channel_destroy (incoming_ch);
496       incoming_ch = NULL;
497     }
498     else
499     {
500       GNUNET_MESH_channel_destroy (ch);
501       ch = NULL;
502     }
503   }
504
505   if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
506   {
507     GNUNET_SCHEDULER_cancel (disconnect_task);
508     disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
509                                                     &disconnect_mesh_peers,
510                                                     (void *) __LINE__);
511   }
512
513   return GNUNET_OK;
514 }
515
516
517 /**
518  * Handlers, for diverse services
519  */
520 static struct GNUNET_MESH_MessageHandler handlers[] = {
521   {&data_callback, 1, sizeof (struct GNUNET_MessageHeader)},
522   {NULL, 0, 0}
523 };
524
525
526 /**
527  * Method called whenever another peer has added us to a channel
528  * the other peer initiated.
529  *
530  * @param cls Closure.
531  * @param channel New handle to the channel.
532  * @param initiator Peer that started the channel.
533  * @param port Port this channel is connected to.
534  * @return Initial channel context for the channel
535  *         (can be NULL -- that's not an error).
536  */
537 static void *
538 incoming_channel (void *cls, struct GNUNET_MESH_Channel *channel,
539                  const struct GNUNET_PeerIdentity *initiator,
540                  uint32_t port)
541 {
542   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
543               "Incoming channel from %s to peer %d\n",
544               GNUNET_i2s (initiator), (long) cls);
545   ok++;
546   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " ok: %d\n", ok);
547   if ((long) cls == 4L)
548     incoming_ch = channel;
549   else
550   {
551     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
552                 "Incoming channel for unknown client %lu\n", (long) cls);
553     GNUNET_break(0);
554   }
555   if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
556   {
557     GNUNET_SCHEDULER_cancel (disconnect_task);
558     disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
559                                                     &disconnect_mesh_peers,
560                                                     (void *) __LINE__);
561   }
562
563   return NULL;
564 }
565
566 /**
567  * Function called whenever an inbound channel is destroyed.  Should clean up
568  * any associated state.
569  *
570  * @param cls closure (set from GNUNET_MESH_connect)
571  * @param channel connection to the other end (henceforth invalid)
572  * @param channel_ctx place where local state associated
573  *                   with the channel is stored
574  */
575 static void
576 channel_cleaner (void *cls, const struct GNUNET_MESH_Channel *channel,
577                  void *channel_ctx)
578 {
579   long i = (long) cls;
580
581   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
582               "Incoming channel disconnected at peer %d\n",
583               i);
584   if (4L == i)
585   {
586     ok++;
587     incoming_ch = NULL;
588   }
589   else if (0L == i && P2P_SIGNAL == test)
590   {
591     ok ++;
592     ch = NULL;
593   }
594   else
595     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
596                 "Unknown peer! %d\n", i);
597   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " ok: %d\n", ok);
598
599   if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
600   {
601     GNUNET_SCHEDULER_cancel (disconnect_task);
602     disconnect_task = GNUNET_SCHEDULER_add_now (&disconnect_mesh_peers,
603                                                 (void *) __LINE__);
604   }
605
606   return;
607 }
608
609
610 /**
611  * START THE TESTCASE ITSELF, AS WE ARE CONNECTED TO THE MESH SERVICES.
612  * 
613  * Testcase continues when the root receives confirmation of connected peers,
614  * on callback funtion ch.
615  * 
616  * @param cls Closure (unsued).
617  * @param tc Task Context.
618  */
619 static void
620 do_test (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
621 {
622   int nobuf;
623   int rel;
624
625   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test_task\n");
626   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "add peer 2\n");
627
628   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
629               "schedule timeout in TIMEOUT\n");
630   if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
631   {
632     GNUNET_SCHEDULER_cancel (disconnect_task);
633   }
634   if (SPEED_NOBUF == test)
635   {
636     test = SPEED;
637     nobuf = GNUNET_YES;
638   }
639   else
640     nobuf = GNUNET_NO;
641
642   if (SPEED_REL == test)
643   {
644     test = SPEED;
645     rel = GNUNET_YES;
646   }
647   else
648     rel = GNUNET_NO;
649   ch = GNUNET_MESH_channel_create (h1, NULL, p_id[1], 1, nobuf, rel);
650
651   disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
652                                                   &disconnect_mesh_peers,
653                                                   (void *) __LINE__);
654   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
655               "Sending data initializer...\n");
656   data_ack = 0;
657   data_received = 0;
658   data_sent = 0;
659   GNUNET_MESH_notify_transmit_ready (ch, GNUNET_NO,
660                                      GNUNET_TIME_UNIT_FOREVER_REL, 
661                                      size_payload, &tmt_rdy, (void *) 1L);
662 }
663
664 /**
665  * Callback to be called when the requested peer information is available
666  *
667  * @param cls the closure from GNUNET_TESTBED_peer_get_information()
668  * @param op the operation this callback corresponds to
669  * @param pinfo the result; will be NULL if the operation has failed
670  * @param emsg error message if the operation has failed;
671  *             NULL if the operation is successfull
672  */
673 static void
674 pi_cb (void *cls,
675        struct GNUNET_TESTBED_Operation *op,
676        const struct GNUNET_TESTBED_PeerInformation *pinfo,
677        const char *emsg)
678 {
679   long i = (long) cls;
680
681   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "id callback for %ld\n", i);
682
683   if (NULL == pinfo || NULL != emsg)
684   {
685     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "pi_cb: %s\n", emsg);
686     abort_test (__LINE__);
687     return;
688   }
689   p_id[i] = pinfo->result.id;
690   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  id: %s\n", GNUNET_i2s (p_id[i]));
691   p_ids++;
692   if (p_ids < 2)
693     return;
694   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got all IDs, starting test\n");
695   test_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
696                                             &do_test, NULL);
697 }
698
699 /**
700  * test main: start test when all peers are connected
701  *
702  * @param cls Closure.
703  * @param ctx Argument to give to GNUNET_MESH_TEST_cleanup on test end.
704  * @param num_peers Number of peers that are running.
705  * @param peers Array of peers.
706  * @param meshes Handle to each of the MESHs of the peers.
707  */
708 static void
709 tmain (void *cls,
710        struct GNUNET_MESH_TEST_Context *ctx,
711        unsigned int num_peers,
712        struct GNUNET_TESTBED_Peer **peers,
713        struct GNUNET_MESH_Handle **meshes)
714 {
715   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test main\n");
716   ok = 0;
717   test_ctx = ctx;
718   peers_running = num_peers;
719   h1 = meshes[0];
720   h2 = meshes[num_peers - 1];
721   disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
722                                                   &disconnect_mesh_peers,
723                                                   (void *) __LINE__);
724   shutdown_handle = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
725                                                   &shutdown_task, NULL);
726   t_op[0] = GNUNET_TESTBED_peer_get_information (peers[0],
727                                                  GNUNET_TESTBED_PIT_IDENTITY,
728                                                  &pi_cb, (void *) 0L);
729   t_op[1] = GNUNET_TESTBED_peer_get_information (peers[num_peers - 1],
730                                                  GNUNET_TESTBED_PIT_IDENTITY,
731                                                  &pi_cb, (void *) 1L);
732   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "requested peer ids\n");
733 }
734
735
736 /**
737  * Main: start test
738  */
739 int
740 main (int argc, char *argv[])
741 {
742   initialized = GNUNET_NO;
743   uint32_t ports[2];
744   const char *config_file;
745
746   GNUNET_log_setup ("test", "DEBUG", NULL);
747   config_file = "test_mesh.conf";
748
749   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Start\n");
750   if (strstr (argv[0], "_small_forward") != NULL)
751   {
752     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "FORWARD\n");
753     test = FORWARD;
754     test_name = "unicast";
755     ok_goal = 4;
756   }
757   else if (strstr (argv[0], "_small_signal") != NULL)
758   {
759     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "SIGNAL\n");
760     test = P2P_SIGNAL;
761     test_name = "signal";
762     ok_goal = 4;
763   }
764   else if (strstr (argv[0], "_small_speed_ack") != NULL)
765   {
766    /* Each peer is supposed to generate the following callbacks:
767     * 1 incoming channel (@dest)
768     * TOTAL_PACKETS received data packet (@dest)
769     * TOTAL_PACKETS received data packet (@orig)
770     * 1 received channel destroy (@dest)
771     * _________________________________
772     * 5 x ok expected per peer
773     */
774     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "SPEED_ACK\n");
775     test = SPEED_ACK;
776     test_name = "speed ack";
777     ok_goal = TOTAL_PACKETS * 2 + 2;
778   }
779   else if (strstr (argv[0], "_small_speed") != NULL)
780   {
781    /* Each peer is supposed to generate the following callbacks:
782     * 1 incoming channel (@dest)
783     * 1 initial packet (@dest)
784     * TOTAL_PACKETS received data packet (@dest)
785     * 1 received data packet (@orig)
786     * 1 received channel destroy (@dest)
787     * _________________________________
788     */
789     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "SPEED\n");
790     ok_goal = TOTAL_PACKETS + 4;
791     if (strstr (argv[0], "_nobuf") != NULL)
792     {
793       test = SPEED_NOBUF;
794       test_name = "speed nobuf";
795     }
796     else if (strstr (argv[0], "_reliable") != NULL)
797     {
798       test = SPEED_REL;
799       test_name = "speed reliable";
800       config_file = "test_mesh_drop.conf";
801     }
802     else
803     {
804       test = SPEED;
805       test_name = "speed";
806     }
807   }
808   else
809   {
810     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "UNKNOWN\n");
811     test = SETUP;
812     ok_goal = 0;
813   }
814
815   if (strstr (argv[0], "backwards") != NULL)
816   {
817     char *aux;
818
819     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "BACKWARDS (LEAF TO ROOT)\n");
820     test_backwards = GNUNET_YES;
821     aux = GNUNET_malloc (32);
822     sprintf (aux, "backwards %s", test_name);
823     test_name = aux;
824   }
825
826   p_ids = 0;
827   ports[0] = 1;
828   ports[1] = 0;
829   GNUNET_MESH_TEST_run ("test_mesh_small",
830                         config_file,
831                         5,
832                         &tmain,
833                         NULL, /* tmain cls */
834                         &incoming_channel,
835                         &channel_cleaner,
836                         handlers,
837                         ports);
838
839   if (ok_goal > ok)
840   {
841     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
842                 "FAILED! (%d/%d)\n", ok, ok_goal);
843     return 1;
844   }
845   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "success\n");
846   return 0;
847 }
848
849 /* end of test_mesh_small.c */
850