(no commit message)
[oweals/gnunet.git] / src / transport / test_transport_api.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009 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 2, 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.c
22  * @brief testcase for transport_api.c
23  */
24 #include "platform.h"
25 #include "gnunet_common.h"
26 #include "gnunet_hello_lib.h"
27 #include "gnunet_getopt_lib.h"
28 #include "gnunet_os_lib.h"
29 #include "gnunet_program_lib.h"
30 #include "gnunet_scheduler_lib.h"
31 #include "gnunet_transport_service.h"
32 #include "transport.h"
33
34 #define VERBOSE GNUNET_YES
35
36 #define VERBOSE_ARM GNUNET_YES
37
38 #define START_ARM GNUNET_YES
39
40 #define VERBOSE_TRANSPORT GNUNET_YES
41
42 /**
43  * How long until we give up on transmitting the message?
44  */
45 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
46
47 #define MTYPE 12345
48
49 struct PeerContext
50 {
51   struct GNUNET_CONFIGURATION_Handle *cfg;
52   struct GNUNET_TRANSPORT_Handle *th;
53   struct GNUNET_PeerIdentity id;
54 #if START_ARM
55   pid_t arm_pid;
56 #endif
57 };
58
59 static struct PeerContext p1;
60
61 static struct PeerContext p2;
62
63 static struct GNUNET_SCHEDULER_Handle *sched;
64
65 static int ok;
66
67 static int is_tcp;
68
69 static int is_udp;
70
71 #if VERBOSE
72 #define OKPP do { ok++; fprintf (stderr, "Now at stage %u at %s:%u\n", ok, __FILE__, __LINE__); } while (0)
73 #else
74 #define OKPP do { ok++; } while (0)
75 #endif
76
77
78 static void
79 end ()
80 {
81   /* do work here */
82   //GNUNET_assert (ok == 8);
83   GNUNET_TRANSPORT_disconnect (p1.th);
84   GNUNET_TRANSPORT_disconnect (p2.th);
85   ok = 0;
86 }
87
88
89 static void
90 notify_receive (void *cls,
91                 const struct GNUNET_PeerIdentity *peer,
92                 const struct GNUNET_MessageHeader *message,
93                 struct GNUNET_TIME_Relative latency,
94                 uint32_t distance)
95 {
96   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ok is (%d)!\n",
97               ok);
98   //GNUNET_assert (ok == 7);
99   OKPP;
100   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received message of type %d from peer (%p)!\n",
101                 ntohs(message->type), cls);
102
103   //GNUNET_assert (MTYPE == ntohs (message->type));
104   //GNUNET_assert (sizeof (struct GNUNET_MessageHeader) ==
105   //               ntohs (message->size));
106   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received message from peer (%p)!\n",
107               cls);
108   end ();
109 }
110
111
112 static void
113 notify_connect (void *cls,
114                 const struct GNUNET_PeerIdentity *peer,
115                 struct GNUNET_TIME_Relative latency,
116                 uint32_t distance)
117 {
118   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
119               "Peer `%4s' connected to us (%p)!\n", GNUNET_i2s (peer), cls);
120   GNUNET_assert ((ok >= 1) && (ok <= 6));
121   OKPP;
122 }
123
124
125 static void
126 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
127 {
128   ok--;
129 }
130
131
132 static void
133 setup_peer (struct PeerContext *p, const char *cfgname)
134 {
135   p->cfg = GNUNET_CONFIGURATION_create ();
136 #if START_ARM
137   p->arm_pid = GNUNET_OS_start_process ("gnunet-service-arm",
138                                         "gnunet-service-arm",
139 #if VERBOSE_ARM
140                                         "-L", "DEBUG",
141 #endif
142                                         "-c", cfgname, NULL);
143 #endif
144   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
145
146   p->th = GNUNET_TRANSPORT_connect (sched, p->cfg,
147                                     p,
148                                     &notify_receive,
149                                     &notify_connect, &notify_disconnect);
150   GNUNET_assert (p->th != NULL);
151 }
152
153
154 static size_t
155 notify_ready (void *cls, size_t size, void *buf)
156 {
157   struct GNUNET_MessageHeader *hdr;
158
159   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
160               "Transmitting message to peer (%p) - %u!\n", cls, size);
161   //GNUNET_assert (size >= 256);
162   //GNUNET_assert ((ok >= 5) && (ok <= 6));
163   OKPP;
164   if (buf != NULL)
165   {
166     hdr = buf;
167     hdr->size = htons (sizeof (struct GNUNET_MessageHeader));
168     hdr->type = htons (MTYPE);
169   }
170
171   return 0;
172   //return sizeof (struct GNUNET_MessageHeader);
173 }
174
175
176 static void
177 exchange_hello_last (void *cls,
178                      const struct GNUNET_MessageHeader *message)
179 {
180   struct PeerContext *me = cls;
181
182   GNUNET_TRANSPORT_get_hello_cancel (p2.th, &exchange_hello_last, me);
183   /* Infinite loop, how was this supposed to work? *sound of nate ripping
184    * hair out* */
185   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
186               "Exchanging HELLO with peer (%p)!\n", cls);
187   GNUNET_assert (ok >= 3);
188   OKPP;
189   GNUNET_assert (message != NULL);
190   GNUNET_assert (GNUNET_OK ==
191                  GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message *)
192                                       message, &me->id));
193   GNUNET_TRANSPORT_offer_hello (p1.th, message);
194   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
195               "Finished exchanging HELLOs, now waiting for transmission!\n");
196
197   /* both HELLOs exchanged, get ready to test transmission! */
198   GNUNET_TRANSPORT_notify_transmit_ready (p1.th,
199                                           &p2.id,
200                                           256, 0, TIMEOUT, &notify_ready,
201                                           &p1);
202 }
203
204
205 static void
206 exchange_hello (void *cls,
207                 const struct GNUNET_MessageHeader *message)
208 {
209   struct PeerContext *me = cls;
210
211   GNUNET_TRANSPORT_get_hello_cancel (p1.th, &exchange_hello, me);
212   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
213               "Exchanging HELLO with peer (%p)!\n", cls);
214   GNUNET_assert (ok >= 2);
215   OKPP;
216   GNUNET_assert (message != NULL);
217   GNUNET_assert (GNUNET_OK ==
218                  GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message *)
219                                       message, &me->id));
220   GNUNET_TRANSPORT_get_hello (p2.th, &exchange_hello_last, &p2);
221 }
222
223 static void
224 setTransportOptions(char * filename)
225 {
226   struct GNUNET_CONFIGURATION_Handle * tempcfg;
227
228   tempcfg = GNUNET_CONFIGURATION_create();
229   GNUNET_CONFIGURATION_load (tempcfg, filename);
230
231   unsigned long long curr_port;
232   GNUNET_CONFIGURATION_get_value_number(tempcfg, "transport", "port", &curr_port);
233
234   if (is_udp)
235     {
236       GNUNET_CONFIGURATION_set_value_string(tempcfg, "transport", "plugins", "udp");
237       GNUNET_CONFIGURATION_set_value_number(tempcfg, "transport-udp", "PORT", curr_port + 3);
238     }
239   else if (is_tcp)
240     {
241       GNUNET_CONFIGURATION_set_value_string(tempcfg, "transport", "plugins", "tcp");
242       GNUNET_CONFIGURATION_set_value_number(tempcfg, "transport-tcp", "port", curr_port + 3);
243     }
244
245 #if VERBOSE_TRANSPORT
246       GNUNET_CONFIGURATION_set_value_string(tempcfg, "transport", "DEBUG", "YES");
247       GNUNET_CONFIGURATION_set_value_string(tempcfg, "transport", "PREFIX", "xterm -e xterm -T transport -e gdb --args");
248 #endif
249
250   GNUNET_CONFIGURATION_write(tempcfg, filename);
251   return;
252 }
253
254 static void
255 run (void *cls,
256      struct GNUNET_SCHEDULER_Handle *s,
257      char *const *args,
258      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
259 {
260   GNUNET_assert (ok == 1);
261   OKPP;
262   sched = s;
263
264   setTransportOptions("test_transport_api_peer1.conf");
265   setTransportOptions("test_transport_api_peer2.conf");
266
267   setup_peer (&p1, "test_transport_api_peer1.conf");
268   setup_peer (&p2, "test_transport_api_peer2.conf");
269   GNUNET_TRANSPORT_get_hello (p1.th, &exchange_hello, &p1);
270 }
271
272
273 static void
274 stop_arm (struct PeerContext *p)
275 {
276 #if START_ARM
277   if (0 != PLIBC_KILL (p->arm_pid, SIGTERM))
278     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
279   GNUNET_OS_process_wait (p->arm_pid);
280 #endif
281   GNUNET_CONFIGURATION_destroy (p->cfg);
282 }
283
284 static int
285 check ()
286 {
287
288   char *const argv[] = { "test-transport-api",
289     "-c",
290     "test_transport_api_data.conf",
291 #if VERBOSE
292     "-L", "DEBUG",
293 #endif
294     NULL
295   };
296
297   setTransportOptions("test_transport_api_data.conf");
298
299   struct GNUNET_GETOPT_CommandLineOption options[] = {
300     GNUNET_GETOPT_OPTION_END
301   };
302
303   ok = 1;
304   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
305                       argv, "test-transport-api", "nohelp",
306                       options, &run, &ok);
307   stop_arm (&p1);
308   stop_arm (&p2);
309   return ok;
310 }
311
312 int
313 main (int argc, char *argv[])
314 {
315   int ret;
316
317   if (strstr(argv[0], "tcp") != NULL)
318     {
319       is_tcp = GNUNET_YES;
320     }
321   else if (strstr(argv[0], "udp") != NULL)
322     {
323       is_udp = GNUNET_YES;
324     }
325
326
327   GNUNET_log_setup ("test-transport-api",
328 #if VERBOSE
329                     "DEBUG",
330 #else
331                     "WARNING",
332 #endif
333                     NULL);
334   ret = check ();
335   GNUNET_DISK_directory_remove ("/tmp/test-gnunetd-transport-peer-1");
336   GNUNET_DISK_directory_remove ("/tmp/test-gnunetd-transport-peer-2");
337   return ret;
338 }
339
340 /* end of test_transport_api.c */