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 static void
67 create_test_address (struct Test_Address *dest, char * plugin, void *session, void *addr, size_t addrlen)
68 {
69
70   dest->plugin = GNUNET_strdup (plugin);
71   dest->session = session;
72   dest->addr = GNUNET_malloc (addrlen);
73   memcpy (dest->addr, addr, addrlen);
74   dest->addr_len = addrlen;
75 }
76
77 static void
78 free_test_address (struct Test_Address *dest)
79 {
80   GNUNET_free (dest->plugin);
81   GNUNET_free (dest->addr);
82 }
83
84
85 static void
86 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
87 {
88   die_task = GNUNET_SCHEDULER_NO_TASK;
89
90   if (sched_ats != NULL)
91     GNUNET_ATS_scheduling_done (sched_ats);
92   free_test_address (&test_addr);
93   ret = GNUNET_SYSERR;
94 }
95
96
97 static void
98 end ()
99 {
100   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Shutting down\n");
101   wait_task = GNUNET_SCHEDULER_NO_TASK;
102   if (die_task != GNUNET_SCHEDULER_NO_TASK)
103   {
104     GNUNET_SCHEDULER_cancel (die_task);
105     die_task = GNUNET_SCHEDULER_NO_TASK;
106   }
107   free_test_address (&test_addr);
108   GNUNET_ATS_scheduling_done (sched_ats);
109   sched_ats = NULL;
110 }
111
112 static void
113 address_suggest_cb (void *cls, const struct GNUNET_HELLO_Address *address,
114                     struct Session *session,
115                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
116                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
117                     const struct GNUNET_ATS_Information *atsi,
118                     uint32_t ats_count)
119 {
120   static int stage = 0;
121   int res = 0;
122
123   if (0 ==stage)
124   {
125     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stage 0: Received suggestion for peer `%s'\n",
126                 GNUNET_i2s(&address->peer));
127
128     if (0 != memcmp (&address->peer, &p.id, sizeof (struct GNUNET_PeerIdentity)))
129     {
130         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggestion with invalid peer id'\n");
131         res = 1;
132     }
133     else if (0 != strcmp (address->transport_name, test_addr.plugin))
134     {
135         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggestion with invalid plugin'\n");
136         res = 1;
137     }
138     else if (address->address_length != test_addr.addr_len)
139     {
140         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggestion with invalid address length'\n");
141         res = 1;
142     }
143     else if (0 != memcmp (address->address, test_addr.plugin, address->address_length))
144     {
145         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggestion with invalid address'\n");
146         res = 1;
147     }
148     else
149     {
150       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Callback for correct address `%s'\n",
151                   GNUNET_i2s (&address->peer));
152       res = 0;
153     }
154     GNUNET_ATS_suggest_address_cancel (sched_ats, &p.id);
155     if (1 == res)
156     {
157       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Callback for invalid address `%s'\n",
158                   GNUNET_i2s (&address->peer));
159       GNUNET_SCHEDULER_add_now (&end, NULL);
160       ret = 1;
161     }
162     stage ++;
163     ret = 0;
164     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Destroying address for `%s'\n",
165                 GNUNET_i2s (&address->peer));
166     /* Destroying address */
167     GNUNET_ATS_address_destroyed (sched_ats, &test_hello_address, test_addr.session);
168     /* Request address */
169     GNUNET_ATS_suggest_address (sched_ats, &p.id);
170     wait_task = GNUNET_SCHEDULER_add_delayed (WAIT_TIMEOUT, &end, NULL);
171     return;
172   }
173   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Stage 1: Unexpected address suggestion\n");
174   ret = 1;
175
176 }
177
178
179 static void
180 run (void *cls, 
181      const struct GNUNET_CONFIGURATION_Handle *cfg,
182      struct GNUNET_TESTING_Peer *peer)
183 {
184   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
185
186   /* Connect to ATS scheduling */
187   sched_ats = GNUNET_ATS_scheduling_init (cfg, &address_suggest_cb, NULL);
188   if (sched_ats == NULL)
189   {
190     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS scheduling!\n");
191     ret = 1;
192     end ();
193     return;
194   }
195
196   /* Set up peer */
197   if (GNUNET_SYSERR == GNUNET_CRYPTO_hash_from_string(PEERID, &p.id.hashPubKey))
198   {
199       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not setup peer!\n");
200       ret = GNUNET_SYSERR;
201       end ();
202       return;
203   }
204   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
205               GNUNET_i2s_full(&p.id));
206
207   create_test_address (&test_addr, "test", NULL, "test", strlen ("test") + 1);
208
209   /* Adding address without session */
210   test_hello_address.peer = p.id;
211   test_hello_address.transport_name = test_addr.plugin;
212   test_hello_address.address = test_addr.addr;
213   test_hello_address.address_length = test_addr.addr_len;
214   GNUNET_ATS_address_add (sched_ats, &test_hello_address, test_addr.session, NULL, 0);
215
216   /* Request address */
217   GNUNET_ATS_suggest_address (sched_ats, &p.id);
218 }
219
220
221 int
222 main (int argc, char *argv[])
223 {
224   if (0 != GNUNET_TESTING_peer_run ("test_ats_api_scheduling_add_address",
225                                     "test_ats_api.conf",
226                                     &run, NULL))
227     return 1;
228   return ret;
229 }
230
231 /* end of file test_ats_api_scheduling_destroy_address.c */