removed unnecessary uncommented code
[oweals/gnunet.git] / src / rps / test_rps_multipeer.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2012 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 rps/test_rps_multipeer.c
22  * @brief Testcase for the random peer sampling service.  Starts
23  *        a peergroup with a given number of peers, then waits to
24  *        receive size pushes/pulls from each peer.  Expects to wait
25  *        for one message from each peer.
26  */
27 #include"platform.h"
28 #include "gnunet_testbed_service.h"
29 #include "gnunet_rps_service.h"
30 #include <time.h>
31
32
33 /**
34  * How many peers do we start?
35  */
36 #define NUM_PEERS 3
37
38 /**
39  * How long do we run the test?
40  */
41 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 120)
42
43
44 /**
45  * Information we track for each peer.
46  */
47 struct RPSPeer
48 {
49   /**
50    * Handle for RPS connect operation.
51    */
52   struct GNUNET_TESTBED_Operation *op;
53
54   /**
55    * Handle to RPS service.
56    */
57   struct GNUNET_RPS_Handle *rps_handle;
58 };
59
60
61 /**
62  * Information for all the peers.
63  */
64 static struct RPSPeer rps_peers[NUM_PEERS];
65
66 /**
67  * Return value from 'main'.
68  */
69 static int ok;
70
71
72 /**
73  * Task run on timeout to shut everything down.
74  */
75 static void
76 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
77 {
78   unsigned int i;
79
80   for (i=0;i<NUM_PEERS;i++)
81     GNUNET_TESTBED_operation_done (rps_peers[i].op);
82   GNUNET_SCHEDULER_shutdown ();
83 }
84
85
86 /**
87  * Callback to call when network size estimate is updated.
88  *
89  * @param cls closure
90  * @param timestamp server timestamp
91  * @param estimate the value of the current network size estimate
92  * @param std_dev standard deviation (rounded down to nearest integer)
93  *                of the size estimation values seen
94  *
95  */
96 static void
97 handle_reply (void *cls, uint64_t n, const struct GNUNET_PeerIdentity *peers)
98 {
99
100   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got peer %s\n", GNUNET_i2s(peers));
101   
102   ok = 0;
103 }
104
105
106 /**
107  * Callback to be called when RPS service connect operation is completed
108  *
109  * @param cls the callback closure from functions generating an operation
110  * @param op the operation that has been finished
111  * @param ca_result the RPS service handle returned from rps_connect_adapter
112  * @param emsg error message in case the operation has failed; will be NULL if
113  *          operation has executed successfully.
114  */
115 static void
116 rps_connect_complete_cb (void *cls,
117                          struct GNUNET_TESTBED_Operation *op,
118                          void *ca_result,
119                          const char *emsg)
120 {
121   struct RPSPeer *peer = cls;
122   struct GNUNET_RPS_Handle *rps = ca_result;
123
124   GNUNET_assert (op == peer->op);
125   if (NULL != emsg)
126     {
127       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
128                   "Failed to connect to RPS service: %s\n",
129                   emsg);
130       ok = 1;
131       GNUNET_SCHEDULER_shutdown ();
132       return;
133     }
134   peer->rps_handle = rps;
135   GNUNET_RPS_request_peers(rps, 1, handle_reply, NULL);
136   GNUNET_RPS_request_peers(rps, 1, handle_reply, NULL);
137 }
138
139
140 /**
141  * Adapter function called to establish a connection to
142  * the RPS service.
143  *
144  * @param cls closure
145  * @param cfg configuration of the peer to connect to; will be available until
146  *          GNUNET_TESTBED_operation_done() is called on the operation returned
147  *          from GNUNET_TESTBED_service_connect()
148  * @return service handle to return in 'op_result', NULL on error
149  */
150 static void *
151 rps_connect_adapter (void *cls,
152                      const struct GNUNET_CONFIGURATION_Handle *cfg)
153 {
154   return GNUNET_RPS_connect (cfg);
155 }
156
157
158 /**
159  * Adapter function called to destroy connection to
160  * RPS service.
161  *
162  * @param cls closure
163  * @param op_result service handle returned from the connect adapter
164  */
165 static void
166 rps_disconnect_adapter (void *cls,
167                         void *op_result)
168 {
169   struct GNUNET_RPS_Handle *h = op_result;
170   GNUNET_RPS_disconnect (h);
171 }
172
173
174 /**
175  * Actual "main" function for the testcase.
176  *
177  * @param cls closure
178  * @param h the run handle
179  * @param num_peers number of peers in 'peers'
180  * @param peers handle to peers run in the testbed
181  * @param links_succeeded the number of overlay link connection attempts that
182  *          succeeded
183  * @param links_failed the number of overlay link connection attempts that
184  *          failed
185  */
186 static void
187 run (void *cls,
188      struct GNUNET_TESTBED_RunHandle *h,
189      unsigned int num_peers,
190      struct GNUNET_TESTBED_Peer **peers,
191      unsigned int links_succeeded,
192      unsigned int links_failed)
193 {
194   unsigned int i;
195
196   GNUNET_assert (NUM_PEERS == num_peers);
197   for (i=0;i<num_peers;i++)
198     rps_peers[i].op = GNUNET_TESTBED_service_connect (&rps_peers[i],
199                                                       peers[i],
200                                                       "rps",
201                                                       &rps_connect_complete_cb,
202                                                       &rps_peers[i],
203                                                       &rps_connect_adapter,
204                                                       &rps_disconnect_adapter,
205                                                       &rps_peers[i]);
206   GNUNET_SCHEDULER_add_delayed (TIMEOUT, &shutdown_task, NULL);
207 }
208
209
210 /**
211  * Entry point for the testcase, sets up the testbed.
212  *
213  * @param argc unused
214  * @param argv unused
215  * @return 0 on success
216  */
217 int
218 main (int argc, char *argv[])
219 {
220   ok = 1;
221   (void) GNUNET_TESTBED_test_run ("test-rps-multipeer",
222                                   "test_rps.conf",
223                                   NUM_PEERS,
224                                   0, NULL, NULL,
225                                   &run, NULL);
226   return ok;
227 }
228
229 /* end of test_rps_multipeer.c */