-options to play with
[oweals/gnunet.git] / src / core / test_core_api.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 core/test_core_api.c
22  * @brief testcase for core_api.c
23  */
24 #include "platform.h"
25 #include "gnunet_common.h"
26 #include "gnunet_arm_service.h"
27 #include "gnunet_core_service.h"
28 #include "gnunet_getopt_lib.h"
29 #include "gnunet_os_lib.h"
30 #include "gnunet_program_lib.h"
31 #include "gnunet_scheduler_lib.h"
32 #include "gnunet_transport_service.h"
33
34 #define MTYPE 12345
35
36 struct PeerContext
37 {
38   struct GNUNET_CONFIGURATION_Handle *cfg;
39   struct GNUNET_CORE_Handle *ch;
40   struct GNUNET_PeerIdentity id;
41   struct GNUNET_TRANSPORT_Handle *th;
42   struct GNUNET_TRANSPORT_GetHelloHandle *ghh;
43   struct GNUNET_MessageHeader *hello;
44   int connect_status;
45   struct GNUNET_OS_Process *arm_proc;
46 };
47
48 static struct PeerContext p1;
49
50 static struct PeerContext p2;
51
52 static GNUNET_SCHEDULER_TaskIdentifier err_task;
53
54 static GNUNET_SCHEDULER_TaskIdentifier con_task;
55
56 static int ok;
57
58 #define OKPP do { ok++; GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Now at stage %u at %s:%u\n", ok, __FILE__, __LINE__); } while (0)
59
60
61 static void
62 process_hello (void *cls, const struct GNUNET_MessageHeader *message)
63 {
64   struct PeerContext *p = cls;
65
66   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
67               "Received (my) `%s' from transport service\n", "HELLO");
68   GNUNET_assert (message != NULL);
69   if ((p == &p1) && (p2.th != NULL))
70     GNUNET_TRANSPORT_offer_hello (p2.th, message, NULL, NULL);
71   if ((p == &p2) && (p1.th != NULL))
72     GNUNET_TRANSPORT_offer_hello (p1.th, message, NULL, NULL);
73 }
74
75
76 static void
77 terminate_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
78 {
79   GNUNET_assert (ok == 6);
80   GNUNET_CORE_disconnect (p1.ch);
81   p1.ch = NULL;
82   GNUNET_CORE_disconnect (p2.ch);
83   p2.ch = NULL;
84   GNUNET_TRANSPORT_get_hello_cancel (p1.ghh);
85   p1.ghh = NULL;
86   GNUNET_TRANSPORT_get_hello_cancel (p2.ghh);
87   p2.ghh = NULL;
88   GNUNET_TRANSPORT_disconnect (p1.th);
89   p1.th = NULL;
90   GNUNET_TRANSPORT_disconnect (p2.th);
91   p2.th = NULL;
92   if (GNUNET_SCHEDULER_NO_TASK != con_task)
93   {
94     GNUNET_SCHEDULER_cancel (con_task);
95     con_task = GNUNET_SCHEDULER_NO_TASK;
96   }
97   ok = 0;
98 }
99
100
101 static void
102 terminate_task_error (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
103 {
104   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
105               "ENDING ANGRILY %u\n", ok);
106   GNUNET_break (0);
107   if (NULL != p1.ch)
108   {
109     GNUNET_CORE_disconnect (p1.ch);
110     p1.ch = NULL;
111   }
112   if (NULL != p2.ch)
113   {
114     GNUNET_CORE_disconnect (p2.ch);
115     p2.ch = NULL;
116   }
117   if (p1.th != NULL)
118   {
119     GNUNET_TRANSPORT_get_hello_cancel (p1.ghh);
120     GNUNET_TRANSPORT_disconnect (p1.th);
121     p1.th = NULL;
122   }
123   if (p2.th != NULL)
124   {
125     GNUNET_TRANSPORT_get_hello_cancel (p2.ghh);
126     GNUNET_TRANSPORT_disconnect (p2.th);
127     p2.th = NULL;
128   }
129   if (GNUNET_SCHEDULER_NO_TASK != con_task)
130   {
131     GNUNET_SCHEDULER_cancel (con_task);
132     con_task = GNUNET_SCHEDULER_NO_TASK;
133   }
134   ok = 42;
135 }
136
137
138 static size_t
139 transmit_ready (void *cls, size_t size, void *buf)
140 {
141   struct PeerContext *p = cls;
142   struct GNUNET_MessageHeader *m;
143
144   GNUNET_assert (ok == 4);
145   OKPP;
146   GNUNET_assert (p == &p1);
147   GNUNET_assert (buf != NULL);
148   m = (struct GNUNET_MessageHeader *) buf;
149   m->type = htons (MTYPE);
150   m->size = htons (sizeof (struct GNUNET_MessageHeader));
151   return sizeof (struct GNUNET_MessageHeader);
152 }
153
154
155 static void
156 connect_notify (void *cls, const struct GNUNET_PeerIdentity *peer,
157                 const struct GNUNET_ATS_Information *atsi,
158                 unsigned int atsi_count)
159 {
160   struct PeerContext *pc = cls;
161
162   if (0 == memcmp (&pc->id, peer, sizeof (struct GNUNET_PeerIdentity)))
163     return;
164   GNUNET_assert (pc->connect_status == 0);
165   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
166               "Encrypted connection established to peer `%4s'\n",
167               GNUNET_i2s (peer));
168   if (GNUNET_SCHEDULER_NO_TASK != con_task)
169   {
170     GNUNET_SCHEDULER_cancel (con_task);
171     con_task = GNUNET_SCHEDULER_NO_TASK;
172   }
173   pc->connect_status = 1;
174   if (pc == &p1)
175   {
176     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
177                 "Asking core (1) for transmission to peer `%4s'\n",
178                 GNUNET_i2s (&p2.id));
179     if (NULL ==
180         GNUNET_CORE_notify_transmit_ready (p1.ch, GNUNET_YES, 0,
181                                            GNUNET_TIME_relative_multiply
182                                            (GNUNET_TIME_UNIT_SECONDS, 145),
183                                            &p2.id,
184                                            sizeof (struct GNUNET_MessageHeader),
185                                            &transmit_ready, &p1))
186     {
187       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
188                   "RECEIVED NULL when asking core (1) for transmission to peer `%4s'\n",
189                   GNUNET_i2s (&p2.id));
190     }
191   }
192 }
193
194
195 static void
196 disconnect_notify (void *cls, const struct GNUNET_PeerIdentity *peer)
197 {
198   struct PeerContext *pc = cls;
199
200   if (0 == memcmp (&pc->id, peer, sizeof (struct GNUNET_PeerIdentity)))
201     return;
202   pc->connect_status = 0;
203   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Encrypted connection to `%4s' cut\n",
204               GNUNET_i2s (peer));
205 }
206
207
208 static int
209 inbound_notify (void *cls, const struct GNUNET_PeerIdentity *other,
210                 const struct GNUNET_MessageHeader *message,
211                 const struct GNUNET_ATS_Information *atsi,
212                 unsigned int atsi_count)
213 {
214   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
215               "Core provides inbound data from `%4s'.\n", GNUNET_i2s (other));
216   return GNUNET_OK;
217 }
218
219
220 static int
221 outbound_notify (void *cls, const struct GNUNET_PeerIdentity *other,
222                  const struct GNUNET_MessageHeader *message,
223                  const struct GNUNET_ATS_Information *atsi,
224                  unsigned int atsi_count)
225 {
226   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
227               "Core notifies about outbound data for `%4s'.\n",
228               GNUNET_i2s (other));
229   return GNUNET_OK;
230 }
231
232
233
234 static int
235 process_mtype (void *cls, const struct GNUNET_PeerIdentity *peer,
236                const struct GNUNET_MessageHeader *message,
237                const struct GNUNET_ATS_Information *atsi,
238                unsigned int atsi_count)
239 {
240   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Receiving message from `%4s'.\n",
241               GNUNET_i2s (peer));
242   GNUNET_assert (ok == 5);
243   OKPP;
244   GNUNET_SCHEDULER_cancel (err_task);
245   err_task = GNUNET_SCHEDULER_add_now (&terminate_task, NULL);
246   return GNUNET_OK;
247 }
248
249
250 static struct GNUNET_CORE_MessageHandler handlers[] = {
251   {&process_mtype, MTYPE, sizeof (struct GNUNET_MessageHeader)},
252   {NULL, 0, 0}
253 };
254
255
256 static void
257 connect_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
258 {
259   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
260   {
261     con_task = GNUNET_SCHEDULER_NO_TASK;
262     return;
263   }
264   con_task =
265       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &connect_task,
266                                     NULL);
267   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
268               "Asking transport (1) to connect to peer `%4s'\n",
269               GNUNET_i2s (&p2.id));
270   GNUNET_TRANSPORT_try_connect (p1.th, &p2.id, NULL, NULL); /*FIXME TRY_CONNECT change */
271 }
272
273
274 static void
275 init_notify (void *cls, struct GNUNET_CORE_Handle *server,
276              const struct GNUNET_PeerIdentity *my_identity)
277 {
278   struct PeerContext *p = cls;
279
280   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Core connection to `%4s' established\n",
281               GNUNET_i2s (my_identity));
282   GNUNET_assert (server != NULL);
283   p->id = *my_identity;
284   p->ch = server;
285   if (cls == &p1)
286   {
287     GNUNET_assert (ok == 2);
288     OKPP;
289     /* connect p2 */
290     p2.ch =
291         GNUNET_CORE_connect (p2.cfg, &p2, &init_notify, &connect_notify,
292                              &disconnect_notify, &inbound_notify, GNUNET_YES,
293                              &outbound_notify, GNUNET_YES, handlers);
294   }
295   else
296   {
297     GNUNET_assert (ok == 3);
298     OKPP;
299     GNUNET_assert (cls == &p2);
300     con_task = GNUNET_SCHEDULER_add_now (&connect_task, NULL);
301   }
302 }
303
304
305 static void
306 setup_peer (struct PeerContext *p, const char *cfgname)
307 {
308   char *binary;
309
310   binary = GNUNET_OS_get_libexec_binary_path ("gnunet-service-arm");
311   p->cfg = GNUNET_CONFIGURATION_create ();
312   p->arm_proc =
313     GNUNET_OS_start_process (GNUNET_YES, GNUNET_OS_INHERIT_STD_OUT_AND_ERR, 
314                              NULL, NULL, 
315                              binary,
316                              "gnunet-service-arm",
317                                "-c", cfgname, NULL);
318   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
319   p->th = GNUNET_TRANSPORT_connect (p->cfg, NULL, p, NULL, NULL, NULL);
320   GNUNET_assert (p->th != NULL);
321   p->ghh = GNUNET_TRANSPORT_get_hello (p->th, &process_hello, p);
322   GNUNET_free (binary);
323 }
324
325
326 static void
327 run (void *cls, char *const *args, const char *cfgfile,
328      const struct GNUNET_CONFIGURATION_Handle *cfg)
329 {
330   GNUNET_assert (ok == 1);
331   OKPP;
332   setup_peer (&p1, "test_core_api_peer1.conf");
333   setup_peer (&p2, "test_core_api_peer2.conf");
334   err_task =
335       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
336                                     (GNUNET_TIME_UNIT_SECONDS, 300),
337                                     &terminate_task_error, NULL);
338   p1.ch =
339       GNUNET_CORE_connect (p1.cfg, &p1, &init_notify, &connect_notify,
340                            &disconnect_notify, &inbound_notify, GNUNET_YES,
341                            &outbound_notify, GNUNET_YES, handlers);
342 }
343
344
345 static void
346 stop_arm (struct PeerContext *p)
347 {
348   if (0 != GNUNET_OS_process_kill (p->arm_proc, SIGTERM))
349     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
350   if (GNUNET_OS_process_wait (p->arm_proc) != GNUNET_OK)
351     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "waitpid");
352   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ARM process %u stopped\n",
353               GNUNET_OS_process_get_pid (p->arm_proc));
354   GNUNET_OS_process_destroy (p->arm_proc);
355   p->arm_proc = NULL;
356   GNUNET_CONFIGURATION_destroy (p->cfg);
357 }
358
359
360 static int
361 check ()
362 {
363   char *const argv[] = { "test-core-api",
364     "-c",
365     "test_core_api_data.conf",
366     NULL
367   };
368   struct GNUNET_GETOPT_CommandLineOption options[] = {
369     GNUNET_GETOPT_OPTION_END
370   };
371   ok = 1;
372   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
373                       "test-core-api", "nohelp", options, &run, &ok);
374   stop_arm (&p1);
375   stop_arm (&p2);
376   return ok;
377 }
378
379 int
380 main (int argc, char *argv[])
381 {
382   int ret;
383
384   GNUNET_log_setup ("test-core-api",
385                     "WARNING",
386                     NULL);
387   ret = check ();
388   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-core-peer-1");
389   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-core-peer-2");
390
391   return ret;
392 }
393
394 /* end of test_core_api.c */