- use increasing size data messages
[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 4L:
451     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
452                 "Leaf client %li got a message.\n",
453                 client);
454     break;
455   default:
456     GNUNET_assert (0);
457     break;
458   }
459   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " ok: (%d/%d)\n", ok, ok_goal);
460   data = (uint32_t *) &message[1];
461   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " payload: (%u)\n", ntohl (*data));
462   if (SPEED == test && GNUNET_YES == test_backwards)
463   {
464     expected_target_client = 0L;
465   }
466   else
467   {
468     expected_target_client = 4L;
469   }
470
471   if (GNUNET_NO == initialized)
472   {
473     initialized = GNUNET_YES;
474     start_time = GNUNET_TIME_absolute_get ();
475     if (SPEED == test)
476     {
477       GNUNET_assert (4L == client);
478       GNUNET_SCHEDULER_add_now (&data_task, NULL);
479       return GNUNET_OK;
480     }
481   }
482
483   if (client == expected_target_client) // Normally 4
484   {
485     data_received++;
486     GNUNET_log (GNUNET_ERROR_TYPE_INFO, " received data %u\n", data_received);
487     if (SPEED != test || (ok_goal - 2) == ok)
488     {
489       GNUNET_CADET_notify_transmit_ready (channel, GNUNET_NO,
490                                          GNUNET_TIME_UNIT_FOREVER_REL,
491                                          size_payload, &tmt_rdy, (void *) 1L);
492       return GNUNET_OK;
493     }
494     else
495     {
496       if (data_received < TOTAL_PACKETS)
497         return GNUNET_OK;
498     }
499   }
500   else // Normally 0
501   {
502     if (test == SPEED_ACK || test == SPEED)
503     {
504       data_ack++;
505       GNUNET_log (GNUNET_ERROR_TYPE_INFO, " received ack %u\n", data_ack);
506       GNUNET_CADET_notify_transmit_ready (channel, GNUNET_NO,
507                                          GNUNET_TIME_UNIT_FOREVER_REL,
508                                          size_payload, &tmt_rdy, (void *) 1L);
509       if (data_ack < TOTAL_PACKETS && SPEED != test)
510         return GNUNET_OK;
511       if (ok == 2 && SPEED == test)
512         return GNUNET_OK;
513       show_end_data();
514     }
515     if (test == P2P_SIGNAL)
516     {
517       GNUNET_CADET_channel_destroy (incoming_ch);
518       incoming_ch = NULL;
519     }
520     else
521     {
522       GNUNET_CADET_channel_destroy (ch);
523       ch = NULL;
524     }
525   }
526
527   if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
528   {
529     GNUNET_SCHEDULER_cancel (disconnect_task);
530     disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
531                                                     &disconnect_cadet_peers,
532                                                     (void *) __LINE__);
533   }
534
535   return GNUNET_OK;
536 }
537
538
539 /**
540  * Stats callback. Finish the stats testbed operation and when all stats have
541  * been iterated, shutdown the test.
542  *
543  * @param cls closure
544  * @param op the operation that has been finished
545  * @param emsg error message in case the operation has failed; will be NULL if
546  *          operation has executed successfully.
547  */
548 static void
549 stats_cont (void *cls, struct GNUNET_TESTBED_Operation *op, const char *emsg)
550 {
551   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "stats_cont for peer %u\n", cls);
552   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " sent: %u, received: %u\n",
553               ka_sent, ka_received);
554   if (ka_sent < 2 || ka_sent > ka_received + 1)
555     ok--;
556   GNUNET_TESTBED_operation_done (stats_op);
557
558   if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
559     GNUNET_SCHEDULER_cancel (disconnect_task);
560   disconnect_task = GNUNET_SCHEDULER_add_now (&disconnect_cadet_peers,
561                                               (void *) __LINE__);
562
563 }
564
565
566 /**
567  * Process statistic values.
568  *
569  * @param cls closure
570  * @param peer the peer the statistic belong to
571  * @param subsystem name of subsystem that created the statistic
572  * @param name the name of the datum
573  * @param value the current value
574  * @param is_persistent GNUNET_YES if the value is persistent, GNUNET_NO if not
575  * @return GNUNET_OK to continue, GNUNET_SYSERR to abort iteration
576  */
577 static int
578 stats_iterator (void *cls, const struct GNUNET_TESTBED_Peer *peer,
579                 const char *subsystem, const char *name,
580                 uint64_t value, int is_persistent)
581 {
582   static const char *s_sent = "# keepalives sent";
583   static const char *s_recv = "# keepalives received";
584   uint32_t i;
585
586   i = GNUNET_TESTBED_get_index (peer);
587   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  %u - %s [%s]: %llu\n",
588               i, subsystem, name, value);
589   if (0 == strncmp (s_sent, name, strlen (s_sent)) && 0 == i)
590     ka_sent = value;
591
592   if (0 == strncmp(s_recv, name, strlen (s_recv)) && 4 == i)
593     ka_received = value;
594
595   return GNUNET_OK;
596 }
597
598
599 /**
600  * Task check that keepalives were sent and received.
601  *
602  * @param cls Closure (NULL).
603  * @param tc Task Context.
604  */
605 static void
606 check_keepalives (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
607 {
608   if ((GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason) != 0)
609     return;
610
611   disconnect_task = GNUNET_SCHEDULER_NO_TASK;
612   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "check keepalives\n");
613   GNUNET_CADET_channel_destroy (ch);
614   stats_op = GNUNET_TESTBED_get_statistics (5, testbed_peers,
615                                             "cadet", NULL,
616                                             stats_iterator, stats_cont, NULL);
617 }
618
619
620 /**
621  * Handlers, for diverse services
622  */
623 static struct GNUNET_CADET_MessageHandler handlers[] = {
624   {&data_callback, 1, sizeof (struct GNUNET_MessageHeader)},
625   {NULL, 0, 0}
626 };
627
628
629 /**
630  * Method called whenever another peer has added us to a channel
631  * the other peer initiated.
632  *
633  * @param cls Closure.
634  * @param channel New handle to the channel.
635  * @param initiator Peer that started the channel.
636  * @param port Port this channel is connected to.
637  * @param options channel option flags
638  * @return Initial channel context for the channel
639  *         (can be NULL -- that's not an error).
640  */
641 static void *
642 incoming_channel (void *cls, struct GNUNET_CADET_Channel *channel,
643                  const struct GNUNET_PeerIdentity *initiator,
644                  uint32_t port, enum GNUNET_CADET_ChannelOption options)
645 {
646   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
647               "Incoming channel from %s to peer %d\n",
648               GNUNET_i2s (initiator), (long) cls);
649   ok++;
650   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " ok: %d\n", ok);
651   if ((long) cls == 4L)
652     incoming_ch = channel;
653   else
654   {
655     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
656                 "Incoming channel for unknown client %lu\n", (long) cls);
657     GNUNET_break(0);
658   }
659   if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
660   {
661     GNUNET_SCHEDULER_cancel (disconnect_task);
662     if (KEEPALIVE == test)
663     {
664       struct GNUNET_TIME_Relative delay;
665       delay = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS , 5);
666       disconnect_task =
667         GNUNET_SCHEDULER_add_delayed (delay, &check_keepalives, NULL);
668     }
669     else
670       disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
671                                                       &disconnect_cadet_peers,
672                                                       (void *) __LINE__);
673   }
674
675   return NULL;
676 }
677
678 /**
679  * Function called whenever an inbound channel is destroyed.  Should clean up
680  * any associated state.
681  *
682  * @param cls closure (set from GNUNET_CADET_connect)
683  * @param channel connection to the other end (henceforth invalid)
684  * @param channel_ctx place where local state associated
685  *                   with the channel is stored
686  */
687 static void
688 channel_cleaner (void *cls, const struct GNUNET_CADET_Channel *channel,
689                  void *channel_ctx)
690 {
691   long i = (long) cls;
692
693   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
694               "Incoming channel disconnected at peer %ld\n", i);
695   if (4L == i)
696   {
697     ok++;
698     GNUNET_break (channel == incoming_ch);
699     incoming_ch = NULL;
700   }
701   else if (0L == i)
702   {
703     if (P2P_SIGNAL == test)
704     {
705       ok ++;
706     }
707     GNUNET_break (channel == ch);
708     ch = NULL;
709   }
710   else
711     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
712                 "Unknown peer! %d\n", i);
713   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " ok: %d\n", ok);
714
715   if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
716   {
717     GNUNET_SCHEDULER_cancel (disconnect_task);
718     disconnect_task = GNUNET_SCHEDULER_add_now (&disconnect_cadet_peers,
719                                                 (void *) __LINE__);
720   }
721
722   return;
723 }
724
725
726 /**
727  * START THE TESTCASE ITSELF, AS WE ARE CONNECTED TO THE CADET SERVICES.
728  *
729  * Testcase continues when the root receives confirmation of connected peers,
730  * on callback funtion ch.
731  *
732  * @param cls Closure (unsued).
733  * @param tc Task Context.
734  */
735 static void
736 do_test (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
737 {
738   enum GNUNET_CADET_ChannelOption flags;
739
740   if ((GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason) != 0)
741     return;
742
743   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test_task\n");
744
745   if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
746   {
747     GNUNET_SCHEDULER_cancel (disconnect_task);
748   }
749
750   flags = GNUNET_CADET_OPTION_DEFAULT;
751   if (SPEED_REL == test)
752   {
753     test = SPEED;
754     flags |= GNUNET_CADET_OPTION_RELIABLE;
755   }
756   ch = GNUNET_CADET_channel_create (h1, NULL, p_id[1], 1, flags);
757
758   disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
759                                                   &disconnect_cadet_peers,
760                                                   (void *) __LINE__);
761   if (KEEPALIVE == test)
762     return; /* Don't send any data. */
763
764   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
765               "Sending data initializer...\n");
766   data_ack = 0;
767   data_received = 0;
768   data_sent = 0;
769   GNUNET_CADET_notify_transmit_ready (ch, GNUNET_NO,
770                                      GNUNET_TIME_UNIT_FOREVER_REL,
771                                      size_payload, &tmt_rdy, (void *) 1L);
772 }
773
774 /**
775  * Callback to be called when the requested peer information is available
776  *
777  * @param cls the closure from GNUNET_TESTBED_peer_get_information()
778  * @param op the operation this callback corresponds to
779  * @param pinfo the result; will be NULL if the operation has failed
780  * @param emsg error message if the operation has failed;
781  *             NULL if the operation is successfull
782  */
783 static void
784 pi_cb (void *cls,
785        struct GNUNET_TESTBED_Operation *op,
786        const struct GNUNET_TESTBED_PeerInformation *pinfo,
787        const char *emsg)
788 {
789   long i = (long) cls;
790
791   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "id callback for %ld\n", i);
792
793   if (NULL == pinfo || NULL != emsg)
794   {
795     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "pi_cb: %s\n", emsg);
796     abort_test (__LINE__);
797     return;
798   }
799   p_id[i] = pinfo->result.id;
800   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  id: %s\n", GNUNET_i2s (p_id[i]));
801   p_ids++;
802   if (p_ids < 2)
803     return;
804   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got all IDs, starting test\n");
805   test_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
806                                             &do_test, NULL);
807 }
808
809 /**
810  * test main: start test when all peers are connected
811  *
812  * @param cls Closure.
813  * @param ctx Argument to give to GNUNET_CADET_TEST_cleanup on test end.
814  * @param num_peers Number of peers that are running.
815  * @param peers Array of peers.
816  * @param cadetes Handle to each of the CADETs of the peers.
817  */
818 static void
819 tmain (void *cls,
820        struct GNUNET_CADET_TEST_Context *ctx,
821        unsigned int num_peers,
822        struct GNUNET_TESTBED_Peer **peers,
823        struct GNUNET_CADET_Handle **cadetes)
824 {
825   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test main\n");
826   ok = 0;
827   test_ctx = ctx;
828   peers_running = num_peers;
829   testbed_peers = peers;
830   h1 = cadetes[0];
831   h2 = cadetes[num_peers - 1];
832   disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
833                                                   &disconnect_cadet_peers,
834                                                   (void *) __LINE__);
835   shutdown_handle = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
836                                                   &shutdown_task, NULL);
837   t_op[0] = GNUNET_TESTBED_peer_get_information (peers[0],
838                                                  GNUNET_TESTBED_PIT_IDENTITY,
839                                                  &pi_cb, (void *) 0L);
840   t_op[1] = GNUNET_TESTBED_peer_get_information (peers[num_peers - 1],
841                                                  GNUNET_TESTBED_PIT_IDENTITY,
842                                                  &pi_cb, (void *) 1L);
843   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "requested peer ids\n");
844 }
845
846
847 /**
848  * Main: start test
849  */
850 int
851 main (int argc, char *argv[])
852 {
853   initialized = GNUNET_NO;
854   static uint32_t ports[2];
855   const char *config_file;
856
857   GNUNET_log_setup ("test", "DEBUG", NULL);
858   config_file = "test_cadet.conf";
859
860   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Start\n");
861   if (strstr (argv[0], "_cadet_forward") != NULL)
862   {
863     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "FORWARD\n");
864     test = FORWARD;
865     test_name = "unicast";
866     ok_goal = 4;
867   }
868   else if (strstr (argv[0], "_cadet_signal") != NULL)
869   {
870     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "SIGNAL\n");
871     test = P2P_SIGNAL;
872     test_name = "signal";
873     ok_goal = 4;
874   }
875   else if (strstr (argv[0], "_cadet_speed_ack") != NULL)
876   {
877     /* Test is supposed to generate the following callbacks:
878      * 1 incoming channel (@dest)
879      * TOTAL_PACKETS received data packet (@dest)
880      * TOTAL_PACKETS received data packet (@orig)
881      * 1 received channel destroy (@dest)
882      */
883     ok_goal = TOTAL_PACKETS * 2 + 2;
884     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "SPEED_ACK\n");
885     test = SPEED_ACK;
886     test_name = "speed ack";
887   }
888   else if (strstr (argv[0], "_cadet_speed") != NULL)
889   {
890     /* Test is supposed to generate the following callbacks:
891      * 1 incoming channel (@dest)
892      * 1 initial packet (@dest)
893      * TOTAL_PACKETS received data packet (@dest)
894      * 1 received data packet (@orig)
895      * 1 received channel destroy (@dest)
896      */
897     ok_goal = TOTAL_PACKETS + 4;
898     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "SPEED\n");
899     if (strstr (argv[0], "_reliable") != NULL)
900     {
901       test = SPEED_REL;
902       test_name = "speed reliable";
903       config_file = "test_cadet_drop.conf";
904     }
905     else
906     {
907       test = SPEED;
908       test_name = "speed";
909     }
910   }
911   else if (strstr (argv[0], "_keepalive") != NULL)
912   {
913     test = KEEPALIVE;
914     /* Test is supposed to generate the following callbacks:
915      * 1 incoming channel (@dest)
916      * [wait]
917      * 1 received channel destroy (@dest)
918      */
919     ok_goal = 2;
920   }
921   else
922   {
923     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "UNKNOWN\n");
924     test = SETUP;
925     ok_goal = 0;
926   }
927
928   if (strstr (argv[0], "backwards") != NULL)
929   {
930     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "BACKWARDS (LEAF TO ROOT)\n");
931     test_backwards = GNUNET_YES;
932     GNUNET_asprintf (&test_name, "backwards %s", test_name);
933   }
934
935   p_ids = 0;
936   ports[0] = 1;
937   ports[1] = 0;
938   GNUNET_CADET_TEST_run ("test_cadet_small",
939                         config_file,
940                         5,
941                         &tmain,
942                         NULL, /* tmain cls */
943                         &incoming_channel,
944                         &channel_cleaner,
945                         handlers,
946                         ports);
947
948   if (ok_goal > ok)
949   {
950     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
951                 "FAILED! (%d/%d)\n", ok, ok_goal);
952     return 1;
953   }
954   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "success\n");
955   return 0;
956 }
957
958 /* end of test_cadet.c */
959