-start to refactor testcases for sanity
[oweals/gnunet.git] / src / transport / test_transport_api.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.c
22  * @brief base test case for transport implementations
23  *
24  * This test case serves as a base for tcp, udp, and udp-nat
25  * transport test cases.  Based on the executable being run
26  * the correct test case will be performed.  Conservation of
27  * C code apparently.
28  */
29 #include "platform.h"
30 #include "gnunet_transport_service.h"
31 #include "transport-testing.h"
32
33 /**
34  * How long until we give up on transmitting the message?
35  */
36 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 120)
37
38 /**
39  * How long until we give up on transmitting the message?
40  */
41 #define TIMEOUT_TRANSMIT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
42
43 #define TEST_MESSAGE_SIZE 2600
44
45 #define TEST_MESSAGE_TYPE 12345
46
47 static char *test_source;
48
49 static char *test_plugin;
50
51 static char *test_name;
52
53 static int ok;
54
55 static int s_started;
56
57 static int s_connected;
58
59 static int s_sending;
60
61 static struct GNUNET_SCHEDULER_Task * die_task;
62
63 static struct GNUNET_SCHEDULER_Task * send_task;
64
65 static struct GNUNET_TRANSPORT_TESTING_PeerContext *p1;
66
67 static struct GNUNET_TRANSPORT_TESTING_PeerContext *p2;
68
69 static struct GNUNET_TRANSPORT_TESTING_ConnectRequest * cc;
70
71 static struct GNUNET_TRANSPORT_TransmitHandle *th;
72
73 static struct GNUNET_TRANSPORT_TESTING_Handle *tth;
74
75 static char *cfg_file_p1;
76
77 static char *cfg_file_p2;
78
79
80 static void
81 end ()
82 {
83   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Stopping peers\n");
84
85   if (send_task != NULL)
86     GNUNET_SCHEDULER_cancel (send_task);
87
88   if (die_task != NULL)
89     GNUNET_SCHEDULER_cancel (die_task);
90
91   if (th != NULL)
92     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
93   th = NULL;
94
95   GNUNET_TRANSPORT_TESTING_stop_peer (p1);
96   GNUNET_TRANSPORT_TESTING_stop_peer (p2);
97 }
98
99
100 static void
101 end_badly (void *cls)
102 {
103   die_task = NULL;
104
105   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Fail! Stopping peers\n");
106
107
108   if (send_task != NULL)
109     GNUNET_SCHEDULER_cancel (send_task);
110
111   if (cc != NULL)
112   {
113     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Fail! Could not connect peers\n"));
114     GNUNET_TRANSPORT_TESTING_connect_peers_cancel (cc);
115     cc = NULL;
116   }
117
118   if (th != NULL)
119     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
120   else
121     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were not ready to send data\n"));
122
123   if (s_started == GNUNET_NO)
124     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peers were not started \n"));
125   else
126     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peers were started \n"));
127
128   if (s_connected == GNUNET_NO)
129     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were not connected\n"));
130   else
131     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were connected\n"));
132
133   if (s_sending == GNUNET_NO)
134     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were not ready to send data\n"));
135   else
136     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were ready to send data\n"));
137
138   th = NULL;
139
140   if (p1 != NULL)
141     GNUNET_TRANSPORT_TESTING_stop_peer (p1);
142   else
143     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer 1 was not started\n"));
144   if (p2 != NULL)
145     GNUNET_TRANSPORT_TESTING_stop_peer (p2);
146   else
147     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer 2 was not started\n"));
148
149   ok = GNUNET_SYSERR;
150 }
151
152
153 static void
154 notify_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
155                 const struct GNUNET_MessageHeader *message)
156 {
157   struct GNUNET_TRANSPORT_TESTING_PeerContext *p = cls;
158   struct GNUNET_TRANSPORT_TESTING_PeerContext *t = NULL;
159
160   if (0 == memcmp (peer, &p1->id, sizeof (struct GNUNET_PeerIdentity)))
161     t = p1;
162   if (0 == memcmp (peer, &p2->id, sizeof (struct GNUNET_PeerIdentity)))
163     t = p2;
164   GNUNET_assert (t != NULL);
165
166   char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
167
168   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
169               "Peer %u (`%4s') received message of type %d and size %u size from peer %u (`%4s')!\n",
170               p->no, ps, ntohs (message->type), ntohs (message->size), t->no,
171               GNUNET_i2s (&t->id));
172   GNUNET_free (ps);
173
174   if ((TEST_MESSAGE_TYPE == ntohs (message->type)) &&
175       (TEST_MESSAGE_SIZE == ntohs (message->size)))
176   {
177     ok = 0;
178     end ();
179   }
180   else
181   {
182     GNUNET_break (0);
183     ok = 1;
184     end ();
185   }
186 }
187
188
189 static size_t
190 notify_ready (void *cls, size_t size, void *buf)
191 {
192   struct GNUNET_TRANSPORT_TESTING_PeerContext *p = cls;
193   struct GNUNET_MessageHeader *hdr;
194
195   th = NULL;
196
197   if (buf == NULL)
198   {
199     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
200                 "Timeout occurred while waiting for transmit_ready\n");
201     if (NULL != die_task)
202       GNUNET_SCHEDULER_cancel (die_task);
203     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
204     ok = 42;
205     return 0;
206   }
207
208   GNUNET_assert (size >= TEST_MESSAGE_SIZE);
209   if (buf != NULL)
210   {
211     memset (buf, '\0', TEST_MESSAGE_SIZE);
212     hdr = buf;
213     hdr->size = htons (TEST_MESSAGE_SIZE);
214     hdr->type = htons (TEST_MESSAGE_TYPE);
215   }
216
217   char *ps = GNUNET_strdup (GNUNET_i2s (&p2->id));
218   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
219               "Peer %u (`%4s') sending message with type %u and size %u bytes to peer %u (`%4s')\n",
220               p2->no, ps, ntohs (hdr->type), ntohs (hdr->size), p->no,
221               GNUNET_i2s (&p->id));
222   GNUNET_free (ps);
223
224   return TEST_MESSAGE_SIZE;
225 }
226
227
228 static void
229 sendtask (void *cls)
230 {
231   send_task = NULL;
232   char *receiver_s = GNUNET_strdup (GNUNET_i2s (&p1->id));
233
234   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
235               "Sending message from peer %u (`%4s') -> peer %u (`%s') !\n",
236               p2->no, GNUNET_i2s (&p2->id), p1->no, receiver_s);
237   GNUNET_free (receiver_s);
238   s_sending = GNUNET_YES;
239   th = GNUNET_TRANSPORT_notify_transmit_ready (p2->th, &p1->id, TEST_MESSAGE_SIZE,
240                                                TIMEOUT_TRANSMIT, &notify_ready,
241                                                p1);
242 }
243
244
245 static void
246 notify_connect (void *cls,
247                 const struct GNUNET_PeerIdentity *peer)
248 {
249   static int c;
250
251   c++;
252   struct GNUNET_TRANSPORT_TESTING_PeerContext *p = cls;
253   struct GNUNET_TRANSPORT_TESTING_PeerContext *t = NULL;
254
255   if (0 == memcmp (peer, &p1->id, sizeof (struct GNUNET_PeerIdentity)))
256     t = p1;
257   if (0 == memcmp (peer, &p2->id, sizeof (struct GNUNET_PeerIdentity)))
258     t = p2;
259   GNUNET_assert (t != NULL);
260
261   char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
262
263   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
264               "Peer %u (`%4s'): peer %u (`%s') connected to me!\n", p->no, ps,
265               t->no, GNUNET_i2s (peer));
266   GNUNET_free (ps);
267 }
268
269
270 static void
271 notify_disconnect (void *cls,
272                    const struct GNUNET_PeerIdentity *peer)
273 {
274   struct GNUNET_TRANSPORT_TESTING_PeerContext *p = cls;
275   char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
276
277   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
278               "Peer %u (`%4s'): peer (`%s') disconnected from me!\n",
279               p->no,
280               ps,
281               GNUNET_i2s (peer));
282   GNUNET_free (ps);
283
284   if (th != NULL)
285   {
286     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
287     th = NULL;
288   }
289 }
290
291
292 static void
293 testing_connect_cb (void *cls)
294 {
295   cc = NULL;
296   char *p1_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
297
298   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Peers connected: %u (%s) <-> %u (%s)\n",
299               p1->no, p1_c, p2->no, GNUNET_i2s (&p2->id));
300   GNUNET_free (p1_c);
301
302   s_connected = GNUNET_YES;
303   send_task = GNUNET_SCHEDULER_add_now (&sendtask, NULL);
304 }
305
306
307 static void
308 start_cb (struct GNUNET_TRANSPORT_TESTING_PeerContext *p,
309           void *cls)
310 {
311   static int started;
312
313   started++;
314
315   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
316               "Peer %u (`%s') started\n",
317               p->no,
318               GNUNET_i2s (&p->id));
319   if (started != 2)
320     return;
321   s_started = GNUNET_YES;
322   {
323     char *sender_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
324
325     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
326                 "Test tries to connect peer %u (`%s') -> peer %u (`%s')\n",
327                 p1->no, sender_c, p2->no, GNUNET_i2s (&p2->id));
328     GNUNET_free (sender_c);
329   }
330   cc = GNUNET_TRANSPORT_TESTING_connect_peers (p1,
331                                                p2,
332                                                &testing_connect_cb,
333                                                NULL);
334 }
335
336
337 static void
338 run (void *cls,
339      char *const *args,
340      const char *cfgfile,
341      const struct GNUNET_CONFIGURATION_Handle *cfg)
342 {
343   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
344                                            &end_badly,
345                                            NULL);
346
347   s_started = GNUNET_NO;
348   s_connected = GNUNET_NO;
349   s_sending = GNUNET_NO;
350
351   p1 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p1, 1,
352                                             &notify_receive, &notify_connect,
353                                             &notify_disconnect, &start_cb,
354                                             NULL);
355
356   p2 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p2, 2,
357                                             &notify_receive, &notify_connect,
358                                             &notify_disconnect, &start_cb,
359                                             NULL);
360
361   if ((p1 == NULL) || (p2 == NULL))
362   {
363     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
364                 "Fail! Could not start peers!\n");
365     if (die_task != NULL)
366       GNUNET_SCHEDULER_cancel (die_task);
367     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
368     return;
369   }
370 }
371
372
373 static int
374 check ()
375 {
376   static char *const argv[] = {
377     "test-transport-api",
378     "-c",
379     "test_transport_api_data.conf",
380     NULL
381   };
382   static struct GNUNET_GETOPT_CommandLineOption options[] = {
383     GNUNET_GETOPT_OPTION_END
384   };
385
386   send_task = NULL;
387
388   ok = 1;
389   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
390                       argv,
391                       test_name,
392                       "nohelp",
393                       options,
394                       &run,
395                       &ok);
396
397   return ok;
398 }
399
400
401 int
402 main (int argc, char *argv[])
403 {
404   int ret;
405
406   test_name = GNUNET_TRANSPORT_TESTING_get_test_name (argv[0]);
407   test_source = GNUNET_TRANSPORT_TESTING_get_test_source_name (__FILE__);
408   test_plugin = GNUNET_TRANSPORT_TESTING_get_test_plugin_name (argv[0],
409                                                                test_source);
410
411   GNUNET_log_setup (test_name,
412                     "WARNING",
413                     NULL);
414   tth = GNUNET_TRANSPORT_TESTING_init ();
415
416   cfg_file_p1 = GNUNET_TRANSPORT_TESTING_get_config_name (argv[0],
417                                                           1);
418   cfg_file_p2 = GNUNET_TRANSPORT_TESTING_get_config_name (argv[0],
419                                                           2);
420
421   ret = check ();
422
423   GNUNET_free (cfg_file_p1);
424   GNUNET_free (cfg_file_p2);
425
426   GNUNET_free (test_source);
427   GNUNET_free (test_plugin);
428   GNUNET_free (test_name);
429
430   GNUNET_TRANSPORT_TESTING_done (tth);
431
432   return ret;
433 }
434
435 /* end of test_transport_api.c */