-ensure stats queues do not grow too big
[oweals/gnunet.git] / src / transport / test_transport_api_manipulation_cfg.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2009, 2010 GNUnet e.V.
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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20 /**
21  * @file transport/test_transport_api_manipulation_send_tcp.c
22  * @brief base test case for transport traffic manipulation implementation
23  * based onf cfg
24  *
25  * Peer 1 has inbound and outbound delay of 100ms
26  * Peer 2 has no inbound and outbound delay
27  *
28  * We send a request from P1 to P2 and expect delay of >= TEST_DELAY us
29  * Then we send response from P2 to P1 and expect delay of >= TEST_DELAY us
30  */
31 #include "platform.h"
32 #include "gnunet_transport_service.h"
33 #include "transport-testing.h"
34
35 /**
36  * How long until we give up on transmitting the message?
37  */
38 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 120)
39
40 /**
41  * How long until we give up on transmitting the message?
42  */
43 #define TIMEOUT_TRANSMIT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
44
45 #define TEST_MESSAGE_SIZE 2600
46
47 #define TEST_REQUEST_MESSAGE_TYPE 12345
48
49 #define TEST_RESPONSE_MESSAGE_TYPE 12346
50
51 /**
52  * Test delay, in microseconds.
53  */
54 #define TEST_DELAY 100 * 1000LL
55
56 static char *test_source;
57
58 static char *test_plugin;
59
60 static char *test_name;
61
62 static int ok;
63
64 static int s_started;
65
66 static int s_connected;
67
68 static int s_sending;
69
70 static struct GNUNET_SCHEDULER_Task * die_task;
71
72 static struct GNUNET_SCHEDULER_Task * send_task;
73
74 static struct PeerContext *p1;
75
76 static struct PeerContext *p2;
77
78 static struct GNUNET_TRANSPORT_TESTING_ConnectRequest * cc;
79
80 static struct GNUNET_TRANSPORT_TransmitHandle *th;
81
82 static struct GNUNET_TRANSPORT_TESTING_handle *tth;
83
84 static char *cfg_file_p1;
85
86 static char *cfg_file_p2;
87
88 static struct GNUNET_TIME_Absolute start_request;
89 static struct GNUNET_TIME_Absolute start_response;
90
91 static void
92 end ()
93 {
94   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stopping peers\n");
95
96   if (send_task != NULL)
97     GNUNET_SCHEDULER_cancel (send_task);
98
99   if (die_task != NULL)
100     GNUNET_SCHEDULER_cancel (die_task);
101
102   if (th != NULL)
103     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
104   th = NULL;
105
106   GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
107   GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
108 }
109
110
111 static void
112 end_badly (void *cls)
113 {
114   die_task = NULL;
115
116   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Fail! Stopping peers\n");
117
118
119   if (send_task != NULL)
120     GNUNET_SCHEDULER_cancel (send_task);
121
122   if (cc != NULL)
123   {
124     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Fail! Could not connect peers\n"));
125     GNUNET_TRANSPORT_TESTING_connect_peers_cancel (tth, cc);
126     cc = NULL;
127   }
128
129   if (th != NULL)
130     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
131   else
132     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were not ready to send data\n"));
133
134   if (s_started == GNUNET_NO)
135     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peers were not started \n"));
136   else
137     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peers were started \n"));
138
139   if (s_connected == GNUNET_NO)
140     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were not connected\n"));
141   else
142     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were connected\n"));
143
144   if (s_sending == GNUNET_NO)
145     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were not ready to send data\n"));
146   else
147     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were ready to send data\n"));
148
149   th = NULL;
150
151   if (p1 != NULL)
152     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
153   else
154     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer 1 was not started\n"));
155   if (p2 != NULL)
156     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
157   else
158     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer 2 was not started\n"));
159
160   ok = GNUNET_SYSERR;
161 }
162
163
164 static size_t
165 notify_request_ready (void *cls, size_t size, void *buf)
166 {
167   struct PeerContext *p = cls;
168   struct GNUNET_MessageHeader *hdr;
169
170   th = NULL;
171
172   if (buf == NULL)
173   {
174     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
175                 "Timeout occurred while waiting for transmit_ready\n");
176     if (NULL != die_task)
177       GNUNET_SCHEDULER_cancel (die_task);
178     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
179     ok = 42;
180     return 0;
181   }
182
183   GNUNET_assert (size >= TEST_MESSAGE_SIZE);
184   memset (buf, '\0', TEST_MESSAGE_SIZE);
185   hdr = buf;
186   hdr->size = htons (TEST_MESSAGE_SIZE);
187   hdr->type = htons (TEST_REQUEST_MESSAGE_TYPE);
188
189   {
190     char *ps = GNUNET_strdup (GNUNET_i2s (&p1->id));
191
192     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
193                 "Sending request message from peer %u (`%4s') with type %u and size %u bytes to peer %u (`%4s')\n",
194                 p1->no, ps,
195                 ntohs (hdr->type),
196                 ntohs (hdr->size),
197                 p->no,
198                 GNUNET_i2s (&p->id));
199     GNUNET_free (ps);
200   }
201
202   return TEST_MESSAGE_SIZE;
203 }
204
205
206 static void
207 sendtask_request_task (void *cls)
208 {
209   send_task = NULL;
210   char *receiver_s = GNUNET_strdup (GNUNET_i2s (&p2->id));
211
212   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
213               "Sending message from peer %u (`%4s') -> peer %u (`%s') !\n",
214               p1->no, GNUNET_i2s (&p1->id), p2->no, receiver_s);
215   GNUNET_free (receiver_s);
216
217   s_sending = GNUNET_YES;
218         start_request = GNUNET_TIME_absolute_get();
219   th = GNUNET_TRANSPORT_notify_transmit_ready (p1->th, &p2->id, TEST_MESSAGE_SIZE,
220                                                TIMEOUT_TRANSMIT, &notify_request_ready,
221                                                p2);
222 }
223
224
225 static size_t
226 notify_response_ready (void *cls, size_t size, void *buf)
227 {
228   struct PeerContext *p = cls;
229   struct GNUNET_MessageHeader *hdr;
230
231   th = NULL;
232
233   if (buf == NULL)
234   {
235     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
236                 "Timeout occurred while waiting for transmit_ready\n");
237     if (NULL != die_task)
238       GNUNET_SCHEDULER_cancel (die_task);
239     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
240     ok = 42;
241     return 0;
242   }
243
244   GNUNET_assert (size >= TEST_MESSAGE_SIZE);
245   memset (buf, '\0', TEST_MESSAGE_SIZE);
246   hdr = buf;
247   hdr->size = htons (TEST_MESSAGE_SIZE);
248   hdr->type = htons (TEST_RESPONSE_MESSAGE_TYPE);
249
250   {
251     char *ps = GNUNET_strdup (GNUNET_i2s (&p1->id));
252     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
253                 "Sending response message from peer %u (`%4s') with type %u and size %u bytes to peer %u (`%4s')\n",
254                 p1->no,
255                 ps,
256                 ntohs (hdr->type),
257                 ntohs (hdr->size),
258                 p->no,
259                 GNUNET_i2s (&p->id));
260     GNUNET_free (ps);
261   }
262
263   return TEST_MESSAGE_SIZE;
264 }
265
266
267 static void
268 sendtask_response_task (void *cls)
269 {
270   send_task = NULL;
271   {
272     char *receiver_s = GNUNET_strdup (GNUNET_i2s (&p1->id));
273
274     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
275                 "Sending message from peer %u (`%4s') -> peer %u (`%s') !\n",
276                 p2->no,
277                 GNUNET_i2s (&p2->id),
278                 p1->no,
279                 receiver_s);
280     GNUNET_free (receiver_s);
281   }
282
283   s_sending = GNUNET_YES;
284   start_response = GNUNET_TIME_absolute_get();
285   th = GNUNET_TRANSPORT_notify_transmit_ready (p2->th,
286                                                &p1->id,
287                                                TEST_MESSAGE_SIZE,
288                                                TIMEOUT_TRANSMIT,
289                                                &notify_response_ready,
290                                                p1);
291 }
292
293
294
295 static void
296 notify_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
297                 const struct GNUNET_MessageHeader *message)
298 {
299   struct PeerContext *p = cls;
300   struct PeerContext *t = NULL;
301   struct GNUNET_TIME_Relative duration;
302
303   if (0 == memcmp (peer, &p1->id, sizeof (struct GNUNET_PeerIdentity)))
304     t = p1;
305   if (0 == memcmp (peer, &p2->id, sizeof (struct GNUNET_PeerIdentity)))
306     t = p2;
307   GNUNET_assert (t != NULL);
308
309   char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
310
311   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
312               "Peer %u (`%4s') received message of type %d and size %u size from peer %u (`%4s')!\n",
313               p->no, ps, ntohs (message->type), ntohs (message->size), t->no,
314               GNUNET_i2s (&t->id));
315   GNUNET_free (ps);
316
317   switch (ntohs (message->type)) {
318                 case TEST_REQUEST_MESSAGE_TYPE:
319                         duration = GNUNET_TIME_absolute_get_difference(start_request,
320                                         GNUNET_TIME_absolute_get());
321                         if (duration.rel_value_us >= TEST_DELAY)
322                                 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
323                                             "Request message was delayed for %s\n",
324                                             GNUNET_STRINGS_relative_time_to_string (duration,
325                                                                                     GNUNET_YES));
326                         else
327                           {
328                             GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
329                                         "Request message was delayed for unexpected duration %s\n",
330                                         GNUNET_STRINGS_relative_time_to_string (duration,
331                                                                                 GNUNET_YES));
332                             ok = 1;
333                         }
334
335                   /* Send response */
336                   send_task = GNUNET_SCHEDULER_add_now (&sendtask_response_task, NULL);
337                   return;
338                         break;
339                 case TEST_RESPONSE_MESSAGE_TYPE:
340                         duration = GNUNET_TIME_absolute_get_difference(start_response,
341                                         GNUNET_TIME_absolute_get());
342                         if (duration.rel_value_us >= TEST_DELAY)
343                           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
344                                       "Response message was delayed for %s\n",
345                                       GNUNET_STRINGS_relative_time_to_string (duration,
346                                                                               GNUNET_YES));
347                         else
348                           {
349                             GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
350                                         "Response message was delayed for unexpected duration %s\n",
351                                         GNUNET_STRINGS_relative_time_to_string (duration,
352                                                                                 GNUNET_YES));
353                             ok = 1;
354                         }
355                   /* Done */
356                         ok = 0;
357                   end();
358                         break;
359                 default:
360                         break;
361         }
362 }
363
364
365
366 static void
367 notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer)
368 {
369   static int c;
370
371   c++;
372   struct PeerContext *p = cls;
373   struct PeerContext *t = NULL;
374
375   if (0 == memcmp (peer, &p1->id, sizeof (struct GNUNET_PeerIdentity)))
376     t = p1;
377   if (0 == memcmp (peer, &p2->id, sizeof (struct GNUNET_PeerIdentity)))
378     t = p2;
379   GNUNET_assert (t != NULL);
380
381   char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
382
383   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
384               "Peer %u (`%4s'): peer %u (`%s') connected to me!\n", p->no, ps,
385               t->no, GNUNET_i2s (peer));
386   GNUNET_free (ps);
387 }
388
389
390 static void
391 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
392 {
393   struct PeerContext *p = cls;
394   char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
395
396   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
397               "Peer %u (`%4s'): peer (`%s') disconnected from me!\n", p->no, ps,
398               GNUNET_i2s (peer));
399
400   GNUNET_free (ps);
401
402   if (th != NULL)
403     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
404   th = NULL;
405 }
406
407
408 static void
409 testing_connect_cb (struct PeerContext *p1, struct PeerContext *p2, void *cls)
410 {
411   cc = NULL;
412   char *p1_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
413
414   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peers connected: %u (%s) <-> %u (%s)\n",
415               p1->no, p1_c, p2->no, GNUNET_i2s (&p2->id));
416   GNUNET_free (p1_c);
417
418   s_connected = GNUNET_YES;
419   send_task = GNUNET_SCHEDULER_add_now (&sendtask_request_task, NULL);
420 }
421
422
423 static void
424 start_cb (struct PeerContext *p, void *cls)
425 {
426   static int started;
427   started++;
428
429   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer %u (`%s') started\n", p->no,
430               GNUNET_i2s (&p->id));
431
432   if (started != 2)
433     return;
434   else
435     s_started = GNUNET_YES;
436   char *sender_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
437
438   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
439               "Test tries to connect peer %u (`%s') -> peer %u (`%s')\n",
440               p1->no, sender_c, p2->no, GNUNET_i2s (&p2->id));
441   GNUNET_free (sender_c);
442
443   cc = GNUNET_TRANSPORT_TESTING_connect_peers (tth, p1, p2, &testing_connect_cb,
444                                                NULL);
445
446 }
447
448
449 static void
450 run (void *cls, char *const *args, const char *cfgfile,
451      const struct GNUNET_CONFIGURATION_Handle *cfg)
452 {
453   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
454
455   s_started = GNUNET_NO;
456   s_connected = GNUNET_NO;
457   s_sending = GNUNET_NO;
458
459   p1 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p1, 1,
460                                             &notify_receive, &notify_connect,
461                                             &notify_disconnect, &start_cb,
462                                             NULL);
463
464   p2 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p2, 2,
465                                             &notify_receive, &notify_connect,
466                                             &notify_disconnect, &start_cb,
467                                             NULL);
468
469   if ((p1 == NULL) || (p2 == NULL))
470   {
471     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Fail! Could not start peers!\n");
472     if (die_task != NULL)
473       GNUNET_SCHEDULER_cancel (die_task);
474     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
475     return;
476   }
477 }
478
479
480 static int
481 check ()
482 {
483   static char *const argv[] = { "test-transport-api-manipulation",
484     "-c",
485     "test_transport_api_data.conf",
486     NULL
487   };
488   static struct GNUNET_GETOPT_CommandLineOption options[] = {
489     GNUNET_GETOPT_OPTION_END
490   };
491
492   send_task = NULL;
493
494   ok = 1;
495   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, test_name,
496                       "nohelp", options, &run, &ok);
497
498   return ok;
499 }
500
501 int
502 main (int argc, char *argv[])
503 {
504   int ret;
505
506   GNUNET_TRANSPORT_TESTING_get_test_name (argv[0], &test_name);
507   GNUNET_TRANSPORT_TESTING_get_test_source_name (__FILE__, &test_source);
508   GNUNET_TRANSPORT_TESTING_get_test_plugin_name (argv[0], test_source,
509                                                  &test_plugin);
510
511   GNUNET_log_setup (test_name,
512                     "WARNING",
513                     NULL);
514   tth = GNUNET_TRANSPORT_TESTING_init ();
515
516   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p1, 1);
517   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p2, 2);
518
519   ret = check ();
520
521   GNUNET_free (cfg_file_p1);
522   GNUNET_free (cfg_file_p2);
523
524   GNUNET_free (test_source);
525   GNUNET_free (test_plugin);
526   GNUNET_free (test_name);
527
528   GNUNET_TRANSPORT_TESTING_done (tth);
529
530   return ret;
531 }
532
533 /* end of test_transport_api.c */