preference value calculation
[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[2];
63
64 /**
65  * Test peer
66  */
67 static struct PeerContext p[2];
68
69
70 /**
71  * HELLO address
72  */
73 struct GNUNET_HELLO_Address test_hello_address[2];
74
75 /**
76  * Session
77  */
78 static void *test_session[2];
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[0]);
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[0]);
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[0], test_session[0]))
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[0].id);
187       GNUNET_SCHEDULER_add_now (&end, NULL);
188       return;
189     }
190
191     stage ++;
192
193     GNUNET_ATS_suggest_address_cancel (sched_ats, &p[0].id);
194     GNUNET_SCHEDULER_add_now (&end, NULL);
195     return;
196   }
197 }
198
199 static void
200 run (void *cls,
201      const struct GNUNET_CONFIGURATION_Handle *cfg,
202      struct GNUNET_TESTING_Peer *peer)
203 {
204   char *quota_str;
205
206   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string(cfg, "ats", "WAN_QUOTA_OUT", &quota_str))
207   {
208       fprintf (stderr, "Cannot load WAN outbound quota from configuration, exit!\n");
209       ret = 1;
210       return;
211   }
212   if  (GNUNET_SYSERR == GNUNET_STRINGS_fancy_size_to_bytes (quota_str, &wan_quota_out))
213   {
214       fprintf (stderr, "Cannot load WAN outbound quota from configuration, exit!\n");
215       ret = 1;
216       GNUNET_free (quota_str);
217       return;
218   }
219   GNUNET_free (quota_str);
220   quota_str = NULL;
221
222   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string(cfg, "ats", "WAN_QUOTA_IN", &quota_str))
223   {
224       fprintf (stderr, "Cannot load WAN inbound quota from configuration, exit!\n");
225       ret = 1;
226       return;
227   }
228   if  (GNUNET_SYSERR == GNUNET_STRINGS_fancy_size_to_bytes (quota_str, &wan_quota_in))
229   {
230       fprintf (stderr, "Cannot load WAN inbound quota from configuration, exit!\n");
231       GNUNET_free (quota_str);
232       ret = 1;
233       return;
234   }
235   GNUNET_free (quota_str);
236   quota_str = NULL;
237   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Configured WAN inbound quota: %llu\n", wan_quota_in);
238   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Configured WAN outbound quota: %llu\n", wan_quota_out);
239
240
241   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
242
243   /* Connect to ATS scheduling */
244   sched_ats = GNUNET_ATS_scheduling_init (cfg, &address_suggest_cb, NULL);
245   if (sched_ats == NULL)
246   {
247     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS scheduling!\n");
248     ret = 1;
249     end ();
250     return;
251   }
252
253   perf_ats = GNUNET_ATS_performance_init (cfg, NULL, NULL);
254   if (perf_ats == NULL)
255   {
256     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS performance!\n");
257     ret = 1;
258     end ();
259     return;
260   }
261
262   /* Set up peer 0 */
263   if (GNUNET_SYSERR == GNUNET_CRYPTO_hash_from_string(PEERID0, &p[0].id.hashPubKey))
264   {
265       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not setup peer!\n");
266       ret = GNUNET_SYSERR;
267       end ();
268       return;
269   }
270
271   GNUNET_assert (0 == strcmp (PEERID0, GNUNET_i2s_full (&p[0].id)));
272
273   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
274               GNUNET_i2s(&p[0].id));
275
276
277   /* Set up peer 0 */
278   if (GNUNET_SYSERR == GNUNET_CRYPTO_hash_from_string(PEERID1, &p[1].id.hashPubKey))
279   {
280       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not setup peer!\n");
281       ret = GNUNET_SYSERR;
282       end ();
283       return;
284   }
285
286   GNUNET_assert (0 == strcmp (PEERID1, GNUNET_i2s_full (&p[1].id)));
287
288   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
289               GNUNET_i2s(&p[1].id));
290
291   /* Prepare ATS Information */
292   test_ats_info[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
293   test_ats_info[0].value = htonl(GNUNET_ATS_NET_WAN);
294   test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
295   test_ats_info[1].value = htonl(1);
296   test_ats_count = 2;
297
298   /* Adding address with session */
299   test_session[0] = &test_addr[0];
300   create_test_address (&test_addr[0], "test0", test_session[0], "test0", strlen ("test0") + 1);
301   test_hello_address[0].peer = p[0].id;
302   test_hello_address[0].transport_name = test_addr[0].plugin;
303   test_hello_address[0].address = test_addr[0].addr;
304   test_hello_address[0].address_length = test_addr[0].addr_len;
305   GNUNET_ATS_address_add (sched_ats, &test_hello_address[0], test_session[0], test_ats_info, test_ats_count);
306
307
308   /* Adding address with session */
309   test_session[1] = &test_addr[1];
310   create_test_address (&test_addr[1], "test1", test_session[1], "test1", strlen ("test1") + 1);
311   test_hello_address[1].peer = p[1].id;
312   test_hello_address[1].transport_name = test_addr[0].plugin;
313   test_hello_address[1].address = test_addr[0].addr;
314   test_hello_address[1].address_length = test_addr[0].addr_len;
315   GNUNET_ATS_address_add (sched_ats, &test_hello_address[1], test_session[1], test_ats_info, test_ats_count);
316
317
318   /* Change bandwidth preference */
319   GNUNET_ATS_change_preference (perf_ats,
320       &p[0].id,
321       GNUNET_ATS_PREFERENCE_BANDWIDTH,(double) 1000, GNUNET_ATS_PREFERENCE_END);
322   GNUNET_ATS_change_preference (perf_ats,
323       &p[1].id,
324       GNUNET_ATS_PREFERENCE_BANDWIDTH,(double) 1000, GNUNET_ATS_PREFERENCE_END);
325
326
327   /* Change latency preference */
328
329   GNUNET_ATS_change_preference (perf_ats,
330       &p[0].id,
331       GNUNET_ATS_PREFERENCE_LATENCY,(double) 10, GNUNET_ATS_PREFERENCE_END);
332   GNUNET_ATS_change_preference (perf_ats,
333       &p[1].id,
334       GNUNET_ATS_PREFERENCE_LATENCY,(double) 100, GNUNET_ATS_PREFERENCE_END);
335   GNUNET_ATS_suggest_address (sched_ats, &p[0].id);
336 }
337
338
339 int
340 main (int argc, char *argv[])
341 {
342   if (0 != GNUNET_TESTING_peer_run ("test_ats_simplistic_change_preference",
343                                     "test_ats_api.conf",
344                                     &run, NULL))
345     return 1;
346   return ret;
347 }
348
349
350 /* end of file test_ats_simplistic_change_preference.c */