increase timeout
[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_NO
35
36 #define VERBOSE_ARM GNUNET_NO
37
38 #define START_ARM GNUNET_YES
39
40 /**
41  * How long until we give up on transmitting the message?
42  */
43 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 300)
44
45 #define MTYPE 12345
46
47 struct PeerContext
48 {
49   struct GNUNET_CONFIGURATION_Handle *cfg;
50   struct GNUNET_TRANSPORT_Handle *th;
51   struct GNUNET_PeerIdentity id;
52 #if START_ARM
53   pid_t arm_pid;
54 #endif
55 };
56
57 static struct PeerContext p1;
58
59 static struct PeerContext p2;
60
61 static struct GNUNET_SCHEDULER_Handle *sched;
62
63 static int ok;
64
65 #if VERBOSE
66 #define OKPP do { ok++; fprintf (stderr, "Now at stage %u at %s:%u\n", ok, __FILE__, __LINE__); } while (0)
67 #else
68 #define OKPP do { ok++; } while (0)
69 #endif
70
71
72 static void
73 end ()
74 {
75   /* do work here */
76   GNUNET_assert (ok == 8);
77   GNUNET_TRANSPORT_disconnect (p1.th);
78   GNUNET_TRANSPORT_disconnect (p2.th);
79   ok = 0;
80 }
81
82
83 /**
84  * Function called by the transport for each received message.
85  *
86  * @param cls closure
87  * @param latency estimated latency for communicating with the
88  *             given peer
89  * @param peer (claimed) identity of the other peer
90  * @param message the message
91  */
92 static void
93 notify_receive (void *cls,
94                 struct GNUNET_TIME_Relative latency,
95                 const struct GNUNET_PeerIdentity *peer,
96                 const struct GNUNET_MessageHeader *message)
97 {
98   GNUNET_assert (ok == 7);
99   OKPP;
100   GNUNET_assert (MTYPE == ntohs (message->type));
101   GNUNET_assert (sizeof (struct GNUNET_MessageHeader) ==
102                  ntohs (message->size));
103   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received message from peer (%p)!\n",
104               cls);
105   end ();
106 }
107
108
109 /**
110  * Function called to notify transport users that another
111  * peer connected to us.
112  *
113  * @param cls closure
114  * @param transport the transport service handle
115  * @param peer the peer that disconnected
116  * @param latency current latency of the connection
117  */
118 static void
119 notify_connect (void *cls,
120                 const struct GNUNET_PeerIdentity *peer,
121                 struct GNUNET_TIME_Relative latency)
122 {
123   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
124               "Peer `%4s' connected to us (%p)!\n", 
125               GNUNET_i2s(peer),
126               cls);
127   GNUNET_assert ((ok >= 1) && (ok <= 6));
128   OKPP;
129 }
130
131
132 /**
133  * Function called to notify transport users that another
134  * peer disconnected from us.
135  *
136  * @param cls closure
137  * @param transport the transport service handle
138  * @param peer the peer that disconnected
139  */
140 static void
141 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
142 {
143   ok--;
144 }
145
146
147 static void
148 setup_peer (struct PeerContext *p, const char *cfgname)
149 {
150   p->cfg = GNUNET_CONFIGURATION_create ();
151 #if START_ARM
152   p->arm_pid = GNUNET_OS_start_process ("gnunet-service-arm",
153                                         "gnunet-service-arm",
154 #if VERBOSE_ARM
155                                         "-L", "DEBUG",
156 #endif
157                                         "-c", cfgname, NULL);
158 #endif
159   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
160   p->th = GNUNET_TRANSPORT_connect (sched, p->cfg,
161                                     p,
162                                     &notify_receive,
163                                     &notify_connect, &notify_disconnect);
164   GNUNET_assert (p->th != NULL);
165 }
166
167
168 static size_t
169 notify_ready (void *cls, size_t size, void *buf)
170 {
171   struct GNUNET_MessageHeader *hdr;
172
173   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
174               "Transmitting message to peer (%p) - %u!\n", cls, size);
175   GNUNET_assert (size >= 256);
176   GNUNET_assert ((ok >= 5) && (ok <= 6));
177   OKPP;
178   hdr = buf;
179   hdr->size = htons (sizeof (struct GNUNET_MessageHeader));
180   hdr->type = htons (MTYPE);
181   return sizeof (struct GNUNET_MessageHeader);
182 }
183
184
185 static void
186 exchange_hello_last (void *cls,
187                      struct GNUNET_TIME_Relative latency,
188                      const struct GNUNET_PeerIdentity *peer,
189                      const struct GNUNET_MessageHeader *message)
190 {
191   struct PeerContext *me = cls;
192
193   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
194               "Exchanging HELLO with peer (%p)!\n", cls);
195   GNUNET_assert (ok >= 3);
196   OKPP;
197   GNUNET_assert (message != NULL);
198   GNUNET_assert (GNUNET_OK ==
199                  GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message *)
200                                       message, &me->id));
201   GNUNET_TRANSPORT_offer_hello (p1.th, message);
202   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
203               "Finished exchanging HELLOs, now waiting for transmission!\n");
204   /* both HELLOs exchanged, get ready to test transmission! */
205   GNUNET_TRANSPORT_notify_transmit_ready (p1.th,
206                                           &p2.id,
207                                           256, 0, TIMEOUT, &notify_ready, &p1);
208 }
209
210
211 static void
212 exchange_hello (void *cls,
213                 struct GNUNET_TIME_Relative latency,
214                 const struct GNUNET_PeerIdentity *peer,
215                 const struct GNUNET_MessageHeader *message)
216 {
217   struct PeerContext *me = cls;
218
219   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
220               "Exchanging HELLO with peer (%p)!\n", cls);
221   GNUNET_assert (ok >= 2);
222   OKPP;
223   GNUNET_assert (message != NULL);
224   GNUNET_assert (GNUNET_OK ==
225                  GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message *)
226                                       message, &me->id));
227   GNUNET_TRANSPORT_get_hello (p2.th,
228                               TIMEOUT,
229                               &exchange_hello_last, &p2);
230 }
231
232
233 static void
234 run (void *cls,
235      struct GNUNET_SCHEDULER_Handle *s,
236      char *const *args,
237      const char *cfgfile,
238      const struct GNUNET_CONFIGURATION_Handle *cfg)
239 {
240   GNUNET_assert (ok == 1);
241   OKPP;
242   sched = s;
243   setup_peer (&p1, "test_transport_api_peer1.conf");
244   setup_peer (&p2, "test_transport_api_peer2.conf");
245   GNUNET_TRANSPORT_get_hello (p1.th,
246                               TIMEOUT, &exchange_hello, &p1);
247 }
248
249
250 static void
251 stop_arm (struct PeerContext *p)
252 {
253 #if START_ARM
254   if (0 != PLIBC_KILL (p->arm_pid, SIGTERM))
255     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
256   GNUNET_OS_process_wait(p->arm_pid);
257 #endif
258   GNUNET_CONFIGURATION_destroy (p->cfg);
259 }
260
261
262 static int
263 check ()
264 {
265   char *const argv[] = { "test-transport-api",
266     "-c",
267     "test_transport_api_data.conf",
268 #if VERBOSE
269     "-L", "DEBUG",
270 #endif
271     NULL
272   };
273   struct GNUNET_GETOPT_CommandLineOption options[] = {
274     GNUNET_GETOPT_OPTION_END
275   };
276
277   ok = 1;
278   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
279                       argv, "test-transport-api", "nohelp",
280                       options, &run, &ok);
281   stop_arm (&p1);
282   stop_arm (&p2);
283   return ok;
284 }
285
286 int
287 main (int argc, char *argv[])
288 {
289   int ret;
290
291   GNUNET_log_setup ("test-transport-api",
292 #if VERBOSE
293                     "DEBUG",
294 #else
295                     "WARNING",
296 #endif
297                     NULL);
298   ret = check ();
299   GNUNET_DISK_directory_remove ("/tmp/test-gnunetd-transport-peer-1"); 
300   GNUNET_DISK_directory_remove ("/tmp/test-gnunetd-transport-peer-2");
301   return ret;
302 }
303
304 /* end of test_transport_api.c */