adapt test_transport_api_reliability to new testing API
[oweals/gnunet.git] / src / transport / test_transport_api_limited_sockets.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_limited_sockets.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, 300)
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, 60)
42
43 #define MTYPE 12345
44
45 #define MAX_FILES 50
46
47
48 #if HAVE_SETRLIMIT
49
50 static char *test_source;
51
52 static char *test_plugin;
53
54 static char *test_name;
55
56 static int ok;
57
58 static struct GNUNET_SCHEDULER_Task * die_task;
59
60 static struct GNUNET_SCHEDULER_Task * send_task;
61
62 static struct GNUNET_TRANSPORT_TESTING_PeerContext *p1;
63
64 static struct GNUNET_TRANSPORT_TESTING_PeerContext *p2;
65
66 static struct GNUNET_TRANSPORT_TESTING_ConnectRequest * cc;
67
68 static struct GNUNET_TRANSPORT_TransmitHandle *th;
69
70 static struct GNUNET_TRANSPORT_TESTING_Handle *tth;
71
72 static char *cfg_file_p1;
73
74 static char *cfg_file_p2;
75
76 #if VERBOSE
77 #define OKPP do { ok++; FPRINTF (stderr, "Now at stage %u at %s:%u\n", ok, __FILE__, __LINE__); } while (0)
78 #else
79 #define OKPP do { ok++; } while (0)
80 #endif
81
82
83 static void
84 end ()
85 {
86   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stopping peers\n");
87
88   if (send_task != NULL)
89     GNUNET_SCHEDULER_cancel (send_task);
90
91   if (die_task != NULL)
92     GNUNET_SCHEDULER_cancel (die_task);
93
94   if (th != NULL)
95     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
96   th = NULL;
97
98   GNUNET_TRANSPORT_TESTING_stop_peer (p1);
99   GNUNET_TRANSPORT_TESTING_stop_peer (p2);
100   GNUNET_TRANSPORT_TESTING_done (tth);
101
102 }
103
104 static void
105 end_badly (void *cls)
106 {
107   die_task = NULL;
108
109   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Fail! Stopping peers\n");
110
111   if (send_task != NULL)
112     GNUNET_SCHEDULER_cancel (send_task);
113
114   if (cc != NULL)
115     GNUNET_TRANSPORT_TESTING_connect_peers_cancel (cc);
116
117   if (th != NULL)
118     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
119   th = NULL;
120
121   if (p1 != NULL)
122     GNUNET_TRANSPORT_TESTING_stop_peer (p1);
123   if (p2 != NULL)
124     GNUNET_TRANSPORT_TESTING_stop_peer (p2);
125
126   if (NULL != th)
127     GNUNET_TRANSPORT_TESTING_done (tth);
128
129   ok = GNUNET_SYSERR;
130 }
131
132
133 static void
134 notify_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
135                 const struct GNUNET_MessageHeader *message)
136 {
137   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
138               "Received message of type %d from peer %s!\n",
139               ntohs (message->type), GNUNET_i2s (peer));
140
141   if ((MTYPE == ntohs (message->type)) &&
142       (sizeof (struct GNUNET_MessageHeader) == ntohs (message->size)))
143   {
144     ok = 0;
145     end ();
146   }
147   else
148   {
149     GNUNET_break (0);
150     ok = 1;
151     end ();
152   }
153 }
154
155
156 static size_t
157 notify_ready (void *cls, size_t size, void *buf)
158 {
159   struct GNUNET_TRANSPORT_TESTING_PeerContext *p = cls;
160   struct GNUNET_MessageHeader *hdr;
161
162   th = NULL;
163
164   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
165               "Transmitting message with %u bytes to peer %s\n",
166               (unsigned int) sizeof (struct GNUNET_MessageHeader),
167               GNUNET_i2s (&p->id));
168   GNUNET_assert (size >= 256);
169
170   if (buf != NULL)
171   {
172     hdr = buf;
173     hdr->size = htons (sizeof (struct GNUNET_MessageHeader));
174     hdr->type = htons (MTYPE);
175   }
176   return sizeof (struct GNUNET_MessageHeader);
177 }
178
179
180 static void
181 notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer)
182 {
183   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%4s' connected to us (%p)!\n",
184               GNUNET_i2s (peer), cls);
185 }
186
187
188 static void
189 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
190 {
191   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%4s' disconnected (%p)!\n",
192               GNUNET_i2s (peer), cls);
193   if (th != NULL)
194     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
195   th = NULL;
196 }
197
198
199 static void
200 sendtask (void *cls)
201 {
202   send_task = NULL;
203   th = GNUNET_TRANSPORT_notify_transmit_ready (p1->th, &p2->id, 256, TIMEOUT,
204                                                &notify_ready, &p1);
205 }
206
207
208 static void
209 testing_connect_cb (void *cls)
210 {
211   cc = NULL;
212   char *p1_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
213
214   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peers connected: %s <-> %s\n", p1_c,
215               GNUNET_i2s (&p2->id));
216   GNUNET_free (p1_c);
217
218   // FIXME: THIS IS REQUIRED! SEEMS TO BE A BUG!
219   send_task =
220       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &sendtask, NULL);
221 }
222
223 static void
224 start_cb (struct GNUNET_TRANSPORT_TESTING_PeerContext *p, void *cls)
225 {
226   static int started;
227
228   started++;
229
230   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer %u (`%s') started\n", p->no,
231               GNUNET_i2s (&p->id));
232
233   if (started != 2)
234     return;
235
236   cc = GNUNET_TRANSPORT_TESTING_connect_peers (p2,
237                                                p1,
238                                                &testing_connect_cb,
239                                                NULL);
240
241 }
242
243 static void
244 run (void *cls, char *const *args, const char *cfgfile,
245      const struct GNUNET_CONFIGURATION_Handle *cfg)
246 {
247   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
248
249   tth = GNUNET_TRANSPORT_TESTING_init ();
250
251   p1 = GNUNET_TRANSPORT_TESTING_start_peer (tth,
252                                             cfg_file_p1,
253                                             1,
254                                             &notify_receive,
255                                             &notify_connect,
256                                             &notify_disconnect,
257                                             &start_cb,
258                                             NULL);
259   p2 = GNUNET_TRANSPORT_TESTING_start_peer (tth,
260                                             cfg_file_p2,
261                                             2,
262                                             &notify_receive,
263                                             &notify_connect,
264                                             &notify_disconnect,
265                                             &start_cb,
266                                             NULL);
267   if ((p1 == NULL) || (p2 == NULL))
268   {
269     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Fail! Could not start peers!\n");
270     if (die_task != NULL)
271       GNUNET_SCHEDULER_cancel (die_task);
272     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
273     return;
274   }
275 }
276
277
278 static int
279 check ()
280 {
281   static char *const argv[] = { "test-transport-api",
282     "-c",
283     "test_transport_api_data.conf",
284     NULL
285   };
286   static struct GNUNET_GETOPT_CommandLineOption options[] = {
287     GNUNET_GETOPT_OPTION_END
288   };
289
290   send_task = NULL;
291
292   ok = 1;
293   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, test_name,
294                       "nohelp", options, &run, &ok);
295
296   return ok;
297 }
298
299
300 int
301 main (int argc, char *argv[])
302 {
303   struct rlimit r_file_old;
304   struct rlimit r_file_new;
305   int res;
306   int ret = 0;
307
308   test_source = GNUNET_TRANSPORT_TESTING_get_test_source_name (__FILE__);
309   test_plugin = GNUNET_TRANSPORT_TESTING_get_test_plugin_name (argv[0],
310                                                                test_source);
311   test_name = GNUNET_TRANSPORT_TESTING_get_test_name (argv[0]);
312   GNUNET_log_setup (test_name,
313                     "WARNING",
314                     NULL);
315
316   res = getrlimit (RLIMIT_NOFILE, &r_file_old);
317   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
318               "Maximum number of open files was: %u/%u\n",
319               (unsigned int) r_file_old.rlim_cur,
320               (unsigned int) r_file_old.rlim_max);
321   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
322               "Setting maximum number of open files to: %u\n",
323               MAX_FILES);
324   r_file_new.rlim_cur = MAX_FILES;
325   r_file_new.rlim_max = r_file_old.rlim_max;
326   res = setrlimit (RLIMIT_NOFILE, &r_file_new);
327
328   if (res != 0)
329   {
330     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Setting limit failed!\n");
331     GNUNET_free (test_source);
332     GNUNET_free (test_plugin);
333     GNUNET_free (test_name);
334     return 0;
335   }
336
337   cfg_file_p1 = GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], 1);
338   cfg_file_p2 = GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], 2);
339   ret = check ();
340
341   GNUNET_free (cfg_file_p1);
342   GNUNET_free (cfg_file_p2);
343   GNUNET_free (test_source);
344   GNUNET_free (test_plugin);
345   GNUNET_free (test_name);
346   return ret;
347 }
348
349 #else
350 /* cannot setrlimit */
351
352
353 int
354 main (int argc, char *argv[])
355 {
356   fprintf (stderr, "Cannot run test on this system\n");
357   return 0;
358 }
359
360 #endif
361
362 /* end of test_transport_api_limited_sockets.c */