- changes
[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[3];
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     /* Prepare ATS Information */
238     test_ats_info[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
239     test_ats_info[0].value = htonl(GNUNET_ATS_NET_WAN);
240     test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
241     test_ats_info[1].value = htonl(3);
242     test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DELAY);
243     test_ats_info[1].value = htonl(30);
244     test_ats_count = 2;
245
246     GNUNET_ATS_address_update (sched_ats, &test_hello_address, test_session, test_ats_info, test_ats_count);
247
248     /* Request address */
249     GNUNET_ATS_suggest_address (sched_ats, &p.id);
250     stage ++;
251   }
252   else if (1 == stage)
253   {
254       GNUNET_ATS_suggest_address_cancel (sched_ats, &p.id);
255       if (GNUNET_OK == compare_addresses(address, session, &test_hello_address, test_session))
256       {
257         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stage 1: Callback with correct address `%s'\n",
258                     GNUNET_i2s (&address->peer));
259         ret = 0;
260       }
261       else
262       {
263         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Stage 1: Callback with incorrect address `%s'\n",
264                     GNUNET_i2s (&address->peer));
265         ret = 1;
266       }
267
268       if (GNUNET_OK != compare_ats(atsi, ats_count, test_ats_info, test_ats_count))
269       {
270         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Stage 1: Callback with incorrect ats info \n");
271         ret = 1;
272         GNUNET_SCHEDULER_add_now (&end, NULL);
273         return;
274       }
275
276       GNUNET_SCHEDULER_add_now (&end, NULL);
277   }
278 }
279
280 static void
281 run (void *cls,
282      const struct GNUNET_CONFIGURATION_Handle *cfg,
283      struct GNUNET_TESTING_Peer *peer)
284 {
285   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
286
287   /* Connect to ATS scheduling */
288   sched_ats = GNUNET_ATS_scheduling_init (cfg, &address_suggest_cb, NULL);
289   if (sched_ats == NULL)
290   {
291     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS scheduling!\n");
292     ret = 1;
293     end ();
294     return;
295   }
296
297   /* Set up peer */
298   if (GNUNET_SYSERR == GNUNET_CRYPTO_hash_from_string(PEERID0, &p.id.hashPubKey))
299   {
300       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not setup peer!\n");
301       ret = GNUNET_SYSERR;
302       end ();
303       return;
304   }
305
306   GNUNET_assert (0 == strcmp (PEERID0, GNUNET_i2s_full (&p.id)));
307
308   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
309               GNUNET_i2s_full(&p.id));
310
311   /* Prepare ATS Information */
312   test_ats_info[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
313   test_ats_info[0].value = htonl(GNUNET_ATS_NET_WAN);
314   test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
315   test_ats_info[1].value = htonl(1);
316   test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DELAY);
317   test_ats_info[1].value = htonl(10);
318   test_ats_count = 2;
319
320   /* Adding address without session */
321   test_session = &test_addr;
322   create_test_address (&test_addr, "test", &test_addr, "test", strlen ("test") + 1);
323   test_hello_address.peer = p.id;
324   test_hello_address.transport_name = test_addr.plugin;
325   test_hello_address.address = test_addr.addr;
326   test_hello_address.address_length = test_addr.addr_len;
327   GNUNET_ATS_address_add (sched_ats, &test_hello_address, test_session, test_ats_info, test_ats_count);
328
329   /* Request address */
330   GNUNET_ATS_suggest_address (sched_ats, &p.id);
331 }
332
333
334 int
335 main (int argc, char *argv[])
336 {
337   if (0 != GNUNET_TESTING_peer_run ("test_ats_api_scheduling_update_address",
338                                     "test_ats_api.conf",
339                                     &run, NULL))
340     return 1;
341   return ret;
342 }
343
344 /* end of file test_ats_api_scheduling_update_address.c */