- distribute peers equally among island nodes on SuperMUC
[oweals/gnunet.git] / src / testbed / test_testbed_api_topology_clique.c
1 /*
2   This file is part of GNUnet
3   (C) 2008--2013 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 /**
22  * @file src/testbed/test_testbed_api_topology.c
23  * @brief testing cases for testing high level testbed api helper functions
24  * @author Sree Harsha Totakura <sreeharsha@totakura.in>
25  */
26
27 #include "platform.h"
28 #include "gnunet_common.h"
29 #include "gnunet_testbed_service.h"
30
31 /**
32  * Number of peers we want to start
33  */
34 #define NUM_PEERS 10
35
36 /**
37  * Array of peers
38  */
39 static struct GNUNET_TESTBED_Peer **peers;
40
41 /**
42  * Operation handle
43  */
44 static struct GNUNET_TESTBED_Operation *op;
45
46 /**
47  * Shutdown task
48  */
49 static GNUNET_SCHEDULER_TaskIdentifier shutdown_task;
50
51 /**
52  * Testing result
53  */
54 static int result;
55
56 /**
57  * Counter for counting overlay connections
58  */
59 static unsigned int overlay_connects;
60
61
62 /**
63  * Shutdown nicely
64  *
65  * @param cls NULL
66  * @param tc the task context
67  */
68 static void
69 do_shutdown (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
70 {
71   shutdown_task = GNUNET_SCHEDULER_NO_TASK;
72   if (NULL != op)
73   {
74     GNUNET_TESTBED_operation_done (op);
75     op = NULL;
76   }
77   GNUNET_SCHEDULER_shutdown ();
78 }
79
80 /**
81  * Controller event callback
82  *
83  * @param cls NULL
84  * @param event the controller event
85  */
86 static void
87 controller_event_cb (void *cls,
88                      const struct GNUNET_TESTBED_EventInformation *event)
89 {
90   switch (event->type)
91   {
92   case GNUNET_TESTBED_ET_CONNECT:
93     overlay_connects++;
94     if ((NUM_PEERS * (NUM_PEERS - 1)) == overlay_connects)
95     {
96       result = GNUNET_OK;
97       GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
98     }
99     break;
100   case GNUNET_TESTBED_ET_OPERATION_FINISHED:
101     GNUNET_assert (NULL != event->details.operation_finished.emsg);
102     break;
103   default:
104     GNUNET_break (0);
105     result = GNUNET_SYSERR;
106     GNUNET_SCHEDULER_cancel (shutdown_task);
107     shutdown_task = GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
108   }
109 }
110
111
112 /**
113  * Signature of a main function for a testcase.
114  *
115  * @param cls closure
116  * @param num_peers number of peers in 'peers'
117  * @param peers_ handle to peers run in the testbed
118  * @param links_succeeded the number of overlay link connection attempts that
119  *          succeeded
120  * @param links_failed the number of overlay link connection attempts that
121  *          failed
122  */
123 static void
124 test_master (void *cls, unsigned int num_peers,
125              struct GNUNET_TESTBED_Peer **peers_,
126              unsigned int links_succeeded,
127              unsigned int links_failed)
128 {
129   unsigned int peer;
130
131   GNUNET_assert (NULL == cls);
132   GNUNET_assert (NUM_PEERS == num_peers);
133   GNUNET_assert (NULL != peers_);
134   for (peer = 0; peer < num_peers; peer++)
135     GNUNET_assert (NULL != peers_[peer]);
136   peers = peers_;
137   overlay_connects = 0;
138   op = GNUNET_TESTBED_overlay_configure_topology (NULL, NUM_PEERS, peers, NULL,
139                                                   NULL,
140                                                   NULL,
141                                                   GNUNET_TESTBED_TOPOLOGY_CLIQUE,
142                                                   /* GNUNET_TESTBED_TOPOLOGY_ERDOS_RENYI, */
143                                                   /* NUM_PEERS, */
144                                                   GNUNET_TESTBED_TOPOLOGY_OPTION_END);
145   GNUNET_assert (NULL != op);
146   shutdown_task =
147       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
148                                     (GNUNET_TIME_UNIT_SECONDS, 300),
149                                     do_shutdown, NULL);
150 }
151
152
153 /**
154  * Main function
155  */
156 int
157 main (int argc, char **argv)
158 {
159   uint64_t event_mask;
160
161   result = GNUNET_SYSERR;
162   event_mask = 0;
163   event_mask |= (1LL << GNUNET_TESTBED_ET_CONNECT);
164   event_mask |= (1LL << GNUNET_TESTBED_ET_OPERATION_FINISHED);
165   (void) GNUNET_TESTBED_test_run ("test_testbed_api_test",
166                                   "test_testbed_api.conf", NUM_PEERS,
167                                   event_mask, &controller_event_cb, NULL,
168                                   &test_master, NULL);
169   if (GNUNET_OK != result)
170     return 1;
171   return 0;
172 }
173
174 /* end of test_testbed_api_topology.c */