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