- fixes
[oweals/gnunet.git] / src / cadet / test_cadet.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 cadet/test_cadet.c
22  *
23  * @brief Test for the cadet service: retransmission of traffic.
24  */
25 #include <stdio.h>
26 #include "platform.h"
27 #include "cadet_test_lib.h"
28 #include "gnunet_cadet_service.h"
29 #include "gnunet_statistics_service.h"
30 #include <gauger.h>
31
32
33 /**
34  * How namy messages to send
35  */
36 #define TOTAL_PACKETS 100
37
38 /**
39  * How long until we give up on connecting the peers?
40  */
41 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 120)
42
43 /**
44  * Time to wait for stuff that should be rather fast
45  */
46 #define SHORT_TIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
47
48 /**
49  * DIFFERENT TESTS TO RUN
50  */
51 #define SETUP 0
52 #define FORWARD 1
53 #define KEEPALIVE 2
54 #define SPEED 3
55 #define SPEED_ACK 4
56 #define SPEED_REL 8
57 #define P2P_SIGNAL 10
58
59 /**
60  * Which test are we running?
61  */
62 static int test;
63
64 /**
65  * String with test name
66  */
67 char *test_name;
68
69 /**
70  * Flag to send traffic leaf->root in speed tests to test BCK_ACK logic.
71  */
72 static int test_backwards = GNUNET_NO;
73
74 /**
75  * How many events have happened
76  */
77 static int ok;
78
79 /**
80  * Number of events expected to conclude the test successfully.
81  */
82 int ok_goal;
83
84 /**
85  * Size of each test packet
86  */
87 size_t size_payload = sizeof (struct GNUNET_MessageHeader) + sizeof (uint32_t);
88
89 /**
90  * Operation to get peer ids.
91  */
92 struct GNUNET_TESTBED_Operation *t_op[2];
93
94 /**
95  * Peer ids.
96  */
97 struct GNUNET_PeerIdentity *p_id[2];
98
99 /**
100  * Peer ids counter.
101  */
102 unsigned int p_ids;
103
104 /**
105  * Is the setup initialized?
106  */
107 static int initialized;
108
109 /**
110  * Number of payload packes sent
111  */
112 static int data_sent;
113
114 /**
115  * Number of payload packets received
116  */
117 static int data_received;
118
119 /**
120  * Number of payload packed explicitly (app level) acknowledged
121  */
122 static int data_ack;
123
124 /**
125  * Total number of peers asked to run.
126  */
127 static unsigned long long peers_requested;
128
129 /**
130  * Number of currently running peers (should be same as @c peers_requested).
131  */
132 static unsigned long long peers_running;
133
134 /**
135  * Test context (to shut down).
136  */
137 struct GNUNET_CADET_TEST_Context *test_ctx;
138
139 /**
140  * Task called to disconnect peers.
141  */
142 static GNUNET_SCHEDULER_TaskIdentifier disconnect_task;
143
144 /**
145  * Task To perform tests
146  */
147 static GNUNET_SCHEDULER_TaskIdentifier test_task;
148
149 /**
150  * Task called to shutdown test.
151  */
152 static GNUNET_SCHEDULER_TaskIdentifier shutdown_handle;
153
154 /**
155  * Cadet handle for the root peer
156  */
157 static struct GNUNET_CADET_Handle *h1;
158
159 /**
160  * Cadet handle for the first leaf peer
161  */
162 static struct GNUNET_CADET_Handle *h2;
163
164 /**
165  * Channel handle for the root peer
166  */
167 static struct GNUNET_CADET_Channel *ch;
168
169 /**
170  * Channel handle for the dest peer
171  */
172 static struct GNUNET_CADET_Channel *incoming_ch;
173
174 /**
175  * Time we started the data transmission (after channel has been established
176  * and initilized).
177  */
178 static struct GNUNET_TIME_Absolute start_time;
179
180 /**
181  * Peers handle.
182  */
183 static struct GNUNET_TESTBED_Peer **testbed_peers;
184
185 /**
186  * Statistics operation handle.
187  */
188 static struct GNUNET_TESTBED_Operation *stats_op;
189
190 /**
191  * Keepalives sent.
192  */
193 static unsigned int ka_sent;
194
195 /**
196  * Keepalives received.
197  */
198 static unsigned int ka_received;
199
200
201 /**
202  * Show the results of the test (banwidth acheived) and log them to GAUGER
203  */
204 static void
205 show_end_data (void)
206 {
207   static struct GNUNET_TIME_Absolute end_time;
208   static struct GNUNET_TIME_Relative total_time;
209
210   end_time = GNUNET_TIME_absolute_get();
211   total_time = GNUNET_TIME_absolute_get_difference(start_time, end_time);
212   FPRINTF (stderr, "\nResults of test \"%s\"\n", test_name);
213   FPRINTF (stderr, "Test time %s\n",
214            GNUNET_STRINGS_relative_time_to_string (total_time,
215                                                    GNUNET_YES));
216   FPRINTF (stderr, "Test bandwidth: %f kb/s\n",
217            4 * TOTAL_PACKETS * 1.0 / (total_time.rel_value_us / 1000)); // 4bytes * ms
218   FPRINTF (stderr, "Test throughput: %f packets/s\n\n",
219            TOTAL_PACKETS * 1000.0 / (total_time.rel_value_us / 1000)); // packets * ms
220   GAUGER ("CADET", test_name,
221           TOTAL_PACKETS * 1000.0 / (total_time.rel_value_us / 1000),
222           "packets/s");
223 }
224
225
226 /**
227  * Shut down peergroup, clean up.
228  *
229  * @param cls Closure (unused).
230  * @param tc Task Context.
231  */
232 static void
233 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
234 {
235   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Ending test.\n");
236   shutdown_handle = GNUNET_SCHEDULER_NO_TASK;
237 }
238
239
240 /**
241  * Disconnect from cadet services af all peers, call shutdown.
242  *
243  * @param cls Closure (unused).
244  * @param tc Task Context.
245  */
246 static void
247 disconnect_cadet_peers (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
248 {
249   long line = (long) cls;
250   unsigned int i;
251
252   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
253               "disconnecting cadet service of peers, called from line %ld\n",
254               line);
255   disconnect_task = GNUNET_SCHEDULER_NO_TASK;
256   for (i = 0; i < 2; i++)
257   {
258     GNUNET_TESTBED_operation_done (t_op[i]);
259   }
260   if (NULL != ch)
261   {
262     GNUNET_CADET_channel_destroy (ch);
263     ch = NULL;
264   }
265   if (NULL != incoming_ch)
266   {
267     GNUNET_CADET_channel_destroy (incoming_ch);
268     incoming_ch = NULL;
269   }
270   GNUNET_CADET_TEST_cleanup (test_ctx);
271   if (GNUNET_SCHEDULER_NO_TASK != shutdown_handle)
272   {
273     GNUNET_SCHEDULER_cancel (shutdown_handle);
274   }
275   shutdown_handle = GNUNET_SCHEDULER_add_now (&shutdown_task, NULL);
276 }
277
278
279 /**
280  * Abort test: schedule disconnect and shutdown immediately
281  *
282  * @param line Line in the code the abort is requested from (__LINE__).
283  */
284 static void
285 abort_test (long line)
286 {
287   if (disconnect_task != GNUNET_SCHEDULER_NO_TASK)
288   {
289     GNUNET_SCHEDULER_cancel (disconnect_task);
290     disconnect_task = GNUNET_SCHEDULER_add_now (&disconnect_cadet_peers,
291                                                 (void *) line);
292   }
293 }
294
295 /**
296  * Transmit ready callback.
297  *
298  * @param cls Closure (message type).
299  * @param size Size of the tranmist buffer.
300  * @param buf Pointer to the beginning of the buffer.
301  *
302  * @return Number of bytes written to buf.
303  */
304 static size_t
305 tmt_rdy (void *cls, size_t size, void *buf);
306
307
308 /**
309  * Task to schedule a new data transmission.
310  *
311  * @param cls Closure (peer #).
312  * @param tc Task Context.
313  */
314 static void
315 data_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
316 {
317   struct GNUNET_CADET_TransmitHandle *th;
318   struct GNUNET_CADET_Channel *channel;
319
320   if ((GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason) != 0)
321     return;
322
323   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Data task\n");
324   if (GNUNET_YES == test_backwards)
325   {
326     channel = incoming_ch;
327   }
328   else
329   {
330     channel = ch;
331   }
332   th = GNUNET_CADET_notify_transmit_ready (channel, GNUNET_NO,
333                                           GNUNET_TIME_UNIT_FOREVER_REL,
334                                           size_payload, &tmt_rdy, (void *) 1L);
335   if (NULL == th)
336   {
337     unsigned long i = (unsigned long) cls;
338
339     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Retransmission\n");
340     if (0 == i)
341     {
342       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "  in 1 ms\n");
343       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MILLISECONDS,
344                                     &data_task, (void *)1UL);
345     }
346     else
347     {
348       i++;
349       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "in %u ms\n", i);
350       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply(
351                                       GNUNET_TIME_UNIT_MILLISECONDS,
352                                       i),
353                                     &data_task, (void *)i);
354     }
355   }
356 }
357
358
359 /**
360  * Transmit ready callback
361  *
362  * @param cls Closure (unused).
363  * @param size Size of the buffer we have.
364  * @param buf Buffer to copy data to.
365  */
366 size_t
367 tmt_rdy (void *cls, size_t size, void *buf)
368 {
369   struct GNUNET_MessageHeader *msg = buf;
370   size_t msg_size;
371   uint32_t *data;
372
373   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
374               "tmt_rdy called, filling buffer\n");
375   msg_size = size_payload + data_sent;
376   if (size < msg_size || NULL == buf)
377   {
378     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
379                 "size %u, buf %p, data_sent %u, data_received %u\n",
380                 size, buf, data_sent, data_received);
381     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ok %u, ok goal %u\n", ok, ok_goal);
382     GNUNET_break (ok >= ok_goal - 2);
383
384     return 0;
385   }
386   msg->size = htons (size);
387   msg->type = htons ((long) cls);
388   data = (uint32_t *) &msg[1];
389   *data = htonl (data_sent);
390   if (GNUNET_NO == initialized)
391   {
392     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "sending initializer\n");
393   }
394   else if (SPEED == test)
395   {
396     data_sent++;
397     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " Sent message %d size %u\n",
398                 data_sent, msg_size);
399     if (data_sent < TOTAL_PACKETS)
400     {
401       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " Scheduling message %d\n",
402                   data_sent + 1);
403       GNUNET_SCHEDULER_add_now (&data_task, NULL);
404     }
405   }
406
407   return msg_size;
408 }
409
410
411 /**
412  * Function is called whenever a message is received.
413  *
414  * @param cls closure (set from GNUNET_CADET_connect)
415  * @param channel connection to the other end
416  * @param channel_ctx place to store local state associated with the channel
417  * @param message the actual message
418  * @return GNUNET_OK to keep the connection open,
419  *         GNUNET_SYSERR to close it (signal serious error)
420  */
421 int
422 data_callback (void *cls, struct GNUNET_CADET_Channel *channel,
423                void **channel_ctx,
424                const struct GNUNET_MessageHeader *message)
425 {
426   long client = (long) cls;
427   long expected_target_client;
428   uint32_t *data;
429
430   ok++;
431
432   GNUNET_CADET_receive_done (channel);
433
434   if ((ok % 20) == 0)
435   {
436     if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
437     {
438       GNUNET_SCHEDULER_cancel (disconnect_task);
439       disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
440                                                       &disconnect_cadet_peers,
441                                                       (void *) __LINE__);
442     }
443   }
444
445   switch (client)
446   {
447   case 0L:
448     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Root client got a message!\n");
449     break;
450   case 1L:
451   case 4L:
452     GNUNET_assert (client == peers_requested - 1);
453     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
454                 "Leaf client %li got a message.\n",
455                 client);
456     break;
457   default:
458     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Client %li not valid.\n", client);
459     GNUNET_abort ();
460     break;
461   }
462   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " ok: (%d/%d)\n", ok, ok_goal);
463   data = (uint32_t *) &message[1];
464   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " payload: (%u)\n", ntohl (*data));
465   if (SPEED == test && GNUNET_YES == test_backwards)
466   {
467     expected_target_client = 0L;
468   }
469   else
470   {
471     expected_target_client = 4L;
472   }
473
474   if (GNUNET_NO == initialized)
475   {
476     initialized = GNUNET_YES;
477     start_time = GNUNET_TIME_absolute_get ();
478     if (SPEED == test)
479     {
480       GNUNET_assert (4L == client);
481       GNUNET_SCHEDULER_add_now (&data_task, NULL);
482       return GNUNET_OK;
483     }
484   }
485
486   if (client == expected_target_client) // Normally 4
487   {
488     data_received++;
489     GNUNET_log (GNUNET_ERROR_TYPE_INFO, " received data %u\n", data_received);
490     if (SPEED != test || (ok_goal - 2) == ok)
491     {
492       GNUNET_CADET_notify_transmit_ready (channel, GNUNET_NO,
493                                          GNUNET_TIME_UNIT_FOREVER_REL,
494                                          size_payload, &tmt_rdy, (void *) 1L);
495       return GNUNET_OK;
496     }
497     else
498     {
499       if (data_received < TOTAL_PACKETS)
500         return GNUNET_OK;
501     }
502   }
503   else // Normally 0
504   {
505     if (test == SPEED_ACK || test == SPEED)
506     {
507       data_ack++;
508       GNUNET_log (GNUNET_ERROR_TYPE_INFO, " received ack %u\n", data_ack);
509       GNUNET_CADET_notify_transmit_ready (channel, GNUNET_NO,
510                                          GNUNET_TIME_UNIT_FOREVER_REL,
511                                          size_payload, &tmt_rdy, (void *) 1L);
512       if (data_ack < TOTAL_PACKETS && SPEED != test)
513         return GNUNET_OK;
514       if (ok == 2 && SPEED == test)
515         return GNUNET_OK;
516       show_end_data();
517     }
518     if (test == P2P_SIGNAL)
519     {
520       GNUNET_CADET_channel_destroy (incoming_ch);
521       incoming_ch = NULL;
522     }
523     else
524     {
525       GNUNET_CADET_channel_destroy (ch);
526       ch = NULL;
527     }
528   }
529
530   if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
531   {
532     GNUNET_SCHEDULER_cancel (disconnect_task);
533     disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
534                                                     &disconnect_cadet_peers,
535                                                     (void *) __LINE__);
536   }
537
538   return GNUNET_OK;
539 }
540
541
542 /**
543  * Stats callback. Finish the stats testbed operation and when all stats have
544  * been iterated, shutdown the test.
545  *
546  * @param cls closure
547  * @param op the operation that has been finished
548  * @param emsg error message in case the operation has failed; will be NULL if
549  *          operation has executed successfully.
550  */
551 static void
552 stats_cont (void *cls, struct GNUNET_TESTBED_Operation *op, const char *emsg)
553 {
554   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "stats_cont for peer %u\n", cls);
555   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " sent: %u, received: %u\n",
556               ka_sent, ka_received);
557   if (ka_sent < 2 || ka_sent > ka_received + 1)
558     ok--;
559   GNUNET_TESTBED_operation_done (stats_op);
560
561   if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
562     GNUNET_SCHEDULER_cancel (disconnect_task);
563   disconnect_task = GNUNET_SCHEDULER_add_now (&disconnect_cadet_peers,
564                                               (void *) __LINE__);
565
566 }
567
568
569 /**
570  * Process statistic values.
571  *
572  * @param cls closure
573  * @param peer the peer the statistic belong to
574  * @param subsystem name of subsystem that created the statistic
575  * @param name the name of the datum
576  * @param value the current value
577  * @param is_persistent GNUNET_YES if the value is persistent, GNUNET_NO if not
578  * @return GNUNET_OK to continue, GNUNET_SYSERR to abort iteration
579  */
580 static int
581 stats_iterator (void *cls, const struct GNUNET_TESTBED_Peer *peer,
582                 const char *subsystem, const char *name,
583                 uint64_t value, int is_persistent)
584 {
585   static const char *s_sent = "# keepalives sent";
586   static const char *s_recv = "# keepalives received";
587   uint32_t i;
588
589   i = GNUNET_TESTBED_get_index (peer);
590   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  %u - %s [%s]: %llu\n",
591               i, subsystem, name, value);
592   if (0 == strncmp (s_sent, name, strlen (s_sent)) && 0 == i)
593     ka_sent = value;
594
595   if (0 == strncmp(s_recv, name, strlen (s_recv)) && 4 == i)
596     ka_received = value;
597
598   return GNUNET_OK;
599 }
600
601
602 /**
603  * Task check that keepalives were sent and received.
604  *
605  * @param cls Closure (NULL).
606  * @param tc Task Context.
607  */
608 static void
609 check_keepalives (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
610 {
611   if ((GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason) != 0)
612     return;
613
614   disconnect_task = GNUNET_SCHEDULER_NO_TASK;
615   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "check keepalives\n");
616   GNUNET_CADET_channel_destroy (ch);
617   stats_op = GNUNET_TESTBED_get_statistics (5, testbed_peers,
618                                             "cadet", NULL,
619                                             stats_iterator, stats_cont, NULL);
620 }
621
622
623 /**
624  * Handlers, for diverse services
625  */
626 static struct GNUNET_CADET_MessageHandler handlers[] = {
627   {&data_callback, 1, sizeof (struct GNUNET_MessageHeader)},
628   {NULL, 0, 0}
629 };
630
631
632 /**
633  * Method called whenever another peer has added us to a channel
634  * the other peer initiated.
635  *
636  * @param cls Closure.
637  * @param channel New handle to the channel.
638  * @param initiator Peer that started the channel.
639  * @param port Port this channel is connected to.
640  * @param options channel option flags
641  * @return Initial channel context for the channel
642  *         (can be NULL -- that's not an error).
643  */
644 static void *
645 incoming_channel (void *cls, struct GNUNET_CADET_Channel *channel,
646                  const struct GNUNET_PeerIdentity *initiator,
647                  uint32_t port, enum GNUNET_CADET_ChannelOption options)
648 {
649   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
650               "Incoming channel from %s to peer %d\n",
651               GNUNET_i2s (initiator), (long) cls);
652   ok++;
653   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " ok: %d\n", ok);
654   if ((long) cls == peers_requested - 1)
655     incoming_ch = channel;
656   else
657   {
658     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
659                 "Incoming channel for unknown client %lu\n", (long) cls);
660     GNUNET_break(0);
661   }
662   if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
663   {
664     GNUNET_SCHEDULER_cancel (disconnect_task);
665     if (KEEPALIVE == test)
666     {
667       struct GNUNET_TIME_Relative delay;
668       delay = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS , 5);
669       disconnect_task =
670         GNUNET_SCHEDULER_add_delayed (delay, &check_keepalives, NULL);
671     }
672     else
673       disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
674                                                       &disconnect_cadet_peers,
675                                                       (void *) __LINE__);
676   }
677
678   return NULL;
679 }
680
681 /**
682  * Function called whenever an inbound channel is destroyed.  Should clean up
683  * any associated state.
684  *
685  * @param cls closure (set from GNUNET_CADET_connect)
686  * @param channel connection to the other end (henceforth invalid)
687  * @param channel_ctx place where local state associated
688  *                   with the channel is stored
689  */
690 static void
691 channel_cleaner (void *cls, const struct GNUNET_CADET_Channel *channel,
692                  void *channel_ctx)
693 {
694   long i = (long) cls;
695
696   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
697               "Incoming channel disconnected at peer %ld\n", i);
698   if (peers_running - 1 == i)
699   {
700     ok++;
701     GNUNET_break (channel == incoming_ch);
702     incoming_ch = NULL;
703   }
704   else if (0L == i)
705   {
706     if (P2P_SIGNAL == test)
707     {
708       ok ++;
709     }
710     GNUNET_break (channel == ch);
711     ch = NULL;
712   }
713   else
714     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
715                 "Unknown peer! %d\n", i);
716   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " ok: %d\n", ok);
717
718   if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
719   {
720     GNUNET_SCHEDULER_cancel (disconnect_task);
721     disconnect_task = GNUNET_SCHEDULER_add_now (&disconnect_cadet_peers,
722                                                 (void *) __LINE__);
723   }
724
725   return;
726 }
727
728
729 /**
730  * START THE TESTCASE ITSELF, AS WE ARE CONNECTED TO THE CADET SERVICES.
731  *
732  * Testcase continues when the root receives confirmation of connected peers,
733  * on callback funtion ch.
734  *
735  * @param cls Closure (unsued).
736  * @param tc Task Context.
737  */
738 static void
739 do_test (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
740 {
741   enum GNUNET_CADET_ChannelOption flags;
742
743   if ((GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason) != 0)
744     return;
745
746   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test_task\n");
747
748   if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
749   {
750     GNUNET_SCHEDULER_cancel (disconnect_task);
751   }
752
753   flags = GNUNET_CADET_OPTION_DEFAULT;
754   if (SPEED_REL == test)
755   {
756     test = SPEED;
757     flags |= GNUNET_CADET_OPTION_RELIABLE;
758   }
759   ch = GNUNET_CADET_channel_create (h1, NULL, p_id[1], 1, flags);
760
761   disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
762                                                   &disconnect_cadet_peers,
763                                                   (void *) __LINE__);
764   if (KEEPALIVE == test)
765     return; /* Don't send any data. */
766
767   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
768               "Sending data initializer...\n");
769   data_ack = 0;
770   data_received = 0;
771   data_sent = 0;
772   GNUNET_CADET_notify_transmit_ready (ch, GNUNET_NO,
773                                      GNUNET_TIME_UNIT_FOREVER_REL,
774                                      size_payload, &tmt_rdy, (void *) 1L);
775 }
776
777 /**
778  * Callback to be called when the requested peer information is available
779  *
780  * @param cls the closure from GNUNET_TESTBED_peer_get_information()
781  * @param op the operation this callback corresponds to
782  * @param pinfo the result; will be NULL if the operation has failed
783  * @param emsg error message if the operation has failed;
784  *             NULL if the operation is successfull
785  */
786 static void
787 pi_cb (void *cls,
788        struct GNUNET_TESTBED_Operation *op,
789        const struct GNUNET_TESTBED_PeerInformation *pinfo,
790        const char *emsg)
791 {
792   long i = (long) cls;
793
794   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "id callback for %ld\n", i);
795
796   if (NULL == pinfo || NULL != emsg)
797   {
798     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "pi_cb: %s\n", emsg);
799     abort_test (__LINE__);
800     return;
801   }
802   p_id[i] = pinfo->result.id;
803   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  id: %s\n", GNUNET_i2s (p_id[i]));
804   p_ids++;
805   if (p_ids < 2)
806     return;
807   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got all IDs, starting test\n");
808   test_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
809                                             &do_test, NULL);
810 }
811
812 /**
813  * test main: start test when all peers are connected
814  *
815  * @param cls Closure.
816  * @param ctx Argument to give to GNUNET_CADET_TEST_cleanup on test end.
817  * @param num_peers Number of peers that are running.
818  * @param peers Array of peers.
819  * @param cadetes Handle to each of the CADETs of the peers.
820  */
821 static void
822 tmain (void *cls,
823        struct GNUNET_CADET_TEST_Context *ctx,
824        unsigned int num_peers,
825        struct GNUNET_TESTBED_Peer **peers,
826        struct GNUNET_CADET_Handle **cadets)
827 {
828   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test main\n");
829   ok = 0;
830   test_ctx = ctx;
831   peers_running = num_peers;
832   GNUNET_assert (peers_running == peers_requested);
833   testbed_peers = peers;
834   h1 = cadets[0];
835   h2 = cadets[num_peers - 1];
836   disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
837                                                   &disconnect_cadet_peers,
838                                                   (void *) __LINE__);
839   shutdown_handle = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
840                                                   &shutdown_task, NULL);
841   t_op[0] = GNUNET_TESTBED_peer_get_information (peers[0],
842                                                  GNUNET_TESTBED_PIT_IDENTITY,
843                                                  &pi_cb, (void *) 0L);
844   t_op[1] = GNUNET_TESTBED_peer_get_information (peers[num_peers - 1],
845                                                  GNUNET_TESTBED_PIT_IDENTITY,
846                                                  &pi_cb, (void *) 1L);
847   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "requested peer ids\n");
848 }
849
850
851 /**
852  * Main: start test
853  */
854 int
855 main (int argc, char *argv[])
856 {
857   initialized = GNUNET_NO;
858   static uint32_t ports[2];
859   const char *config_file;
860
861   GNUNET_log_setup ("test", "DEBUG", NULL);
862   config_file = "test_cadet.conf";
863
864   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Start\n");
865
866   /* Find out requested size */
867   if (strstr (argv[0], "_2_") != NULL)
868   {
869     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "DIRECT CONNECTIONs\n");
870     peers_requested = 2;
871   }
872   else if (strstr (argv[0], "_5_") != NULL)
873   {
874     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "5 PEER LINE\n");
875     peers_requested = 5;
876   }
877   else
878   {
879     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "SIZE UNKNOWN, USING 2\n");
880     peers_requested = 2;
881   }
882
883   /* Find out requested test */
884   if (strstr (argv[0], "_cadet_forward") != NULL)
885   {
886     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "FORWARD\n");
887     test = FORWARD;
888     test_name = "unicast";
889     ok_goal = 4;
890   }
891   else if (strstr (argv[0], "_cadet_signal") != NULL)
892   {
893     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "SIGNAL\n");
894     test = P2P_SIGNAL;
895     test_name = "signal";
896     ok_goal = 4;
897   }
898   else if (strstr (argv[0], "_cadet_speed_ack") != NULL)
899   {
900     /* Test is supposed to generate the following callbacks:
901      * 1 incoming channel (@dest)
902      * TOTAL_PACKETS received data packet (@dest)
903      * TOTAL_PACKETS received data packet (@orig)
904      * 1 received channel destroy (@dest)
905      */
906     ok_goal = TOTAL_PACKETS * 2 + 2;
907     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "SPEED_ACK\n");
908     test = SPEED_ACK;
909     test_name = "speed ack";
910   }
911   else if (strstr (argv[0], "_cadet_speed") != NULL)
912   {
913     /* Test is supposed to generate the following callbacks:
914      * 1 incoming channel (@dest)
915      * 1 initial packet (@dest)
916      * TOTAL_PACKETS received data packet (@dest)
917      * 1 received data packet (@orig)
918      * 1 received channel destroy (@dest)
919      */
920     ok_goal = TOTAL_PACKETS + 4;
921     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "SPEED\n");
922     if (strstr (argv[0], "_reliable") != NULL)
923     {
924       test = SPEED_REL;
925       test_name = "speed reliable";
926       config_file = "test_cadet_drop.conf";
927     }
928     else
929     {
930       test = SPEED;
931       test_name = "speed";
932     }
933   }
934   else if (strstr (argv[0], "_keepalive") != NULL)
935   {
936     test = KEEPALIVE;
937     /* Test is supposed to generate the following callbacks:
938      * 1 incoming channel (@dest)
939      * [wait]
940      * 1 received channel destroy (@dest)
941      */
942     ok_goal = 2;
943   }
944   else
945   {
946     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "UNKNOWN\n");
947     test = SETUP;
948     ok_goal = 0;
949   }
950
951   if (strstr (argv[0], "backwards") != NULL)
952   {
953     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "BACKWARDS (LEAF TO ROOT)\n");
954     test_backwards = GNUNET_YES;
955     GNUNET_asprintf (&test_name, "backwards %s", test_name);
956   }
957
958   p_ids = 0;
959   ports[0] = 1;
960   ports[1] = 0;
961   GNUNET_CADET_TEST_run ("test_cadet_small",
962                         config_file,
963                         peers_requested,
964                         &tmain,
965                         NULL, /* tmain cls */
966                         &incoming_channel,
967                         &channel_cleaner,
968                         handlers,
969                         ports);
970
971   if (ok_goal > ok)
972   {
973     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
974                 "FAILED! (%d/%d)\n", ok, ok_goal);
975     return 1;
976   }
977   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "success\n");
978   return 0;
979 }
980
981 /* end of test_cadet.c */
982