convert fs publish to MQ
[oweals/gnunet.git] / src / conversation / test_conversation_api.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2013, 2014 GNUnet e.V.
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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20 /**
21  * @file conversation/test_conversation_api.c
22  * @brief testcase for conversation_api.c
23  *
24  * This test performs the operations of a call to a phone
25  * where the phone user picks up and then the call is
26  * terminated by the party that initiated the call.
27  */
28 #include "platform.h"
29 #include "gnunet_util_lib.h"
30 #include "gnunet_testing_lib.h"
31 #include "gnunet_gnsrecord_lib.h"
32 #include "gnunet_conversation_service.h"
33 #include "gnunet_identity_service.h"
34 #include "gnunet_namestore_service.h"
35
36 #define FREQ GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, 250)
37
38 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 25)
39
40 static int ok = 1;
41
42 static const struct GNUNET_CONFIGURATION_Handle *cfg;
43
44 static struct GNUNET_IDENTITY_Handle *id;
45
46 static struct GNUNET_IDENTITY_Operation *op;
47
48 static struct GNUNET_CONVERSATION_Phone *phone;
49
50 static struct GNUNET_NAMESTORE_Handle *ns;
51
52 static struct GNUNET_CONVERSATION_Call *call;
53
54 static struct GNUNET_NAMESTORE_QueueEntry *qe;
55
56 static struct GNUNET_CONVERSATION_Caller *active_caller;
57
58 static char *gns_name;
59
60 static char *gns_caller_id;
61
62 static GNUNET_MICROPHONE_RecordedDataCallback phone_rdc;
63
64 static void *phone_rdc_cls;
65
66 static GNUNET_MICROPHONE_RecordedDataCallback call_rdc;
67
68 static void *call_rdc_cls;
69
70 static struct GNUNET_SCHEDULER_Task *phone_task;
71
72 static struct GNUNET_SCHEDULER_Task *call_task;
73
74
75 static void
76 phone_send (void *cls)
77 {
78   static unsigned int i;
79   char buf[32];
80
81   GNUNET_assert (NULL != phone_rdc);
82   GNUNET_snprintf (buf, sizeof (buf), "phone-%u", i++);
83   phone_rdc (phone_rdc_cls, strlen (buf) + 1, buf);
84   phone_task = GNUNET_SCHEDULER_add_delayed (FREQ,
85                                              &phone_send, NULL);
86 }
87
88
89 static void
90 call_send (void *cls)
91 {
92   static unsigned int i;
93   char buf[32];
94
95   GNUNET_assert (NULL != call_rdc);
96   GNUNET_snprintf (buf, sizeof (buf), "call-%u", i++);
97   call_rdc (call_rdc_cls, strlen (buf) + 1, buf);
98   call_task = GNUNET_SCHEDULER_add_delayed (FREQ,
99                                             &call_send, NULL);
100 }
101
102
103 static int
104 enable_speaker (void *cls)
105 {
106   const char *origin = cls;
107
108   fprintf (stderr,
109            "Speaker %s enabled\n",
110            origin);
111   return GNUNET_OK;
112 }
113
114
115 static void
116 disable_speaker (void *cls)
117 {
118   const char *origin = cls;
119
120   fprintf (stderr,
121            "Speaker %s disabled\n",
122            origin);
123 }
124
125
126 static void
127 play (void *cls,
128       size_t data_size,
129       const void *data)
130 {
131   const char *origin = cls;
132   static unsigned int phone_i = 1;
133   static unsigned int call_i;
134   char buf[32];
135
136   if (0 == strcmp (origin, "phone"))
137     GNUNET_snprintf (buf, sizeof (buf), "call-%u", call_i++);
138   else
139     GNUNET_snprintf (buf, sizeof (buf), "phone-%u", phone_i++);
140   if ( (data_size != strlen (buf) + 1) ||
141        (0 != strncmp (buf, data, data_size)) )
142   {
143     fprintf (stderr,
144              "Expected %s, received %.*s\n",
145              buf,
146              (int) data_size,
147              (const char *) data);
148   }
149   else
150   {
151     fprintf (stderr, ".");
152   }
153   if ( (20 < call_i) &&
154        (20 < phone_i) &&
155        (NULL != call) )
156   {
157     /* time to hang up ... */
158     GNUNET_CONVERSATION_call_stop (call);
159     call = NULL;
160   }
161 }
162
163
164 static void
165 destroy_speaker (void *cls)
166 {
167   const char *origin = cls;
168
169   fprintf (stderr, "Speaker %s destroyed\n", origin);
170 }
171
172
173 static struct GNUNET_SPEAKER_Handle call_speaker = {
174   &enable_speaker,
175   &play,
176   &disable_speaker,
177   &destroy_speaker,
178   "caller"
179 };
180
181
182 static struct GNUNET_SPEAKER_Handle phone_speaker = {
183   &enable_speaker,
184   &play,
185   &disable_speaker,
186   &destroy_speaker,
187   "phone"
188 };
189
190
191 static int
192 enable_mic (void *cls,
193             GNUNET_MICROPHONE_RecordedDataCallback rdc,
194             void *rdc_cls)
195 {
196   const char *origin = cls;
197
198   fprintf (stderr,
199            "Mic %s enabled\n",
200            origin);
201   if (0 == strcmp (origin, "phone"))
202   {
203     phone_rdc = rdc;
204     phone_rdc_cls = rdc_cls;
205     phone_task = GNUNET_SCHEDULER_add_now (&phone_send, NULL);
206   }
207   else
208   {
209     call_rdc = rdc;
210     call_rdc_cls = rdc_cls;
211     call_task = GNUNET_SCHEDULER_add_now (&call_send, NULL);
212   }
213   return GNUNET_OK;
214 }
215
216
217 static void
218 disable_mic (void *cls)
219 {
220   const char *origin = cls;
221
222   fprintf (stderr,
223            "Mic %s disabled\n",
224            origin);
225   if (0 == strcmp (origin, "phone"))
226   {
227     phone_rdc = NULL;
228     phone_rdc_cls = NULL;
229     GNUNET_SCHEDULER_cancel (phone_task);
230     phone_task = NULL;
231   }
232   else
233   {
234     call_rdc = NULL;
235     call_rdc_cls = NULL;
236     GNUNET_SCHEDULER_cancel (call_task);
237     call_task = NULL;
238   }
239 }
240
241
242 static void
243 destroy_mic (void *cls)
244 {
245   const char *origin = cls;
246
247   fprintf (stderr,
248            "Mic %s destroyed\n",
249            origin);
250 }
251
252
253 static struct GNUNET_MICROPHONE_Handle call_mic = {
254   &enable_mic,
255   &disable_mic,
256   &destroy_mic,
257   "caller"
258 };
259
260
261 static struct GNUNET_MICROPHONE_Handle phone_mic = {
262   &enable_mic,
263   &disable_mic,
264   &destroy_mic,
265   "phone"
266 };
267
268
269 /**
270  * Signature of the main function of a task.
271  *
272  * @param cls closure
273  */
274 static void
275 end_test (void *cls)
276 {
277   GNUNET_SCHEDULER_shutdown ();
278   if (NULL != op)
279   {
280     GNUNET_IDENTITY_cancel (op);
281     op = NULL;
282   }
283   if (NULL != call)
284   {
285     GNUNET_CONVERSATION_call_stop (call);
286     call = NULL;
287   }
288   if (NULL != phone)
289   {
290     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Disconnecting from PHONE service.\n");
291     GNUNET_CONVERSATION_phone_destroy (phone);
292     phone = NULL;
293   }
294   if (NULL != id)
295   {
296     GNUNET_IDENTITY_disconnect (id);
297     id = NULL;
298   }
299   if (NULL != qe)
300   {
301     GNUNET_NAMESTORE_cancel (qe);
302     qe = NULL;
303   }
304   if (NULL != ns)
305   {
306     GNUNET_NAMESTORE_disconnect (ns);
307     ns = NULL;
308   }
309 }
310
311
312 static void
313 caller_event_handler (void *cls,
314                       enum GNUNET_CONVERSATION_CallerEventCode code)
315 {
316   switch (code)
317   {
318   case GNUNET_CONVERSATION_EC_CALLER_SUSPEND:
319   case GNUNET_CONVERSATION_EC_CALLER_RESUME:
320     fprintf (stderr, "Unexpected caller code: %d\n", code);
321     break;
322   }
323 }
324
325
326 static void
327 phone_event_handler (void *cls,
328                      enum GNUNET_CONVERSATION_PhoneEventCode code,
329                      struct GNUNET_CONVERSATION_Caller *caller,
330                      const struct GNUNET_CRYPTO_EcdsaPublicKey *caller_id)
331 {
332   static enum GNUNET_CONVERSATION_PhoneEventCode expect
333     = GNUNET_CONVERSATION_EC_PHONE_RING;
334
335   GNUNET_break (code == expect);
336   switch (code)
337   {
338   case GNUNET_CONVERSATION_EC_PHONE_RING:
339     active_caller = caller;
340     GNUNET_CONVERSATION_caller_pick_up (caller,
341                                         &caller_event_handler,
342                                         NULL,
343                                         &phone_speaker,
344                                         &phone_mic);
345     expect = GNUNET_CONVERSATION_EC_PHONE_HUNG_UP;
346     break;
347   case GNUNET_CONVERSATION_EC_PHONE_HUNG_UP:
348     GNUNET_break (caller == active_caller);
349     active_caller = NULL;
350     if (1 == ok)
351       ok = 0;
352     GNUNET_SCHEDULER_shutdown ();
353     break;
354   default:
355     fprintf (stderr,
356              "Unexpected phone code: %d\n",
357              code);
358     break;
359   }
360 }
361
362
363 static void
364 call_event_handler (void *cls,
365                     enum GNUNET_CONVERSATION_CallEventCode code)
366 {
367   static enum GNUNET_CONVERSATION_CallEventCode expect
368     = GNUNET_CONVERSATION_EC_CALL_RINGING;
369
370   GNUNET_break (code == expect);
371   switch (code)
372   {
373   case GNUNET_CONVERSATION_EC_CALL_RINGING:
374     expect = GNUNET_CONVERSATION_EC_CALL_PICKED_UP;
375     break;
376   case GNUNET_CONVERSATION_EC_CALL_PICKED_UP:
377     expect = -1;
378     break;
379   case GNUNET_CONVERSATION_EC_CALL_GNS_FAIL:
380   case GNUNET_CONVERSATION_EC_CALL_HUNG_UP:
381     call = NULL;
382     ok = 2;
383     GNUNET_break (0);
384     fprintf (stderr, "Unexpected call code: %d\n", code);
385     break;
386   case GNUNET_CONVERSATION_EC_CALL_SUSPENDED:
387   case GNUNET_CONVERSATION_EC_CALL_RESUMED:
388     GNUNET_break (0);
389     fprintf (stderr, "Unexpected call code: %d\n", code);
390     ok = 2;
391     break;
392   case GNUNET_CONVERSATION_EC_CALL_ERROR:
393     GNUNET_break (0);
394     fprintf (stderr, "Unexpected call code: %d\n", code);
395     call = NULL;
396     ok = 2;
397     break;
398   }
399 }
400
401
402 static void
403 caller_ego_create_cont (void *cls,
404                         const char *emsg)
405 {
406   op = NULL;
407   GNUNET_assert (NULL == emsg);
408 }
409
410
411 static void
412 namestore_put_cont (void *cls,
413                     int32_t success,
414                     const char *emsg)
415 {
416   qe = NULL;
417   GNUNET_assert (GNUNET_YES == success);
418   GNUNET_assert (NULL == emsg);
419   GNUNET_assert (NULL == op);
420   op = GNUNET_IDENTITY_create (id, "caller-ego", &caller_ego_create_cont, NULL);
421 }
422
423
424 static void
425 identity_cb (void *cls,
426              struct GNUNET_IDENTITY_Ego *ego,
427              void **ctx,
428              const char *name)
429 {
430   struct GNUNET_GNSRECORD_Data rd;
431   struct GNUNET_CRYPTO_EcdsaPublicKey pub;
432
433   if (NULL == name)
434     return;
435   if (NULL == ego)
436     return;
437   if (0 == strcmp (name, "phone-ego"))
438   {
439     GNUNET_IDENTITY_ego_get_public_key (ego, &pub);
440     GNUNET_asprintf (&gns_name,
441                      "phone.%s",
442                      GNUNET_GNSRECORD_pkey_to_zkey (&pub));
443     phone = GNUNET_CONVERSATION_phone_create (cfg,
444                                               ego,
445                                               &phone_event_handler,
446                                               NULL);
447     GNUNET_assert (NULL != phone);
448     memset (&rd, 0, sizeof (rd));
449     GNUNET_CONVERSATION_phone_get_record (phone,
450                                           &rd);
451     GNUNET_assert (rd.record_type == GNUNET_GNSRECORD_TYPE_PHONE);
452     rd.expiration_time = UINT64_MAX;
453     qe = GNUNET_NAMESTORE_records_store (ns,
454                                          GNUNET_IDENTITY_ego_get_private_key (ego),
455                                          "phone" /* GNS label */,
456                                          1,
457                                          &rd,
458                                          &namestore_put_cont,
459                                          NULL);
460     return;
461   }
462   if (0 == strcmp (name, "caller-ego"))
463   {
464     GNUNET_IDENTITY_ego_get_public_key (ego, &pub);
465     GNUNET_asprintf (&gns_caller_id,
466                      "%s",
467                      GNUNET_GNSRECORD_pkey_to_zkey (&pub));
468     call = GNUNET_CONVERSATION_call_start (cfg,
469                                            ego,
470                                            ego,
471                                            gns_name,
472                                            &call_speaker,
473                                            &call_mic,
474                                            &call_event_handler,
475                                            NULL);
476     return;
477   }
478 }
479
480
481 static void
482 phone_ego_create_cont (void *cls,
483                        const char *emsg)
484 {
485   op = NULL;
486   GNUNET_assert (NULL == emsg);
487 }
488
489
490 static void
491 run (void *cls,
492      const struct GNUNET_CONFIGURATION_Handle *c,
493      struct GNUNET_TESTING_Peer *peer)
494 {
495   cfg = c;
496   GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_test,
497                                 NULL);
498   id = GNUNET_IDENTITY_connect (cfg,
499                                 &identity_cb,
500                                 NULL);
501   op = GNUNET_IDENTITY_create (id, "phone-ego", &phone_ego_create_cont, NULL);
502   ns = GNUNET_NAMESTORE_connect (cfg);
503 }
504
505
506 int
507 main (int argc, char *argv[])
508 {
509   if (0 != GNUNET_TESTING_peer_run ("test_conversation_api",
510                                     "test_conversation.conf",
511                                     &run, NULL))
512     return 1;
513   return ok;
514 }
515
516 /* end of test_conversation_api.c */