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