more client code
[oweals/gnunet.git] / src / nse / test_nse_multipeer.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009 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 nse/test_nse_multipeer.c
22  *
23  * @brief Testcase for the network size estimation service.  Starts
24  *        a peergroup with a given number of peers, then waits to
25  *        receive size estimates from each peer.  Expects to wait
26  *        for one message from each peer.
27  */
28 #include "platform.h"
29 #include "gnunet_testing_lib.h"
30 #include "gnunet_nse_service.h"
31
32 #define VERBOSE GNUNET_NO
33
34 #define NUM_PEERS 4
35
36 struct NSEPeer
37 {
38   struct NSEPeer *prev;
39
40   struct NSEPeer *next;
41
42   struct GNUNET_TESTING_Daemon *daemon;
43
44   struct GNUNET_NSE_Handle *nse_handle;
45 };
46
47 struct NSEPeer *peer_head;
48
49 struct NSEPeer *peer_tail;
50
51 /**
52  * How long do we run the test?
53  */
54 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
55
56 static int ok;
57
58 static int peers_left;
59
60 static unsigned int num_peers;
61
62 static unsigned int total_connections;
63
64 static struct GNUNET_TESTING_PeerGroup *pg;
65
66 /**
67  * Check whether peers successfully shut down.
68  */
69 static void
70 shutdown_callback (void *cls, const char *emsg)
71 {
72   if (emsg != NULL)
73     {
74 #if VERBOSE
75       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
76                   "Shutdown of peers failed: %s!\n",
77                   emsg);
78 #endif
79       if (ok == 0)
80         ok = 666;
81     }
82   else
83     {
84 #if VERBOSE
85       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
86                   "All peers successfully shut down!\n");
87 #endif
88       ok = 0;
89     }
90 }
91
92 static void
93 shutdown_task (void *cls,
94                const struct GNUNET_SCHEDULER_TaskContext *tc)
95 {
96   struct NSEPeer *pos;
97 #if VERBOSE
98   fprintf(stderr, "Ending test.\n");
99 #endif
100
101   while (NULL != (pos = peer_head))
102     {
103       GNUNET_NSE_disconnect(pos->nse_handle);
104       GNUNET_CONTAINER_DLL_remove(peer_head, peer_tail, pos);
105       GNUNET_free(pos);
106     }
107
108   GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
109 }
110
111 /**
112  * Callback to call when network size estimate is updated.
113  *
114  * @param cls closure
115  * @param timestamp server timestamp
116  * @param estimate the value of the current network size estimate
117  * @param std_dev standard deviation (rounded down to nearest integer)
118  *                of the size estimation values seen
119  *
120  */
121 static void
122 handle_estimate (void *cls,
123                  struct GNUNET_TIME_Absolute timestamp,
124                  double estimate, double std_dev)
125 {
126   struct NSEPeer *peer = cls;
127
128   fprintf (stderr,
129            "Received network size estimate from peer %s. logSize: %f std.dev. %f (%f/%u)\n", 
130            GNUNET_i2s(&peer->daemon->id), 
131            estimate, 
132            std_dev,
133            GNUNET_NSE_log_estimate_to_n (estimate),
134            num_peers);
135 }
136
137
138 static void
139 connect_nse_service (void *cls,
140                      const struct GNUNET_SCHEDULER_TaskContext *tc)
141 {
142   struct NSEPeer *current_peer;
143   unsigned int i;
144 #if VERBOSE
145   fprintf(stderr, "TEST_NSE_MULTIPEER: connecting to nse service of peers\n");
146 #endif
147   for (i = 0; i < num_peers; i++)
148     {
149       current_peer = GNUNET_malloc(sizeof(struct NSEPeer));
150       current_peer->daemon = GNUNET_TESTING_daemon_get(pg, i);
151       current_peer->nse_handle = GNUNET_NSE_connect (current_peer->daemon->cfg,
152                                                      &handle_estimate, 
153                                                      current_peer);
154       GNUNET_assert(current_peer->nse_handle != NULL);
155       GNUNET_CONTAINER_DLL_insert (peer_head, peer_tail, current_peer);
156     }
157 }
158
159
160 static void
161 my_cb (void *cls,
162        const char *emsg)
163 {
164   if (emsg != NULL)
165     {
166       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
167                   "Peergroup callback called with error, aborting test!\n");
168       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Error from testing: `%s'\n");
169       ok = 1;
170       GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
171       return;
172     }
173 #if VERBOSE
174   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
175               "Peer Group started successfully, connecting to NSE service for each peer!\n");
176 #endif
177   GNUNET_log (GNUNET_ERROR_TYPE_WARNING, 
178               "Have %u connections\n", total_connections);
179
180   GNUNET_SCHEDULER_add_now(&connect_nse_service, NULL);
181 }
182
183
184 /**
185  * Function that will be called whenever
186  * two daemons are connected by the testing library.
187  *
188  * @param cls closure
189  * @param first peer id for first daemon
190  * @param second peer id for the second daemon
191  * @param distance distance between the connected peers
192  * @param first_cfg config for the first daemon
193  * @param second_cfg config for the second daemon
194  * @param first_daemon handle for the first daemon
195  * @param second_daemon handle for the second daemon
196  * @param emsg error message (NULL on success)
197  */
198 static void 
199 connect_cb (void *cls,
200             const struct GNUNET_PeerIdentity *first,
201             const struct GNUNET_PeerIdentity *second,
202             uint32_t distance,
203             const struct GNUNET_CONFIGURATION_Handle *first_cfg,
204             const struct GNUNET_CONFIGURATION_Handle *second_cfg,
205             struct GNUNET_TESTING_Daemon *first_daemon,
206             struct GNUNET_TESTING_Daemon *second_daemon,
207             const char *emsg)
208 {
209   if (emsg == NULL)
210     {
211       //fprintf(stderr, "Connected %s -> %s\n", GNUNET_i2s(first), second_id);
212       total_connections++;
213     }
214 }
215
216
217
218 static void
219 run (void *cls,
220      char *const *args,
221      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
222 {
223   struct GNUNET_CONFIGURATION_Handle *testing_cfg;
224   unsigned long long total_peers;
225
226   ok = 1;
227   testing_cfg = GNUNET_CONFIGURATION_create();
228   GNUNET_assert(GNUNET_OK == GNUNET_CONFIGURATION_load(testing_cfg, cfgfile));
229
230 #if VERBOSE
231   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemons.\n");
232   GNUNET_CONFIGURATION_set_value_string (testing_cfg,
233                                          "testing",
234                                          "use_progressbars",
235                                          "YES");
236 #endif
237   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_number (testing_cfg, 
238                                                           "testing",
239                                                           "num_peers",
240                                                           &total_peers))
241     total_peers = NUM_PEERS;
242
243   peers_left = total_peers;
244   num_peers = peers_left;
245   pg = GNUNET_TESTING_peergroup_start(testing_cfg,
246                                       peers_left,
247                                       TIMEOUT,
248                                       &connect_cb,
249                                       &my_cb, NULL,
250                                       NULL);
251   GNUNET_assert (pg != NULL);
252   GNUNET_SCHEDULER_add_delayed (TIMEOUT, &shutdown_task, NULL);
253 }
254
255
256 static int
257 check ()
258 {
259   char *const argv[] = { "test-nse-multipeer",
260     "-c",
261     "test_nse.conf",
262 #if VERBOSE
263     "-L", "DEBUG",
264 #endif
265     NULL
266   };
267   struct GNUNET_GETOPT_CommandLineOption options[] = {
268     GNUNET_GETOPT_OPTION_END
269   };
270   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
271                       argv, "test-nse-multipeer", "nohelp",
272                       options, &run, &ok);
273   return ok;
274 }
275
276
277 int
278 main (int argc, char *argv[])
279 {
280   int ret;
281
282   GNUNET_log_setup ("test-nse-multipeer",
283 #if VERBOSE
284                     "DEBUG",
285 #else
286                     "WARNING",
287 #endif
288                     NULL);
289   ret = check ();
290   // GNUNET_DISK_directory_remove ("/tmp/test-nse-multipeer");
291   return ret;
292 }
293
294 /* end of test_nse_multipeer.c */