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