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