-report error if starting openssl failed
[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_SCHEDULER_add_now (&end, NULL);
250       return;
251     }
252
253     stage ++;
254     GNUNET_ATS_suggest_address_cancel (sched_ats, &p[1].id);
255     GNUNET_SCHEDULER_add_now (&end, NULL);
256
257     return;
258   }
259 }
260
261 static void
262 sleep_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
263 {
264   GNUNET_ATS_suggest_address (sched_ats, &p[0].id);
265 }
266
267 static void
268 run (void *cls,
269      const struct GNUNET_CONFIGURATION_Handle *cfg,
270      struct GNUNET_TESTING_Peer *peer)
271 {
272   char *quota_str;
273
274   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string(cfg, "ats", "WAN_QUOTA_OUT", &quota_str))
275   {
276       fprintf (stderr, "Cannot load WAN outbound quota from configuration, exit!\n");
277       ret = 1;
278       return;
279   }
280   if  (GNUNET_SYSERR == GNUNET_STRINGS_fancy_size_to_bytes (quota_str, &wan_quota_out))
281   {
282       fprintf (stderr, "Cannot load WAN outbound quota from configuration, exit!\n");
283       ret = 1;
284       GNUNET_free (quota_str);
285       return;
286   }
287   GNUNET_free (quota_str);
288   quota_str = NULL;
289
290   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string(cfg, "ats", "WAN_QUOTA_IN", &quota_str))
291   {
292       fprintf (stderr, "Cannot load WAN inbound quota from configuration, exit!\n");
293       ret = 1;
294       return;
295   }
296   if  (GNUNET_SYSERR == GNUNET_STRINGS_fancy_size_to_bytes (quota_str, &wan_quota_in))
297   {
298       fprintf (stderr, "Cannot load WAN inbound quota from configuration, exit!\n");
299       GNUNET_free (quota_str);
300       ret = 1;
301       return;
302   }
303   GNUNET_free (quota_str);
304   quota_str = NULL;
305   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Configured WAN inbound quota: %llu\n", wan_quota_in);
306   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Configured WAN outbound quota: %llu\n", wan_quota_out);
307
308
309   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
310
311   /* Connect to ATS scheduling */
312   sched_ats = GNUNET_ATS_scheduling_init (cfg, &address_suggest_cb, NULL);
313   if (sched_ats == NULL)
314   {
315     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS scheduling!\n");
316     ret = 1;
317     end ();
318     return;
319   }
320
321   perf_ats = GNUNET_ATS_performance_init (cfg, NULL, NULL);
322   if (perf_ats == NULL)
323   {
324     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS performance!\n");
325     ret = 1;
326     end ();
327     return;
328   }
329
330   /* Set up peer 0 */
331   if (GNUNET_SYSERR == GNUNET_CRYPTO_hash_from_string(PEERID0, &p[0].id.hashPubKey))
332   {
333       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not setup peer!\n");
334       ret = GNUNET_SYSERR;
335       end ();
336       return;
337   }
338
339   GNUNET_assert (0 == strcmp (PEERID0, GNUNET_i2s_full (&p[0].id)));
340
341   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
342               GNUNET_i2s(&p[0].id));
343
344
345   /* Set up peer 0 */
346   if (GNUNET_SYSERR == GNUNET_CRYPTO_hash_from_string(PEERID1, &p[1].id.hashPubKey))
347   {
348       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not setup peer!\n");
349       ret = GNUNET_SYSERR;
350       end ();
351       return;
352   }
353
354   GNUNET_assert (0 == strcmp (PEERID1, GNUNET_i2s_full (&p[1].id)));
355
356   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
357               GNUNET_i2s(&p[1].id));
358
359   /* Prepare ATS Information */
360   test_ats_info[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
361   test_ats_info[0].value = htonl(GNUNET_ATS_NET_WAN);
362   test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
363   test_ats_info[1].value = htonl(1);
364   test_ats_count = 2;
365
366   /* Adding address with session */
367   test_session[0] = &test_addr[0];
368   create_test_address (&test_addr[0], "test0", test_session[0], "test0", strlen ("test0") + 1);
369   test_hello_address[0].peer = p[0].id;
370   test_hello_address[0].transport_name = test_addr[0].plugin;
371   test_hello_address[0].address = test_addr[0].addr;
372   test_hello_address[0].address_length = test_addr[0].addr_len;
373   GNUNET_ATS_address_add (sched_ats, &test_hello_address[0], test_session[0], test_ats_info, test_ats_count);
374
375
376   /* Adding address with session */
377   test_session[1] = &test_addr[1];
378   create_test_address (&test_addr[1], "test1", test_session[1], "test1", strlen ("test1") + 1);
379   test_hello_address[1].peer = p[1].id;
380   test_hello_address[1].transport_name = test_addr[0].plugin;
381   test_hello_address[1].address = test_addr[0].addr;
382   test_hello_address[1].address_length = test_addr[0].addr_len;
383   GNUNET_ATS_address_add (sched_ats, &test_hello_address[1], test_session[1], test_ats_info, test_ats_count);
384
385
386   /* Change bandwidth preference */
387   GNUNET_ATS_change_preference (perf_ats,
388       &p[0].id,
389       GNUNET_ATS_PREFERENCE_BANDWIDTH,(double) 1000, GNUNET_ATS_PREFERENCE_END);
390   GNUNET_ATS_change_preference (perf_ats,
391       &p[1].id,
392       GNUNET_ATS_PREFERENCE_BANDWIDTH,(double) 1000, GNUNET_ATS_PREFERENCE_END);
393
394
395   /* Change latency preference */
396
397   GNUNET_ATS_change_preference (perf_ats,
398       &p[0].id,
399       GNUNET_ATS_PREFERENCE_LATENCY,(double) 10, GNUNET_ATS_PREFERENCE_END);
400   GNUNET_ATS_change_preference (perf_ats,
401       &p[1].id,
402       GNUNET_ATS_PREFERENCE_LATENCY,(double) 100, GNUNET_ATS_PREFERENCE_END);
403   GNUNET_SCHEDULER_add_delayed (SLEEP, &sleep_task, NULL);
404 }
405
406
407 int
408 main (int argc, char *argv[])
409 {
410   if (0 != GNUNET_TESTING_peer_run ("test_ats_simplistic_change_preference",
411                                     "test_ats_api.conf",
412                                     &run, NULL))
413     return 1;
414   return ret;
415 }
416
417
418 /* end of file test_ats_simplistic_change_preference.c */