-rps: open channel when inserting peer in view
[oweals/gnunet.git] / src / testbed / test_testbed_api_controllerlink.c
1 /*
2       This file is part of GNUnet
3       Copyright (C) 2008--2013 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 /**
22  * @file testbed/test_testbed_api_controllerlink.c
23  * @brief testcase for testing controller to subcontroller linking
24  * @author Sree Harsha Totakura <sreeharsha@totakura.in>
25  */
26
27
28 /**
29  * The controller architecture we try to achieve in this test case:
30  *
31  *                    Master Controller
32  *                    //             \\
33  *                   //               \\
34  *         Slave Controller 1---------Slave Controller 3
35  *                  ||
36  *                  ||
37  *         Slave Controller 2
38  */
39
40 #include "platform.h"
41 #include "gnunet_util_lib.h"
42 #include "gnunet_testing_lib.h"
43 #include "gnunet_testbed_service.h"
44
45 /**
46  * Generic logging shortcut
47  */
48 #define LOG(kind,...)                           \
49   GNUNET_log (kind, __VA_ARGS__)
50
51 /**
52  * Debug logging shorthand
53  */
54 #define LOG_DEBUG(...)                          \
55   LOG(GNUNET_ERROR_TYPE_DEBUG, __VA_ARGS__)
56
57 /**
58  * Different stages in testing
59  */
60 enum Stage
61 {
62
63   /**
64    * Initial stage
65    */
66   INIT,
67
68   /**
69    * Master controller has started
70    */
71   MASTER_STARTED,
72
73   /**
74    * A peer has been created on master
75    */
76   MASTER_PEER_CREATE_SUCCESS,
77
78   /**
79    * Peer on master controller has been started successfully.
80    */
81   MASTER_PEER_START_SUCCESS,
82
83   /**
84    * The first slave has been registered at master controller
85    */
86   SLAVE1_REGISTERED,
87
88   /**
89    * The second slave has been registered at the master controller
90    */
91   SLAVE2_REGISTERED,
92
93   /**
94    * Link from master to slave 1 has been successfully created
95    */
96   SLAVE1_LINK_SUCCESS,
97
98   /**
99    * Peer create on slave 1 successful
100    */
101   SLAVE1_PEER_CREATE_SUCCESS,
102
103   /**
104    * Peer startup on slave 1 successful
105    */
106   SLAVE1_PEER_START_SUCCESS,
107
108   /**
109    * Link from slave 1 to slave 2 has been successfully created.
110    */
111   SLAVE2_LINK_SUCCESS,
112
113   /**
114    * Peer create on slave 2 successful
115    */
116   SLAVE2_PEER_CREATE_SUCCESS,
117
118   /**
119    * Peer on slave 1 successfully stopped
120    */
121   SLAVE1_PEER_STOP_SUCCESS,
122
123   /**
124    * Peer startup on slave 2 successful
125    */
126   SLAVE2_PEER_START_SUCCESS,
127
128   /**
129    * Try to connect peers on master and slave 2.
130    */
131   MASTER_SLAVE2_PEERS_CONNECTED,
132
133   /**
134    * Slave 3 has successfully registered
135    */
136   SLAVE3_REGISTERED,
137
138   /**
139    * Slave 3 has successfully started
140    */
141   SLAVE3_STARTED,
142
143   /**
144    * Peer created on slave 3
145    */
146   SLAVE3_PEER_CREATE_SUCCESS,
147
148   /**
149    * Peer started at slave 3
150    */
151   SLAVE3_PEER_START_SUCCESS,
152
153   /**
154    * Try to connect peers on slave2 and slave3
155    */
156   SLAVE2_SLAVE3_PEERS_CONNECTED,
157
158   /**
159    * Peer on slave 2 successfully stopped
160    */
161   SLAVE2_PEER_STOP_SUCCESS,
162
163   /**
164    * Peer destroy on slave 1 successful
165    */
166   SLAVE1_PEER_DESTROY_SUCCESS,
167
168   /**
169    * Peer destory on slave 2 successful
170    */
171   SLAVE2_PEER_DESTROY_SUCCESS,
172
173   /**
174    * The configuration of slave 3 is acquired
175    */
176   SLAVE3_GET_CONFIG_SUCCESS,
177
178   /**
179    * Slave 1 has linked to slave 3;
180    */
181   SLAVE3_LINK_SUCCESS,
182
183   /**
184    * Master peer destoryed.  Destory slave 3 peer
185    */
186   MASTER_PEER_DESTROY_SUCCESS,
187
188   /**
189    * Slave 3 peer destroyed.  Mark test as success
190    */
191   SUCCESS,
192
193   /**
194    * Marks test as skipped
195    */
196   SKIP
197 };
198
199 /**
200  * Host for running master controller
201  */
202 static struct GNUNET_TESTBED_Host *host;
203
204 /**
205  * The master controller process
206  */
207 static struct GNUNET_TESTBED_ControllerProc *cp;
208
209 /**
210  * Handle to master controller
211  */
212 static struct GNUNET_TESTBED_Controller *mc;
213
214 /**
215  * Slave host for running slave controller
216  */
217 static struct GNUNET_TESTBED_Host *slave;
218
219 /**
220  * Another slave host for running another slave controller
221  */
222 static struct GNUNET_TESTBED_Host *slave2;
223
224 /**
225  * Host for slave 3
226  */
227 static struct GNUNET_TESTBED_Host *slave3;
228
229 /**
230  * Slave host registration handle
231  */
232 static struct GNUNET_TESTBED_HostRegistrationHandle *rh;
233
234 /**
235  * Handle to global configuration
236  */
237 static struct GNUNET_CONFIGURATION_Handle *cfg;
238
239 /**
240  * Configuration of slave 3 controller
241  */
242 static struct GNUNET_CONFIGURATION_Handle *cfg3;
243
244 /**
245  * Abort task
246  */
247 static struct GNUNET_SCHEDULER_Task * abort_task;
248
249 /**
250  * Operation handle for linking controllers
251  */
252 static struct GNUNET_TESTBED_Operation *op;
253
254 /**
255  * Handle to peer started at slave 1
256  */
257 static struct GNUNET_TESTBED_Peer *slave1_peer;
258
259 /**
260  * Handle to peer started at slave 2
261  */
262 static struct GNUNET_TESTBED_Peer *slave2_peer;
263
264 /**
265  * Handle to peer started at slave 2
266  */
267 static struct GNUNET_TESTBED_Peer *slave3_peer;
268
269 /**
270  * Handle to a peer started at master controller
271  */
272 static struct GNUNET_TESTBED_Peer *master_peer;
273
274 /**
275  * The handle for whether a host is habitable or not
276  */
277 struct GNUNET_TESTBED_HostHabitableCheckHandle *hc_handle;
278
279 /**
280  * The task handle for the delay task
281  */
282 struct GNUNET_SCHEDULER_Task * delay_task_id;
283
284 /**
285  * Event mask
286  */
287 uint64_t event_mask;
288
289 /**
290  * Global testing status
291  */
292 static enum Stage result;
293
294 /**
295  * shortcut to exit during failure
296  */
297 #define FAIL_TEST(cond) do {                                    \
298     if (!(cond)) {                                              \
299       GNUNET_break(0);                                          \
300       if (NULL != abort_task)               \
301         GNUNET_SCHEDULER_cancel (abort_task);                   \
302       abort_task = NULL;                    \
303       GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);             \
304       return;                                                   \
305     }                                                          \
306   } while (0)
307
308
309 /**
310  * Shutdown nicely
311  *
312  * @param cls NULL
313  */
314 static void
315 do_shutdown (void *cls)
316 {
317   if (NULL != abort_task)
318     GNUNET_SCHEDULER_cancel (abort_task);
319   if (NULL != delay_task_id)
320   {
321     GNUNET_SCHEDULER_cancel (delay_task_id);
322     delay_task_id = NULL;
323   }
324   if (NULL != hc_handle)
325     GNUNET_TESTBED_is_host_habitable_cancel (hc_handle);
326   if (NULL != mc)
327     GNUNET_TESTBED_controller_disconnect (mc);
328   if (NULL != cp)
329     GNUNET_TESTBED_controller_stop (cp);
330   if (NULL != slave3)
331     GNUNET_TESTBED_host_destroy (slave3);
332   if (NULL != slave2)
333     GNUNET_TESTBED_host_destroy (slave2);
334   if (NULL != slave)
335     GNUNET_TESTBED_host_destroy (slave);
336   if (NULL != host)
337     GNUNET_TESTBED_host_destroy (host);
338   if (NULL != cfg)
339     GNUNET_CONFIGURATION_destroy (cfg);
340   if (NULL != cfg3)
341     GNUNET_CONFIGURATION_destroy (cfg3);
342   if (NULL != rh)
343     GNUNET_TESTBED_cancel_registration (rh);
344 }
345
346
347 /**
348  * abort task to run on test timed out
349  *
350  * @param cls NULL
351  */
352 static void
353 do_abort (void *cls)
354 {
355   LOG (GNUNET_ERROR_TYPE_WARNING, "Aborting\n");
356   abort_task = NULL;
357   do_shutdown (cls);
358 }
359
360
361 /**
362  * Calls abort now
363  *
364  * @param
365  * @return
366  */
367 static void
368 do_abort_now (void *cls)
369 {
370   if (NULL != abort_task)
371     GNUNET_SCHEDULER_cancel (abort_task);
372   abort_task = GNUNET_SCHEDULER_add_now (&do_abort, NULL);
373 }
374
375
376 /**
377  * Callback which will be called to after a host registration succeeded or failed
378  *
379  * @param cls the host which has been registered
380  * @param emsg the error message; NULL if host registration is successful
381  */
382 static void
383 registration_cont (void *cls, const char *emsg);
384
385
386 /**
387  * Task for inserting delay between tests
388  *
389  * @param
390  * @return
391  */
392 static void
393 delay_task (void *cls)
394 {
395   delay_task_id = NULL;
396   switch (result)
397   {
398   case SLAVE2_PEER_CREATE_SUCCESS:
399     op = GNUNET_TESTBED_peer_stop (NULL, slave1_peer, NULL, NULL);
400     FAIL_TEST (NULL != op);
401     break;
402   case MASTER_SLAVE2_PEERS_CONNECTED:
403     slave3 = GNUNET_TESTBED_host_create_with_id (3, "127.0.0.1", NULL, cfg, 0);
404     rh = GNUNET_TESTBED_register_host (mc, slave3, &registration_cont, NULL);
405     break;
406   case SLAVE2_SLAVE3_PEERS_CONNECTED:
407     op = GNUNET_TESTBED_peer_stop (NULL, slave2_peer, NULL, NULL);
408     FAIL_TEST (NULL != op);
409     break;
410   default:
411     FAIL_TEST (0);
412   }
413 }
414
415
416 /**
417  * Functions of this signature are called when a peer has been successfully
418  * created
419  *
420  * @param cls the closure from GNUNET_TESTBED_peer_create()
421  * @param peer the handle for the created peer; NULL on any error during
422  *          creation
423  * @param emsg NULL if peer is not NULL; else MAY contain the error description
424  */
425 static void
426 peer_create_cb (void *cls, struct GNUNET_TESTBED_Peer *peer, const char *emsg)
427 {
428   FAIL_TEST (NULL != peer);
429   FAIL_TEST (NULL == emsg);
430   switch (result)
431   {
432   case MASTER_STARTED:
433     result = MASTER_PEER_CREATE_SUCCESS;
434     master_peer = peer;
435     GNUNET_TESTBED_operation_done (op);
436     op = GNUNET_TESTBED_peer_start (NULL, master_peer, NULL, NULL);
437     break;
438   case SLAVE1_LINK_SUCCESS:
439     result = SLAVE1_PEER_CREATE_SUCCESS;
440     slave1_peer = peer;
441     GNUNET_TESTBED_operation_done (op);
442     op = GNUNET_TESTBED_peer_start (NULL, slave1_peer, NULL, NULL);
443     break;
444   case SLAVE2_LINK_SUCCESS:
445     result = SLAVE2_PEER_CREATE_SUCCESS;
446     slave2_peer = peer;
447     GNUNET_TESTBED_operation_done (op);
448     delay_task_id =
449         GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
450                                       (GNUNET_TIME_UNIT_SECONDS, 1),
451                                       &delay_task,
452                                       NULL);
453     break;
454   case SLAVE3_STARTED:
455     result = SLAVE3_PEER_CREATE_SUCCESS;
456     slave3_peer = peer;
457     GNUNET_TESTBED_operation_done (op);
458     op = GNUNET_TESTBED_peer_start (NULL, slave3_peer, NULL, NULL);
459     break;
460   default:
461     FAIL_TEST (0);
462   }
463   FAIL_TEST (NULL != op);
464 }
465
466
467 /**
468  * Checks the event if it is an operation finished event and if indicates a
469  * successfull completion of operation
470  *
471  * @param event the event information to check
472  */
473 static void
474 check_operation_success (const struct GNUNET_TESTBED_EventInformation *event)
475 {
476   FAIL_TEST (NULL != event);
477   FAIL_TEST (GNUNET_TESTBED_ET_OPERATION_FINISHED == event->type);
478   FAIL_TEST (event->op == op);
479   FAIL_TEST (NULL == event->op_cls);
480   FAIL_TEST (NULL == event->details.operation_finished.emsg);
481   FAIL_TEST (NULL == event->details.operation_finished.generic);
482 }
483
484
485 /**
486  * Signature of the event handler function called by the
487  * respective event controller.
488  *
489  * @param cls closure
490  * @param event information about the event
491  */
492 static void
493 controller_cb (void *cls, const struct GNUNET_TESTBED_EventInformation *event)
494 {
495   switch (result)
496   {
497   case SLAVE2_REGISTERED:
498     check_operation_success (event);
499     GNUNET_TESTBED_operation_done (op);
500     op = NULL;
501     result = SLAVE1_LINK_SUCCESS;
502     FAIL_TEST (NULL != slave2);
503     FAIL_TEST (NULL != slave);
504     op = GNUNET_TESTBED_peer_create (mc, slave, cfg, peer_create_cb, NULL);
505     FAIL_TEST (NULL != op);
506     break;
507   case SLAVE1_PEER_START_SUCCESS:
508     check_operation_success (event);
509     GNUNET_TESTBED_operation_done (op);
510     result = SLAVE2_LINK_SUCCESS;
511     op = GNUNET_TESTBED_peer_create (mc, slave2, cfg, peer_create_cb, NULL);
512     FAIL_TEST (NULL != op);
513     break;
514   case MASTER_PEER_CREATE_SUCCESS:
515     FAIL_TEST (GNUNET_TESTBED_ET_PEER_START == event->type);
516     FAIL_TEST (event->details.peer_start.host == host);
517     FAIL_TEST (event->details.peer_start.peer == master_peer);
518     GNUNET_TESTBED_operation_done (op);
519     result = MASTER_PEER_START_SUCCESS;
520     slave = GNUNET_TESTBED_host_create_with_id (1, "127.0.0.1", NULL, cfg, 0);
521     FAIL_TEST (NULL != slave);
522     rh = GNUNET_TESTBED_register_host (mc, slave, &registration_cont, NULL);
523     FAIL_TEST (NULL != rh);
524     break;
525   case SLAVE1_PEER_CREATE_SUCCESS:
526     FAIL_TEST (GNUNET_TESTBED_ET_PEER_START == event->type);
527     FAIL_TEST (event->details.peer_start.host == slave);
528     FAIL_TEST (event->details.peer_start.peer == slave1_peer);
529     GNUNET_TESTBED_operation_done (op);
530     result = SLAVE1_PEER_START_SUCCESS;
531     op = GNUNET_TESTBED_controller_link (NULL, mc, slave2, slave, GNUNET_YES);
532     break;
533   case SLAVE2_PEER_CREATE_SUCCESS:
534     FAIL_TEST (GNUNET_TESTBED_ET_PEER_STOP == event->type);
535     FAIL_TEST (event->details.peer_stop.peer == slave1_peer);
536     GNUNET_TESTBED_operation_done (op);
537     result = SLAVE1_PEER_STOP_SUCCESS;
538     op = GNUNET_TESTBED_peer_start (NULL, slave2_peer, NULL, NULL);
539     FAIL_TEST (NULL != op);
540     break;
541   case SLAVE3_PEER_CREATE_SUCCESS:
542     FAIL_TEST (GNUNET_TESTBED_ET_PEER_START == event->type);
543     FAIL_TEST (event->details.peer_start.host == slave3);
544     FAIL_TEST (event->details.peer_start.peer == slave3_peer);
545     GNUNET_TESTBED_operation_done (op);
546     result = SLAVE3_PEER_START_SUCCESS;
547     sleep (1);
548     LOG_DEBUG ("**************************************\n");
549     op = GNUNET_TESTBED_overlay_connect (mc, NULL, NULL, slave2_peer,
550                                          slave3_peer);
551     FAIL_TEST (NULL != op);
552     break;
553   case SLAVE3_PEER_START_SUCCESS:
554     FAIL_TEST (NULL != event);
555     FAIL_TEST (GNUNET_TESTBED_ET_CONNECT == event->type);
556     FAIL_TEST (event->details.peer_connect.peer1 == slave2_peer);
557     FAIL_TEST (event->details.peer_connect.peer2 == slave3_peer);
558     result = SLAVE2_SLAVE3_PEERS_CONNECTED;
559     GNUNET_TESTBED_operation_done (op);
560     op = NULL;
561     delay_task_id =
562         GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
563                                       (GNUNET_TIME_UNIT_SECONDS, 1), &delay_task,
564                                       NULL);
565     break;
566   case SLAVE1_PEER_STOP_SUCCESS:
567     FAIL_TEST (GNUNET_TESTBED_ET_PEER_START == event->type);
568     FAIL_TEST (event->details.peer_start.host == slave2);
569     FAIL_TEST (event->details.peer_start.peer == slave2_peer);
570     GNUNET_TESTBED_operation_done (op);
571     result = SLAVE2_PEER_START_SUCCESS;
572     op = GNUNET_TESTBED_overlay_connect (mc, NULL, NULL, master_peer,
573                                          slave2_peer);
574     break;
575   case SLAVE2_PEER_START_SUCCESS:
576     FAIL_TEST (NULL != event);
577     FAIL_TEST (GNUNET_TESTBED_ET_CONNECT == event->type);
578     FAIL_TEST (event->details.peer_connect.peer1 == master_peer);
579     FAIL_TEST (event->details.peer_connect.peer2 == slave2_peer);
580     result = MASTER_SLAVE2_PEERS_CONNECTED;
581     GNUNET_TESTBED_operation_done (op);
582     op = NULL;
583     delay_task_id =
584         GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
585                                       (GNUNET_TIME_UNIT_SECONDS, 1), &delay_task,
586                                       NULL);
587     break;
588   case SLAVE2_SLAVE3_PEERS_CONNECTED:
589     FAIL_TEST (GNUNET_TESTBED_ET_PEER_STOP == event->type);
590     FAIL_TEST (event->details.peer_stop.peer == slave2_peer);
591     GNUNET_TESTBED_operation_done (op);
592     result = SLAVE2_PEER_STOP_SUCCESS;
593     op = GNUNET_TESTBED_peer_destroy (slave1_peer);
594     FAIL_TEST (NULL != op);
595     break;
596   case SLAVE2_PEER_STOP_SUCCESS:
597     check_operation_success (event);
598     GNUNET_TESTBED_operation_done (op);
599     result = SLAVE1_PEER_DESTROY_SUCCESS;
600     op = GNUNET_TESTBED_peer_destroy (slave2_peer);
601     FAIL_TEST (NULL != op);
602     break;
603   case SLAVE1_PEER_DESTROY_SUCCESS:
604     check_operation_success (event);
605     GNUNET_TESTBED_operation_done (op);
606     op = NULL;
607     result = SLAVE2_PEER_DESTROY_SUCCESS;
608     op = GNUNET_TESTBED_get_slave_config (NULL, mc, slave3);
609     FAIL_TEST (NULL != op);
610     break;
611   case SLAVE2_PEER_DESTROY_SUCCESS:
612     FAIL_TEST (NULL != event);
613     FAIL_TEST (GNUNET_TESTBED_ET_OPERATION_FINISHED == event->type);
614     FAIL_TEST (event->op == op);
615     FAIL_TEST (NULL == event->op_cls);
616     FAIL_TEST (NULL == event->details.operation_finished.emsg);
617     cfg3 = GNUNET_CONFIGURATION_dup (event->details.operation_finished.generic);
618     GNUNET_TESTBED_operation_done (op);
619     result = SLAVE3_GET_CONFIG_SUCCESS;
620     op = GNUNET_TESTBED_controller_link (NULL, mc, slave3, slave, GNUNET_NO);
621     break;
622   case SLAVE3_REGISTERED:
623     check_operation_success (event);
624     GNUNET_TESTBED_operation_done (op);
625     op = NULL;
626     result = SLAVE3_STARTED;
627     op = GNUNET_TESTBED_peer_create (mc, slave3, cfg, peer_create_cb, NULL);
628     FAIL_TEST (NULL != op);
629     break;
630   case SLAVE3_GET_CONFIG_SUCCESS:
631     result = SLAVE3_LINK_SUCCESS;
632     GNUNET_TESTBED_operation_done (op);
633     op = GNUNET_TESTBED_peer_destroy (master_peer);
634     break;
635   case SLAVE3_LINK_SUCCESS:
636     check_operation_success (event);
637     result = MASTER_PEER_DESTROY_SUCCESS;
638     GNUNET_TESTBED_operation_done (op);
639     op = GNUNET_TESTBED_peer_destroy (slave3_peer);
640     break;
641   case MASTER_PEER_DESTROY_SUCCESS:
642     result = SUCCESS;
643     GNUNET_TESTBED_operation_done (op);
644     op = NULL;
645     GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
646                                   &do_shutdown,
647                                   NULL);
648     break;
649   default:
650     FAIL_TEST (0);
651   }
652 }
653
654
655 /**
656  * Callback which will be called to after a host registration succeeded or failed
657  *
658  * @param cls the host which has been registered
659  * @param emsg the error message; NULL if host registration is successful
660  */
661 static void
662 registration_cont (void *cls, const char *emsg)
663 {
664   rh = NULL;
665   switch (result)
666   {
667   case MASTER_PEER_START_SUCCESS:
668     FAIL_TEST (NULL == emsg);
669     FAIL_TEST (NULL != mc);
670     result = SLAVE1_REGISTERED;
671     slave2 = GNUNET_TESTBED_host_create_with_id (2, "127.0.0.1", NULL, cfg, 0);
672     FAIL_TEST (NULL != slave2);
673     rh = GNUNET_TESTBED_register_host (mc, slave2, &registration_cont, NULL);
674     FAIL_TEST (NULL != rh);
675     break;
676   case SLAVE1_REGISTERED:
677     FAIL_TEST (NULL == emsg);
678     FAIL_TEST (NULL != mc);
679     result = SLAVE2_REGISTERED;
680     FAIL_TEST (NULL != cfg);
681     op = GNUNET_TESTBED_controller_link (NULL, mc, slave, NULL, GNUNET_YES);
682     FAIL_TEST (NULL != op);
683     break;
684   case MASTER_SLAVE2_PEERS_CONNECTED:
685     FAIL_TEST (NULL == emsg);
686     FAIL_TEST (NULL != mc);
687     FAIL_TEST (NULL == op);
688     result = SLAVE3_REGISTERED;
689     op = GNUNET_TESTBED_controller_link (NULL, mc, slave3, NULL, GNUNET_YES);
690     FAIL_TEST (NULL != op);
691     break;
692   default:
693     GNUNET_break (0);
694     do_abort_now (NULL);
695   }
696 }
697
698 /**
699  * Callback to signal successfull startup of the controller process
700  *
701  * @param cls the closure from GNUNET_TESTBED_controller_start()
702  * @param cfg the configuration with which the controller has been started;
703  *          NULL if status is not GNUNET_OK
704  * @param status GNUNET_OK if the startup is successfull; GNUNET_SYSERR if not,
705  *          GNUNET_TESTBED_controller_stop() shouldn't be called in this case
706  */
707 static void
708 status_cb (void *cls, const struct GNUNET_CONFIGURATION_Handle *config,
709            int status)
710 {
711   switch (result)
712   {
713   case INIT:
714     FAIL_TEST (GNUNET_OK == status);
715     event_mask = 0;
716     event_mask |= (1L << GNUNET_TESTBED_ET_PEER_START);
717     event_mask |= (1L << GNUNET_TESTBED_ET_PEER_STOP);
718     event_mask |= (1L << GNUNET_TESTBED_ET_CONNECT);
719     event_mask |= (1L << GNUNET_TESTBED_ET_OPERATION_FINISHED);
720     mc = GNUNET_TESTBED_controller_connect (host, event_mask,
721                                             &controller_cb, NULL);
722     FAIL_TEST (NULL != mc);
723     result = MASTER_STARTED;
724     op = GNUNET_TESTBED_peer_create (mc, host, cfg, peer_create_cb, NULL);
725     FAIL_TEST (NULL != op);
726     break;
727   default:
728     GNUNET_break (0);
729     cp = NULL;
730     do_abort_now (NULL);
731   }
732 }
733
734
735 /**
736  * Callbacks of this type are called by GNUNET_TESTBED_is_host_habitable to
737  * inform whether the given host is habitable or not. The Handle returned by
738  * GNUNET_TESTBED_is_host_habitable() is invalid after this callback is called
739  *
740  * @param cls NULL
741  * @param host the host whose status is being reported; will be NULL if the host
742  *          given to GNUNET_TESTBED_is_host_habitable() is NULL
743  * @param status GNUNET_YES if it is habitable; GNUNET_NO if not
744  */
745 static void
746 host_habitable_cb (void *cls, const struct GNUNET_TESTBED_Host *_host,
747                    int status)
748 {
749   hc_handle = NULL;
750   if (GNUNET_NO == status)
751   {
752     (void) PRINTF ("%s",
753                    "Unable to run the test as this system is not configured "
754                    "to use password less SSH logins to localhost.\n"
755                    "Skipping test\n");
756     GNUNET_SCHEDULER_cancel (abort_task);
757     abort_task = NULL;
758     (void) GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
759     result = SKIP;
760     return;
761   }
762   cp = GNUNET_TESTBED_controller_start ("127.0.0.1", host, status_cb,
763                                         NULL);
764 }
765
766
767 /**
768  * Main run function.
769  *
770  * @param cls NULL
771  * @param args arguments passed to GNUNET_PROGRAM_run
772  * @param cfgfile the path to configuration file
773  * @param cfg the configuration file handle
774  */
775 static void
776 run (void *cls, char *const *args, const char *cfgfile,
777      const struct GNUNET_CONFIGURATION_Handle *config)
778 {
779   cfg = GNUNET_CONFIGURATION_dup (config);
780   host = GNUNET_TESTBED_host_create (NULL, NULL, cfg, 0);
781   FAIL_TEST (NULL != host);
782   if (NULL ==
783       (hc_handle =
784        GNUNET_TESTBED_is_host_habitable (host, config, &host_habitable_cb,
785                                          NULL)))
786   {
787     GNUNET_TESTBED_host_destroy (host);
788     GNUNET_CONFIGURATION_destroy (cfg);
789     cfg = NULL;
790     host = NULL;
791     (void) PRINTF ("%s",
792                    "Unable to run the test as this system is not configured "
793                    "to use password less SSH logins to localhost.\n"
794                    "Marking test as successful\n");
795     result = SKIP;
796     return;
797   }
798   abort_task =
799       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
800                                     (GNUNET_TIME_UNIT_MINUTES, 5), &do_abort,
801                                     NULL);
802 }
803
804
805 /**
806  * Main function
807  */
808 int
809 main (int argc, char **argv)
810 {
811   char *const argv2[] = { "test_testbed_api_controllerlink",
812     "-c", "test_testbed_api.conf",
813     NULL
814   };
815   struct GNUNET_GETOPT_CommandLineOption options[] = {
816     GNUNET_GETOPT_OPTION_END
817   };
818   int ret;
819
820   result = INIT;
821   ret =
822       GNUNET_PROGRAM_run ((sizeof (argv2) / sizeof (char *)) - 1, argv2,
823                           "test_testbed_api_controllerlink", "nohelp", options,
824                           &run, NULL);
825   if (GNUNET_OK != ret)
826     return 1;
827   switch (result)
828   {
829   case SUCCESS:
830     return 0;
831   case SKIP:
832     return 77;                  /* Mark test as skipped */
833   default:
834     return 1;
835   }
836 }
837
838 /* end of test_testbed_api_controllerlink.c */