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   if (NULL != sched_ats)
115     GNUNET_ATS_scheduling_done (sched_ats);
116   sched_ats = NULL;
117   free_test_address (&test_addr);
118 }
119
120 static int
121 compare_addresses (const struct GNUNET_HELLO_Address *address1, void *session1,
122                    const struct GNUNET_HELLO_Address *address2, void *session2)
123 {
124   if (0 != memcmp (&address1->peer, &address2->peer, sizeof (struct GNUNET_PeerIdentity)))
125   {
126       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggestion with invalid peer id'\n");
127       return GNUNET_SYSERR;
128   }
129   if (0 != strcmp (address1->transport_name, address2->transport_name))
130   {
131       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggestion with invalid plugin'\n");
132       return GNUNET_SYSERR;
133   }
134   if (address1->address_length != address2->address_length)
135   {
136       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggestion with invalid address length'\n");
137       return GNUNET_SYSERR;
138
139   }
140   else if (0 != memcmp (address1->address, address2->address, address2->address_length))
141   {
142       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggestion with invalid address'\n");
143       return GNUNET_SYSERR;
144   }
145   if (session1 != session2)
146   {
147       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggestion with invalid session1 %p vs session2 %p'\n",
148                   session1, session2);
149       return GNUNET_SYSERR;
150
151   }
152   return GNUNET_OK;
153 }
154
155
156 static int
157 compare_ats (const struct GNUNET_ATS_Information *ats_is, uint32_t ats_count_is,
158              const struct GNUNET_ATS_Information *ats_should, uint32_t ats_count_should)
159 {
160   unsigned int c_o;
161   unsigned int c_i;
162   char *prop[] = GNUNET_ATS_PropertyStrings;
163   uint32_t type1;
164   uint32_t type2;
165   uint32_t val1;
166   uint32_t val2;
167   int res = GNUNET_OK;
168
169   for (c_o = 0; c_o < ats_count_is; c_o++)
170   {
171     for (c_i = 0; c_i < ats_count_should; c_i++)
172     {
173         type1 = ntohl(ats_is[c_o].type);
174         type2 = ntohl(ats_should[c_i].type);
175         if (type1 == type2)
176         {
177             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ATS type `%s'\n",
178                         prop[type1]);
179             val1 = ntohl(ats_is[c_o].value);
180             val2 = ntohl(ats_should[c_i].value);
181             if (val1 != val2)
182             {
183                 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "ATS value `%s' not equal: %u != %u\n",
184                             prop[type1],
185                             val1, val2);
186                 res = GNUNET_SYSERR;
187             }
188             else
189             {
190               GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ATS value `%s' equal: %u == %u\n",
191                           prop[type1],
192                           val1, val2);
193             }
194         }
195     }
196   }
197   return res;
198 }
199
200 static void
201 address_suggest_cb (void *cls, const struct GNUNET_HELLO_Address *address,
202                     struct Session *session,
203                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
204                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
205                     const struct GNUNET_ATS_Information *atsi,
206                     uint32_t ats_count)
207 {
208   static int stage = 0;
209   if (0 == stage)
210   {
211     if (GNUNET_OK == compare_addresses (address, session, &test_hello_address, test_session))
212     {
213         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stage 0: Callback with correct address `%s'\n",
214                     GNUNET_i2s (&address->peer));
215         ret = 0;
216     }
217     else
218     {
219         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stage 0: Callback with invalid address `%s'\n",
220                     GNUNET_i2s (&address->peer));
221         ret = 1;
222     }
223
224     if (GNUNET_OK != compare_ats(atsi, ats_count, test_ats_info, test_ats_count))
225     {
226       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Stage 0: Callback with incorrect ats info \n");
227       ret = 1;
228     }
229     stage ++;
230     GNUNET_ATS_suggest_address_cancel (sched_ats, &p.id);
231     GNUNET_SCHEDULER_add_now (&end, NULL);
232   }
233 }
234
235 static void
236 run (void *cls, 
237      const struct GNUNET_CONFIGURATION_Handle *cfg,
238      struct GNUNET_TESTING_Peer *peer)
239 {
240
241   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
242
243   /* Connect to ATS scheduling */
244   sched_ats = GNUNET_ATS_scheduling_init (cfg, &address_suggest_cb, NULL);
245   if (sched_ats == NULL)
246   {
247     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS scheduling!\n");
248     ret = 1;
249     end ();
250     return;
251   }
252
253   /* Set up peer */
254   if (GNUNET_SYSERR == GNUNET_CRYPTO_hash_from_string(PEERID0, &p.id.hashPubKey))
255   {
256       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not setup peer!\n");
257       ret = GNUNET_SYSERR;
258       end ();
259       return;
260   }
261
262   GNUNET_assert (0 == strcmp (PEERID0, GNUNET_i2s_full (&p.id)));
263
264   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
265               GNUNET_i2s_full(&p.id));
266
267   /* Prepare ATS Information */
268   test_ats_info[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
269   test_ats_info[0].value = htonl(GNUNET_ATS_NET_WAN);
270   test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
271   test_ats_info[1].value = htonl(1);
272   test_ats_count = 2;
273
274   /* Adding address without session */
275   test_session = NULL;
276   create_test_address (&test_addr, "test", test_session, "test", strlen ("test") + 1);
277   test_hello_address.peer = p.id;
278   test_hello_address.transport_name = test_addr.plugin;
279   test_hello_address.address = test_addr.addr;
280   test_hello_address.address_length = test_addr.addr_len;
281   GNUNET_ATS_address_add (sched_ats, &test_hello_address, test_session, test_ats_info, test_ats_count);
282
283   GNUNET_ATS_suggest_address (sched_ats, &p.id);
284 }
285
286
287 int
288 main (int argc, char *argv[])
289 {
290   if (0 != GNUNET_TESTING_peer_run ("test_ats_api_scheduling_add_address",
291                                     "test_ats_api.conf",
292                                     &run, NULL))
293     return 1;
294   return ret;
295 }
296
297 /* end of file test_ats_api_scheduling_add_address.c */