fixing test
[oweals/gnunet.git] / src / ats / test_ats_simplistic_change_preference.c
1 /*
2      This file is part of GNUnet.
3      (C) 2010,2011 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 ats/test_ats_mlp.c
22  * @brief test for the MLP solver
23  * @author Christian Grothoff
24  * @author Matthias Wachs
25
26  */
27 /**
28  * @file ats/test_ats_simplistic_change_preference.c
29  * @brief test for changing preferences in ats simplistic solver
30  * @author Christian Grothoff
31  * @author Matthias Wachs
32  */
33 #include "platform.h"
34 #include "gnunet_ats_service.h"
35 #include "gnunet_testing_lib-new.h"
36 #include "ats.h"
37 #include "test_ats_api_common.h"
38
39 #define DEBUG_ATS_INFO GNUNET_NO
40
41 static GNUNET_SCHEDULER_TaskIdentifier die_task;
42
43 /**
44  * Scheduling handle
45  */
46 static struct GNUNET_ATS_SchedulingHandle *sched_ats;
47
48 /**
49  * Scheduling handle
50  */
51 static struct GNUNET_ATS_PerformanceHandle *perf_ats;
52
53
54 /**
55  * Return value
56  */
57 static int ret;
58
59 /**
60  * Test address
61  */
62 static struct Test_Address test_addr;
63
64 /**
65  * Test peer
66  */
67 static struct PeerContext p;
68
69
70 /**
71  * HELLO address
72  */
73 struct GNUNET_HELLO_Address test_hello_address;
74
75 /**
76  * Session
77  */
78 static void *test_session;
79
80 /**
81  * Test ats info
82  */
83 struct GNUNET_ATS_Information test_ats_info[2];
84
85 /**
86  * Test ats count
87  */
88 uint32_t test_ats_count;
89
90 /**
91  * Configured WAN out quota
92  */
93 unsigned long long wan_quota_out;
94
95 /**
96  * Configured WAN in quota
97  */
98 unsigned long long wan_quota_in;
99
100
101 static void
102 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
103 {
104   die_task = GNUNET_SCHEDULER_NO_TASK;
105
106   if (sched_ats != NULL)
107     GNUNET_ATS_scheduling_done (sched_ats);
108   if (perf_ats != NULL)
109     GNUNET_ATS_performance_done (perf_ats);
110   free_test_address (&test_addr);
111   ret = GNUNET_SYSERR;
112 }
113
114
115 static void
116 end ()
117 {
118   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Shutting down\n");
119   if (die_task != GNUNET_SCHEDULER_NO_TASK)
120   {
121     GNUNET_SCHEDULER_cancel (die_task);
122     die_task = GNUNET_SCHEDULER_NO_TASK;
123   }
124   GNUNET_ATS_performance_done (perf_ats);
125   perf_ats = NULL;
126   GNUNET_ATS_scheduling_done (sched_ats);
127   sched_ats = NULL;
128   free_test_address (&test_addr);
129 }
130
131
132 static void
133 address_suggest_cb (void *cls, const struct GNUNET_HELLO_Address *address,
134                     struct Session *session,
135                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
136                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
137                     const struct GNUNET_ATS_Information *atsi,
138                     uint32_t ats_count)
139 {
140   static int stage = 0;
141   unsigned int bw_in = ntohl(bandwidth_in.value__);
142   unsigned int bw_out = ntohl(bandwidth_out.value__);
143   if (0 == stage)
144   {
145     if (GNUNET_OK == compare_addresses (address, session, &test_hello_address, test_session))
146     {
147         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stage 0: Callback with correct address `%s'\n",
148                     GNUNET_i2s (&address->peer));
149         ret = 0;
150     }
151     else
152     {
153         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stage 0: Callback with invalid address `%s'\n",
154                     GNUNET_i2s (&address->peer));
155         ret = 1;
156     }
157
158     if (GNUNET_OK != compare_ats(atsi, ats_count, test_ats_info, test_ats_count))
159     {
160       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Stage 0: Callback with incorrect ats info \n");
161       ret = 1;
162     }
163
164     if (bw_in > wan_quota_in)
165     {
166         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggested WAN inbound quota %u bigger than allowed quota %llu \n",
167             bw_in, wan_quota_in);
168         ret = 1;
169     }
170     else
171       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Suggested WAN inbound quota %u, allowed quota %llu \n",
172           bw_in, wan_quota_in);
173
174     if (bw_out > wan_quota_out)
175     {
176         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggested WAN outbound quota %u bigger than allowed quota %llu \n",
177             bw_out, wan_quota_out);
178         ret = 1;
179     }
180     else
181       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Suggested WAN outbound quota %u, allowed quota %llu \n",
182           bw_out, wan_quota_out);
183
184     if (1 == ret)
185     {
186       GNUNET_ATS_suggest_address_cancel (sched_ats, &p.id);
187       GNUNET_SCHEDULER_add_now (&end, NULL);
188       return;
189     }
190
191     stage ++;
192
193     /* Change preference */
194     GNUNET_ATS_change_preference (perf_ats,
195         &p.id,
196         GNUNET_ATS_PREFERENCE_BANDWIDTH,(double) 1000, GNUNET_ATS_PREFERENCE_END);
197
198     /* Request address */
199     GNUNET_ATS_reset_backoff (sched_ats, &p.id);
200     GNUNET_ATS_suggest_address (sched_ats, &p.id);
201     return;
202   }
203   if (1 == stage)
204   {
205       /* Expecting callback for address with updated quota and no callback for address[1]*/
206       if (GNUNET_OK == compare_addresses (address, session, &test_hello_address, test_session))
207       {
208           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stage 1: Callback with correct address `%s'\n",
209                       GNUNET_i2s (&address->peer));
210           ret = 0;
211       }
212       else
213       {
214           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stage 1: Callback with invalid address `%s'\n",
215                       GNUNET_i2s (&address->peer));
216           ret = 1;
217       }
218
219       if (GNUNET_OK != compare_ats(atsi, ats_count, test_ats_info, test_ats_count))
220       {
221         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Stage 1: Callback with incorrect ats info \n");
222         ret = 1;
223       }
224
225       if (bw_in > wan_quota_in)
226       {
227           GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggested WAN inbound quota %u bigger than allowed quota %llu \n",
228               bw_in, wan_quota_in);
229           ret = 1;
230       }
231       else if (p.bw_in_assigned > bw_in)
232       {
233           GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggested WAN inbound quota %u bigger than last quota %llu \n",
234               bw_in, p.bw_in_assigned);
235           ret = 1;
236       }
237       else
238         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Suggested WAN inbound quota %u, allowed quota %llu \n",
239             bw_in, wan_quota_in);
240
241       if (bw_out > wan_quota_out)
242       {
243           GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggested WAN outbound quota %u bigger than allowed quota %llu \n",
244               bw_out, wan_quota_out);
245           ret = 1;
246       }
247       else if (p.bw_out_assigned > bw_out)
248       {
249           GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggested WAN inbound quota %u bigger than last quota %llu \n",
250               bw_out, p.bw_out_assigned);
251           ret = 1;
252       }
253       else
254         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Suggested WAN outbound quota %u, allowed quota %llu \n",
255             bw_out, wan_quota_out);
256
257       if (1 == ret)
258       {
259         GNUNET_ATS_suggest_address_cancel (sched_ats, &p.id);
260         GNUNET_SCHEDULER_add_now (&end, NULL);
261         return;
262       }
263       stage ++;
264
265       GNUNET_ATS_suggest_address_cancel (sched_ats, &p.id);
266       GNUNET_SCHEDULER_add_now (&end, NULL);
267       return;
268   }
269
270 }
271
272 static void
273 run (void *cls,
274      const struct GNUNET_CONFIGURATION_Handle *cfg,
275      struct GNUNET_TESTING_Peer *peer)
276 {
277   char *quota_str;
278
279   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string(cfg, "ats", "WAN_QUOTA_OUT", &quota_str))
280   {
281       fprintf (stderr, "Cannot load WAN outbound quota from configuration, exit!\n");
282       ret = 1;
283       return;
284   }
285   if  (GNUNET_SYSERR == GNUNET_STRINGS_fancy_size_to_bytes (quota_str, &wan_quota_out))
286   {
287       fprintf (stderr, "Cannot load WAN outbound quota from configuration, exit!\n");
288       ret = 1;
289       GNUNET_free (quota_str);
290       return;
291   }
292   GNUNET_free (quota_str);
293   quota_str = NULL;
294
295   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string(cfg, "ats", "WAN_QUOTA_IN", &quota_str))
296   {
297       fprintf (stderr, "Cannot load WAN inbound quota from configuration, exit!\n");
298       ret = 1;
299       return;
300   }
301   if  (GNUNET_SYSERR == GNUNET_STRINGS_fancy_size_to_bytes (quota_str, &wan_quota_in))
302   {
303       fprintf (stderr, "Cannot load WAN inbound quota from configuration, exit!\n");
304       GNUNET_free (quota_str);
305       ret = 1;
306       return;
307   }
308   GNUNET_free (quota_str);
309   quota_str = NULL;
310   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Configured WAN inbound quota: %llu\n", wan_quota_in);
311   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Configured WAN outbound quota: %llu\n", wan_quota_out);
312
313
314   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
315
316   /* Connect to ATS scheduling */
317   sched_ats = GNUNET_ATS_scheduling_init (cfg, &address_suggest_cb, NULL);
318   if (sched_ats == NULL)
319   {
320     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS scheduling!\n");
321     ret = 1;
322     end ();
323     return;
324   }
325
326   perf_ats = GNUNET_ATS_performance_init (cfg, NULL, NULL);
327   if (perf_ats == NULL)
328   {
329     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS performance!\n");
330     ret = 1;
331     end ();
332     return;
333   }
334
335   /* Set up peer 0 */
336   if (GNUNET_SYSERR == GNUNET_CRYPTO_hash_from_string(PEERID0, &p.id.hashPubKey))
337   {
338       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not setup peer!\n");
339       ret = GNUNET_SYSERR;
340       end ();
341       return;
342   }
343
344   GNUNET_assert (0 == strcmp (PEERID0, GNUNET_i2s_full (&p.id)));
345
346   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
347               GNUNET_i2s(&p.id));
348
349
350   /* Prepare ATS Information */
351   test_ats_info[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
352   test_ats_info[0].value = htonl(GNUNET_ATS_NET_WAN);
353   test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
354   test_ats_info[1].value = htonl(1);
355   test_ats_count = 2;
356
357   /* Adding address with session */
358   test_session = &test_addr;
359   create_test_address (&test_addr, "test0", test_session, "test0", strlen ("test0") + 1);
360   test_hello_address.peer = p.id;
361   test_hello_address.transport_name = test_addr.plugin;
362   test_hello_address.address = test_addr.addr;
363   test_hello_address.address_length = test_addr.addr_len;
364   GNUNET_ATS_address_add (sched_ats, &test_hello_address, test_session, test_ats_info, test_ats_count);
365
366   GNUNET_ATS_suggest_address (sched_ats, &p.id);
367 }
368
369
370 int
371 main (int argc, char *argv[])
372 {
373   if (0 != GNUNET_TESTING_peer_run ("test_ats_simplistic_change_preference",
374                                     "test_ats_api.conf",
375                                     &run, NULL))
376     return 1;
377   return ret;
378 }
379
380
381 /* end of file test_ats_simplistic_change_preference.c */