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