fixed compiler warning in tests
[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   //sleep(50);
136   GNUNET_RPS_request_peers(rps, 1, handle_reply, NULL);
137   GNUNET_RPS_request_peers(rps, 1, handle_reply, NULL);
138   //sleep(10000);
139   //GNUNET_RPS_request_peers(rps, 1, handle_reply, NULL);
140   //sleep(10000);
141   //GNUNET_RPS_request_peers(rps, 1, handle_reply, NULL);
142   //sleep(10000);
143   //GNUNET_RPS_request_peers(rps, 1, handle_reply, NULL);
144 }
145
146
147 /**
148  * Adapter function called to establish a connection to
149  * the RPS service.
150  *
151  * @param cls closure
152  * @param cfg configuration of the peer to connect to; will be available until
153  *          GNUNET_TESTBED_operation_done() is called on the operation returned
154  *          from GNUNET_TESTBED_service_connect()
155  * @return service handle to return in 'op_result', NULL on error
156  */
157 static void *
158 rps_connect_adapter (void *cls,
159                      const struct GNUNET_CONFIGURATION_Handle *cfg)
160 {
161   return GNUNET_RPS_connect (cfg);
162 }
163
164
165 /**
166  * Adapter function called to destroy connection to
167  * RPS service.
168  *
169  * @param cls closure
170  * @param op_result service handle returned from the connect adapter
171  */
172 static void
173 rps_disconnect_adapter (void *cls,
174                         void *op_result)
175 {
176   struct GNUNET_RPS_Handle *h = op_result;
177   GNUNET_RPS_disconnect (h);
178 }
179
180
181 /**
182  * Actual "main" function for the testcase.
183  *
184  * @param cls closure
185  * @param h the run handle
186  * @param num_peers number of peers in 'peers'
187  * @param peers handle to peers run in the testbed
188  * @param links_succeeded the number of overlay link connection attempts that
189  *          succeeded
190  * @param links_failed the number of overlay link connection attempts that
191  *          failed
192  */
193 static void
194 run (void *cls,
195      struct GNUNET_TESTBED_RunHandle *h,
196      unsigned int num_peers,
197      struct GNUNET_TESTBED_Peer **peers,
198      unsigned int links_succeeded,
199      unsigned int links_failed)
200 {
201   unsigned int i;
202
203   GNUNET_assert (NUM_PEERS == num_peers);
204   for (i=0;i<num_peers;i++)
205     rps_peers[i].op = GNUNET_TESTBED_service_connect (&rps_peers[i],
206                                                       peers[i],
207                                                       "rps",
208                                                       &rps_connect_complete_cb,
209                                                       &rps_peers[i],
210                                                       &rps_connect_adapter,
211                                                       &rps_disconnect_adapter,
212                                                       &rps_peers[i]);
213   GNUNET_SCHEDULER_add_delayed (TIMEOUT, &shutdown_task, NULL);
214 }
215
216
217 /**
218  * Entry point for the testcase, sets up the testbed.
219  *
220  * @param argc unused
221  * @param argv unused
222  * @return 0 on success
223  */
224 int
225 main (int argc, char *argv[])
226 {
227   ok = 1;
228   (void) GNUNET_TESTBED_test_run ("test-rps-multipeer",
229                                   "test_rps.conf",
230                                   NUM_PEERS,
231                                   0, NULL, NULL,
232                                   &run, NULL);
233   return ok;
234 }
235
236 /* end of test_rps_multipeer.c */