ats info
[oweals/gnunet.git] / src / ats / test_ats_api_scheduling_update_address.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_api_scheduling_update_address.c
22  * @brief test updating an address: add address, get and compare it, update it
23  *        get it again and compre
24  * @author Christian Grothoff
25  * @author Matthias Wachs
26  */
27 #include "platform.h"
28 #include "gnunet_ats_service.h"
29 #include "gnunet_testing_lib-new.h"
30 #include "ats.h"
31 #include "test_ats_api_common.h"
32
33 static GNUNET_SCHEDULER_TaskIdentifier die_task;
34
35 /**
36  * Scheduling handle
37  */
38 static struct GNUNET_ATS_SchedulingHandle *sched_ats;
39
40 /**
41  * Return value
42  */
43 static int ret;
44
45 /**
46  * Test address
47  */
48 static struct Test_Address test_addr;
49
50 /**
51  * Test peer
52  */
53 static struct PeerContext p;
54
55 /**
56  * HELLO test address
57  */
58
59 struct GNUNET_HELLO_Address test_hello_address;
60
61 /**
62  * Test session
63  */
64 static void *test_session;
65
66 /**
67  * Test ats info
68  */
69 struct GNUNET_ATS_Information test_ats_info[2];
70
71 /**
72  * Test ats count
73  */
74 uint32_t test_ats_count;
75
76
77 static void
78 create_test_address (struct Test_Address *dest, char * plugin, void *session, void *addr, size_t addrlen)
79 {
80   dest->plugin = GNUNET_strdup (plugin);
81   dest->session = session;
82   dest->addr = GNUNET_malloc (addrlen);
83   memcpy (dest->addr, addr, addrlen);
84   dest->addr_len = addrlen;
85 }
86
87 static void
88 free_test_address (struct Test_Address *dest)
89 {
90   GNUNET_free (dest->plugin);
91   GNUNET_free (dest->addr);
92 }
93
94
95 static void
96 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
97 {
98   die_task = GNUNET_SCHEDULER_NO_TASK;
99
100   if (sched_ats != NULL)
101     GNUNET_ATS_scheduling_done (sched_ats);
102   free_test_address (&test_addr);
103   ret = GNUNET_SYSERR;
104 }
105
106
107 static void
108 end ()
109 {
110   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Shutting down\n");
111   if (die_task != GNUNET_SCHEDULER_NO_TASK)
112   {
113     GNUNET_SCHEDULER_cancel (die_task);
114     die_task = GNUNET_SCHEDULER_NO_TASK;
115   }
116   GNUNET_ATS_scheduling_done (sched_ats);
117   sched_ats = NULL;
118   free_test_address (&test_addr);
119 }
120
121
122 static int
123 compare_addresses (const struct GNUNET_HELLO_Address *address1, void *session1,
124                    const struct GNUNET_HELLO_Address *address2, void *session2)
125 {
126   if (0 != memcmp (&address1->peer, &address2->peer, sizeof (struct GNUNET_PeerIdentity)))
127   {
128       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggestion with invalid peer id'\n");
129       return GNUNET_SYSERR;
130   }
131   if (0 != strcmp (address1->transport_name, address2->transport_name))
132   {
133       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggestion with invalid plugin'\n");
134       return GNUNET_SYSERR;
135   }
136   if (address1->address_length != address2->address_length)
137   {
138       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggestion with invalid address length'\n");
139       return GNUNET_SYSERR;
140
141   }
142   else if (0 != memcmp (address1->address, address2->address, address2->address_length))
143   {
144       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggestion with invalid address'\n");
145       return GNUNET_SYSERR;
146   }
147   if (session1 != session2)
148   {
149       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggestion with invalid session1 %p vs session2 %p'\n",
150                   session1, session2);
151       return GNUNET_SYSERR;
152
153   }
154   return GNUNET_OK;
155 }
156
157 static int
158 compare_ats (const struct GNUNET_ATS_Information *ats_is, uint32_t ats_count_is,
159              const struct GNUNET_ATS_Information *ats_should, uint32_t ats_count_should)
160 {
161   unsigned int c_o;
162   unsigned int c_i;
163   char *prop[] = GNUNET_ATS_PropertyStrings;
164   uint32_t type1;
165   uint32_t type2;
166   uint32_t val1;
167   uint32_t val2;
168   int res = GNUNET_OK;
169
170   for (c_o = 0; c_o < ats_count_is; c_o++)
171   {
172     for (c_i = 0; c_i < ats_count_should; c_i++)
173     {
174         type1 = ntohl(ats_is[c_o].type);
175         type2 = ntohl(ats_should[c_i].type);
176         if (type1 == type2)
177         {
178             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ATS type `%s'\n",
179                         prop[type1]);
180             val1 = ntohl(ats_is[c_o].value);
181             val2 = ntohl(ats_should[c_i].value);
182             if (val1 != val2)
183             {
184                 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "ATS value `%s' not equal: %u != %u\n",
185                             prop[type1],
186                             val1, val2);
187                 res = GNUNET_SYSERR;
188             }
189             else
190             {
191               GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ATS value `%s' equal: %u == %u\n",
192                           prop[type1],
193                           val1, val2);
194             }
195         }
196     }
197   }
198   return res;
199 }
200
201 static void
202 address_suggest_cb (void *cls, const struct GNUNET_HELLO_Address *address,
203                     struct Session *session,
204                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
205                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
206                     const struct GNUNET_ATS_Information *atsi,
207                     uint32_t ats_count)
208 {
209   static int stage = 0;
210   if (0 == stage)
211   {
212     GNUNET_ATS_suggest_address_cancel (sched_ats, &p.id);
213     if (GNUNET_OK == compare_addresses(address, session, &test_hello_address, test_session))
214     {
215       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stage 0: Callback for correct address `%s'\n",
216                   GNUNET_i2s (&address->peer));
217       ret = 0;
218     }
219     else
220     {
221       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Stage 0: Callback with incorrect address `%s'\n",
222                     GNUNET_i2s (&address->peer));
223       ret = 1;
224       GNUNET_SCHEDULER_add_now (&end, NULL);
225       return;
226     }
227
228     if (GNUNET_OK != compare_ats(atsi, ats_count, test_ats_info, test_ats_count))
229     {
230       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Stage 0: Callback with incorrect ats info \n");
231       ret = 1;
232       GNUNET_SCHEDULER_add_now (&end, NULL);
233       return;
234     }
235
236     /* Update address */
237
238     /* Request address */
239     GNUNET_ATS_suggest_address (sched_ats, &p.id);
240     stage ++;
241   }
242   else if (1 == stage)
243   {
244       GNUNET_ATS_suggest_address_cancel (sched_ats, &p.id);
245       if (GNUNET_OK == compare_addresses(address, session, &test_hello_address, test_session))
246       {
247         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stage 1: Callback with correct address `%s'\n",
248                     GNUNET_i2s (&address->peer));
249         ret = 0;
250       }
251       else
252       {
253         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Stage 1: Callback with incorrect address `%s'\n",
254                     GNUNET_i2s (&address->peer));
255         ret = 1;
256       }
257
258       GNUNET_SCHEDULER_add_now (&end, NULL);
259   }
260 }
261
262 static void
263 run (void *cls,
264      const struct GNUNET_CONFIGURATION_Handle *cfg,
265      struct GNUNET_TESTING_Peer *peer)
266 {
267   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
268
269   /* Connect to ATS scheduling */
270   sched_ats = GNUNET_ATS_scheduling_init (cfg, &address_suggest_cb, NULL);
271   if (sched_ats == NULL)
272   {
273     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS scheduling!\n");
274     ret = 1;
275     end ();
276     return;
277   }
278
279   /* Set up peer */
280   if (GNUNET_SYSERR == GNUNET_CRYPTO_hash_from_string(PEERID, &p.id.hashPubKey))
281   {
282       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not setup peer!\n");
283       ret = GNUNET_SYSERR;
284       end ();
285       return;
286   }
287
288   GNUNET_assert (0 == strcmp (PEERID, GNUNET_i2s_full (&p.id)));
289
290   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
291               GNUNET_i2s_full(&p.id));
292
293   /* Prepare ATS Information */
294   test_ats_info[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
295   test_ats_info[0].value = htonl(GNUNET_ATS_NET_WAN);
296   test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
297   test_ats_info[1].value = htonl(1);
298   test_ats_count = 2;
299
300   /* Adding address without session */
301   test_session = &test_addr;
302   create_test_address (&test_addr, "test", &test_addr, "test", strlen ("test") + 1);
303   test_hello_address.peer = p.id;
304   test_hello_address.transport_name = test_addr.plugin;
305   test_hello_address.address = test_addr.addr;
306   test_hello_address.address_length = test_addr.addr_len;
307   GNUNET_ATS_address_add (sched_ats, &test_hello_address, test_session, test_ats_info, test_ats_count);
308
309   /* Request address */
310   GNUNET_ATS_suggest_address (sched_ats, &p.id);
311 }
312
313
314 int
315 main (int argc, char *argv[])
316 {
317   if (0 != GNUNET_TESTING_peer_run ("test_ats_api_scheduling_update_address",
318                                     "test_ats_api.conf",
319                                     &run, NULL))
320     return 1;
321   return ret;
322 }
323
324 /* end of file test_ats_api_scheduling_update_address.c */