changes
[oweals/gnunet.git] / src / ats / test_ats_api_scheduling_destroy_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_destroy_address.c
22  * @brief test destroying addresses in automatic transport selection scheduling API
23  * @author Christian Grothoff
24  * @author Matthias Wachs
25  *
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 static GNUNET_SCHEDULER_TaskIdentifier wait_task;
36
37 #define WAIT_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
38
39
40 /**
41  * Scheduling handle
42  */
43 static struct GNUNET_ATS_SchedulingHandle *sched_ats;
44
45 /**
46  * Return value
47  */
48 static int ret;
49
50 /**
51  * Test address
52  */
53 static struct Test_Address test_addr;
54
55 /**
56  * Test peer
57  */
58 static struct PeerContext p;
59
60 /**
61  * HELLO address
62  */
63 struct GNUNET_HELLO_Address test_hello_address;
64
65 /**
66  * Session
67  */
68 static void *test_session;
69
70 static void
71 create_test_address (struct Test_Address *dest, char * plugin, void *session, void *addr, size_t addrlen)
72 {
73
74   dest->plugin = GNUNET_strdup (plugin);
75   dest->session = session;
76   dest->addr = GNUNET_malloc (addrlen);
77   memcpy (dest->addr, addr, addrlen);
78   dest->addr_len = addrlen;
79 }
80
81 static void
82 free_test_address (struct Test_Address *dest)
83 {
84   GNUNET_free (dest->plugin);
85   GNUNET_free (dest->addr);
86 }
87
88
89 static void
90 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
91 {
92   die_task = GNUNET_SCHEDULER_NO_TASK;
93   if (GNUNET_SCHEDULER_NO_TASK != wait_task)
94   {
95     GNUNET_SCHEDULER_cancel (wait_task);
96     wait_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   wait_task = GNUNET_SCHEDULER_NO_TASK;
110   if (die_task != GNUNET_SCHEDULER_NO_TASK)
111   {
112     GNUNET_SCHEDULER_cancel (die_task);
113     die_task = GNUNET_SCHEDULER_NO_TASK;
114   }
115   free_test_address (&test_addr);
116   GNUNET_ATS_scheduling_done (sched_ats);
117   sched_ats = NULL;
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 static void
156 address_suggest_cb (void *cls, const struct GNUNET_HELLO_Address *address,
157                     struct Session *session,
158                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
159                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
160                     const struct GNUNET_ATS_Information *atsi,
161                     uint32_t ats_count)
162 {
163   static int stage = 0;
164
165   if (0 ==stage)
166   {
167     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stage 0: Received suggestion for peer `%s'\n",
168                 GNUNET_i2s(&address->peer));
169
170     GNUNET_ATS_suggest_address_cancel (sched_ats, &p.id);
171     if (GNUNET_OK == compare_addresses (address, session, &test_hello_address, test_session))
172     {
173         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Callback with correct address `%s'\n",
174                     GNUNET_i2s (&address->peer));
175     }
176     else
177     {
178         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Callback with invalid address `%s'\n",
179                     GNUNET_i2s (&address->peer));
180         GNUNET_SCHEDULER_add_now (&end, NULL);
181         ret = 1;
182         return;
183     }
184     stage ++;
185     ret = 0;
186     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Destroying address for `%s'\n",
187                 GNUNET_i2s (&address->peer));
188     /* Destroying address */
189     GNUNET_ATS_address_destroyed (sched_ats, &test_hello_address, test_addr.session);
190     /* Request address */
191     GNUNET_ATS_suggest_address (sched_ats, &p.id);
192     /* Wait for timeout */
193     wait_task = GNUNET_SCHEDULER_add_delayed (WAIT_TIMEOUT, &end, NULL);
194     return;
195   }
196   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Stage 1: Unexpected address suggestion\n");
197   ret = 1;
198
199 }
200
201
202 static void
203 run (void *cls, 
204      const struct GNUNET_CONFIGURATION_Handle *cfg,
205      struct GNUNET_TESTING_Peer *peer)
206 {
207   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
208
209   /* Connect to ATS scheduling */
210   sched_ats = GNUNET_ATS_scheduling_init (cfg, &address_suggest_cb, NULL);
211   if (sched_ats == NULL)
212   {
213     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS scheduling!\n");
214     ret = 1;
215     end ();
216     return;
217   }
218
219   /* Set up peer */
220   if (GNUNET_SYSERR == GNUNET_CRYPTO_hash_from_string(PEERID0, &p.id.hashPubKey))
221   {
222       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not setup peer!\n");
223       ret = GNUNET_SYSERR;
224       end ();
225       return;
226   }
227   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
228               GNUNET_i2s_full(&p.id));
229
230   /* Adding address without session */
231   test_session  = NULL;
232   create_test_address (&test_addr, "test", test_session, "test", strlen ("test") + 1);
233   test_hello_address.peer = p.id;
234   test_hello_address.transport_name = test_addr.plugin;
235   test_hello_address.address = test_addr.addr;
236   test_hello_address.address_length = test_addr.addr_len;
237   GNUNET_ATS_address_add (sched_ats, &test_hello_address, test_session, NULL, 0);
238
239   /* Request address */
240   GNUNET_ATS_suggest_address (sched_ats, &p.id);
241 }
242
243
244 int
245 main (int argc, char *argv[])
246 {
247   if (0 != GNUNET_TESTING_peer_run ("test_ats_api_scheduling_add_address",
248                                     "test_ats_api.conf",
249                                     &run, NULL))
250     return 1;
251   return ret;
252 }
253
254 /* end of file test_ats_api_scheduling_destroy_address.c */