-makefile for new test_stream_local (commented)
[oweals/gnunet.git] / src / transport / test_transport_api_timeout.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010 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 transport/test_transport_api_timeout.c
22  * @brief test case for transport plugin implementations complying timeout
23  * settings
24  *
25  *
26  * This test case serves ensures that no peer disconnect events occurs
27  * while plugins are idle
28  */
29
30 #include "platform.h"
31 #include "gnunet_common.h"
32 #include "gnunet_hello_lib.h"
33 #include "gnunet_getopt_lib.h"
34 #include "gnunet_os_lib.h"
35 #include "gnunet_program_lib.h"
36 #include "gnunet_scheduler_lib.h"
37 #include "gnunet_transport_service.h"
38 #include "transport.h"
39 #include "transport-testing.h"
40
41 #define VERBOSE GNUNET_NO
42
43 #define VERBOSE_ARM GNUNET_NO
44
45 #define START_ARM GNUNET_YES
46
47 /**
48  * How long until we give up on transmitting the message?
49  */
50 #define WAIT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
51
52 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 90)
53
54 #define MTYPE 12345
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 GNUNET_SCHEDULER_TaskIdentifier die_task;
65
66 static GNUNET_SCHEDULER_TaskIdentifier timer_task;
67
68 struct GNUNET_TRANSPORT_TESTING_handle *tth;
69
70 struct PeerContext *p1;
71
72 struct PeerContext *p2;
73
74 static GNUNET_TRANSPORT_TESTING_ConnectRequest cc;
75
76 struct GNUNET_TRANSPORT_TransmitHandle *th;
77
78 char *cfg_file_p1;
79
80 char *cfg_file_p2;
81
82 static struct GNUNET_TIME_Relative time_running;
83
84 static int shutdown_flag;
85
86 static int disconnects;
87
88
89 #if VERBOSE
90 #define OKPP do { ok++; FPRINTF (stderr, "Now at stage %u at %s:%u\n", ok, __FILE__, __LINE__); } while (0)
91 #else
92 #define OKPP do { ok++; } while (0)
93 #endif
94
95
96 static void
97 end ()
98 {
99   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stopping peers\n");
100
101   if (timer_task != GNUNET_SCHEDULER_NO_TASK)
102   {
103     GNUNET_SCHEDULER_cancel (timer_task);
104     timer_task = GNUNET_SCHEDULER_NO_TASK;
105   }
106
107   if (die_task != GNUNET_SCHEDULER_NO_TASK)
108   {
109     GNUNET_SCHEDULER_cancel (die_task);
110     die_task = GNUNET_SCHEDULER_NO_TASK;
111   }
112
113   if (th != NULL)
114     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
115   th = NULL;
116
117
118   GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
119   GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
120
121   if (disconnects == 0)
122     ok = 0;
123   else
124   {
125     ok = disconnects;
126     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
127                 "Fail! Had %u disconnects while waiting %llu seconds \n",
128                 disconnects, WAIT.rel_value);
129   }
130
131   GNUNET_TRANSPORT_TESTING_done (tth);
132 }
133
134 static void
135 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
136 {
137   die_task = GNUNET_SCHEDULER_NO_TASK;
138
139   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Fail! Stopping peers\n");
140
141   if (timer_task != GNUNET_SCHEDULER_NO_TASK)
142   {
143     GNUNET_SCHEDULER_cancel (timer_task);
144     timer_task = GNUNET_SCHEDULER_NO_TASK;
145   }
146   if (cc != NULL)
147     GNUNET_TRANSPORT_TESTING_connect_peers_cancel (tth, cc);
148   if (th != NULL)
149     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
150   th = NULL;
151   if (p1 != NULL)
152     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
153   if (p2 != NULL)
154     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
155   ok = GNUNET_SYSERR;
156
157   GNUNET_TRANSPORT_TESTING_done (tth);
158 }
159
160
161 static void
162 notify_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
163                 const struct GNUNET_MessageHeader *message,
164                 const struct GNUNET_ATS_Information *ats, uint32_t ats_count)
165 {
166   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
167               "Received message of type %d from peer %s!\n",
168               ntohs (message->type), GNUNET_i2s (peer));
169 }
170
171 static void
172 notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
173                 const struct GNUNET_ATS_Information *ats, uint32_t ats_count)
174 {
175   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%4s' connected to us (%p)!\n",
176               GNUNET_i2s (peer), cls);
177 }
178
179
180 static void
181 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
182 {
183   if (shutdown_flag != GNUNET_YES)
184   {
185     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
186                 "FAIL! Peer `%4s' disconnected during waiting period!\n",
187                 GNUNET_i2s (peer));
188     disconnects++;
189   }
190   if (th != NULL)
191     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
192   th = NULL;
193 }
194
195 static void
196 timer (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
197 {
198   static int percentage;
199
200   timer_task = GNUNET_SCHEDULER_NO_TASK;
201
202   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
203     return;
204
205   percentage += 10;
206   time_running =
207       GNUNET_TIME_relative_add (time_running,
208                                 GNUNET_TIME_relative_divide (WAIT, 10));
209
210   if (time_running.rel_value ==
211       GNUNET_TIME_relative_max (time_running, WAIT).rel_value)
212   {
213     FPRINTF (stderr, "%s",  "100%%\n");
214     shutdown_flag = GNUNET_YES;
215     GNUNET_SCHEDULER_add_now (&end, NULL);
216   }
217   else
218   {
219     FPRINTF (stderr, "%u%%..", percentage);
220     timer_task =
221         GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_divide (WAIT, 10),
222                                       &timer, NULL);
223   }
224 }
225
226 static void
227 testing_connect_cb (struct PeerContext *p1, struct PeerContext *p2, void *cls)
228 {
229   cc = NULL;
230   char *p1_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
231
232   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peers connected: %s <-> %s\n", p1_c,
233               GNUNET_i2s (&p2->id));
234   GNUNET_free (p1_c);
235
236   shutdown_flag = GNUNET_NO;
237
238   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Waiting for %llu seconds\n", (WAIT.rel_value) / 1000);
239
240   if (die_task != GNUNET_SCHEDULER_NO_TASK)
241     GNUNET_SCHEDULER_cancel (die_task);
242   die_task = GNUNET_SCHEDULER_add_delayed (WAIT, &end_badly, NULL);
243
244   timer_task = GNUNET_SCHEDULER_add_now (&timer, NULL);
245 }
246
247 void
248 start_cb (struct PeerContext *p, void *cls)
249 {
250   static int started;
251
252   started++;
253
254   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer %u (`%s') started\n", p->no,
255               GNUNET_i2s (&p->id));
256
257   if (started != 2)
258     return;
259
260   char *sender_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
261
262   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
263               "Test tries to connect peer %u (`%s') -> peer %u (`%s')\n",
264               p1->no, sender_c, p2->no, GNUNET_i2s (&p2->id));
265
266   cc = GNUNET_TRANSPORT_TESTING_connect_peers (tth, p1, p2, &testing_connect_cb,
267                                                NULL);
268
269 }
270
271 static void
272 run (void *cls, char *const *args, const char *cfgfile,
273      const struct GNUNET_CONFIGURATION_Handle *cfg)
274 {
275   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
276
277   p1 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p1, 1,
278                                             &notify_receive, &notify_connect,
279                                             &notify_disconnect, &start_cb,
280                                             NULL);
281   p2 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p2, 2,
282                                             &notify_receive, &notify_connect,
283                                             &notify_disconnect, &start_cb,
284                                             NULL);
285
286   if ((p1 == NULL) || (p2 == NULL))
287   {
288     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Fail! Could not start peers!\n");
289     if (die_task != GNUNET_SCHEDULER_NO_TASK)
290       GNUNET_SCHEDULER_cancel (die_task);
291     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
292     return;
293   }
294 }
295
296 static int
297 check ()
298 {
299   static char *const argv[] = { "test-transport-api-timeout",
300     "-c",
301     "test_transport_api_data.conf",
302 #if VERBOSE
303     "-L", "DEBUG",
304 #endif
305     NULL
306   };
307   static struct GNUNET_GETOPT_CommandLineOption options[] = {
308     GNUNET_GETOPT_OPTION_END
309   };
310
311 #if WRITECONFIG
312   setTransportOptions ("test_transport_api_data.conf");
313 #endif
314   timer_task = GNUNET_SCHEDULER_NO_TASK;
315
316   ok = 1;
317   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
318                       "test-transport-api-timeout", "nohelp", options, &run,
319                       &ok);
320
321   return ok;
322 }
323
324 int
325 main (int argc, char *argv[])
326 {
327   int ret;
328
329   GNUNET_TRANSPORT_TESTING_get_test_name (argv[0], &test_name);
330
331   GNUNET_log_setup (test_name,
332 #if VERBOSE
333                     "DEBUG",
334 #else
335                     "WARNING",
336 #endif
337                     NULL);
338
339   GNUNET_TRANSPORT_TESTING_get_test_source_name (__FILE__, &test_source);
340   GNUNET_TRANSPORT_TESTING_get_test_plugin_name (argv[0], test_source,
341                                                  &test_plugin);
342
343   tth = GNUNET_TRANSPORT_TESTING_init ();
344
345   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p1, 1);
346   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p2, 2);
347
348   ret = check ();
349
350   GNUNET_free (cfg_file_p1);
351   GNUNET_free (cfg_file_p2);
352
353   GNUNET_free (test_source);
354   GNUNET_free (test_plugin);
355   GNUNET_free (test_name);
356
357
358   return ret;
359 }
360
361 /* end of test_transport_api_timeout.c*/