remove ATS information from callback from ATS address selection, as the argument...
[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.h"
30 #include "ats.h"
31 #include "test_ats_api_common.h"
32
33 /**
34  * Timeout task
35  */
36 static struct GNUNET_SCHEDULER_Task *die_task;
37
38 /**
39  * Statistics handle
40  */
41 static struct GNUNET_STATISTICS_Handle *stats;
42
43 /**
44  * Scheduling handle
45  */
46 static struct GNUNET_ATS_SchedulingHandle *sched_ats;
47
48 /**
49  * Return value
50  */
51 static int ret;
52
53 /**
54  * Test address
55  */
56 static struct Test_Address test_addr;
57
58 /**
59  * Test peer
60  */
61 static struct PeerContext p;
62
63 /**
64  * HELLO address
65  */
66 static struct GNUNET_HELLO_Address test_hello_address;
67
68 /**
69  * Session
70  */
71 static void *test_session;
72
73 /**
74  * Test ats info
75  */
76 static struct GNUNET_ATS_Information test_ats_info[2];
77
78 /**
79  * Test ats count
80  */
81 static uint32_t test_ats_count;
82
83
84 static int
85 stat_cb (void *cls, const char *subsystem,
86          const char *name, uint64_t value,
87          int is_persistent);
88
89
90 static void
91 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
92 {
93   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Shutting down\n");
94
95   if (NULL != die_task)
96   {
97     GNUNET_SCHEDULER_cancel (die_task);
98     die_task = NULL;
99   }
100   if (NULL != sched_ats)
101   {
102     GNUNET_ATS_scheduling_done (sched_ats);
103     sched_ats = NULL;
104   }
105   GNUNET_STATISTICS_watch_cancel (stats, "ats", "# addresses",
106                                   &stat_cb, NULL);
107   if (NULL != stats)
108   {
109     GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
110     stats = NULL;
111   }
112   free_test_address (&test_addr);
113   ret = 0;
114 }
115
116
117 static int
118 stat_cb (void *cls, const char *subsystem,
119          const char *name, uint64_t value,
120          int is_persistent)
121 {
122   static int initial_ats_stat_cb = GNUNET_YES;
123
124   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
125               "ATS statistics: `%s' `%s' %llu\n",
126               subsystem,
127               name,
128               value);
129
130   if ((0 == value) && (initial_ats_stat_cb == GNUNET_NO))
131   {
132     GNUNET_SCHEDULER_add_now (&end, NULL);
133   }
134   if ((0 == value) && (initial_ats_stat_cb == GNUNET_YES))
135   {
136     initial_ats_stat_cb = GNUNET_NO;
137   }
138   if (1 == value)
139   {
140     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
141                 "Statistics observed address added, now destroying address\n");
142     GNUNET_ATS_address_destroyed (sched_ats,
143                                   &test_hello_address,
144                                   test_session);
145   }
146   return GNUNET_OK;
147 }
148
149
150 static void
151 end_badly (void *cls,
152            const struct GNUNET_SCHEDULER_TaskContext *tc)
153 {
154   die_task = NULL;
155   end ( NULL, NULL);
156   ret = GNUNET_SYSERR;
157 }
158
159
160 static void
161 address_suggest_cb (void *cls,
162                     const struct GNUNET_PeerIdentity *peer,
163                     const struct GNUNET_HELLO_Address *address,
164                     struct Session *session,
165                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
166                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in)
167 {
168   GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
169               "Did not expect suggestion callback!\n");
170   GNUNET_SCHEDULER_shutdown ();
171 }
172
173
174 static void
175 got_initial_value (void *cls,
176                    int success)
177 {
178   struct GNUNET_CONFIGURATION_Handle *cfg = cls;
179
180   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
181               "Statistics running, now adding address\n");
182
183   /* Connect to ATS scheduling */
184   sched_ats = GNUNET_ATS_scheduling_init (cfg,
185                                           &address_suggest_cb, NULL);
186   if (NULL == sched_ats)
187   {
188     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
189                 "Could not connect to ATS scheduling!\n");
190     GNUNET_SCHEDULER_shutdown ();
191     return;
192   }
193
194   /* Set up peer */
195   memset (&p.id, '1', sizeof (p.id));
196   /* Prepare ATS Information */
197   test_ats_info[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
198   test_ats_info[0].value = htonl(GNUNET_ATS_NET_WAN);
199   test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
200   test_ats_info[1].value = htonl(1);
201   test_ats_count = 2;
202
203   /* Adding address without session */
204   test_session = NULL;
205   create_test_address (&test_addr,
206                        "test", test_session,
207                        "test", strlen ("test") + 1);
208   test_hello_address.peer = p.id;
209   test_hello_address.transport_name = test_addr.plugin;
210   test_hello_address.address = test_addr.addr;
211   test_hello_address.address_length = test_addr.addr_len;
212
213   /* Adding address */
214   GNUNET_ATS_address_add (sched_ats,
215                           &test_hello_address,
216                           test_session,
217                           test_ats_info,
218                           test_ats_count);
219 }
220
221
222 static int
223 dummy_stat (void *cls,
224             const char *subsystem,
225             const char *name,
226             uint64_t value,
227             int is_persistent)
228 {
229   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Got dummy stat %s%s:%s = %llu\n",
230               is_persistent ? "!" : " ", subsystem, name, value);
231   return GNUNET_OK;
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   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
241   stats = GNUNET_STATISTICS_create ("ats", cfg);
242   GNUNET_STATISTICS_watch (stats, "ats", "# addresses", &stat_cb, NULL);
243   GNUNET_STATISTICS_get (stats,
244                          "ats",
245                          "# addresses",
246                          TIMEOUT,
247                          &got_initial_value,
248                          &dummy_stat,
249                          GNUNET_CONFIGURATION_dup (cfg));
250 }
251
252
253 int
254 main (int argc, char *argv[])
255 {
256   ret = 0;
257   if (0 != GNUNET_TESTING_peer_run ("test-ats-api",
258                                     "test_ats_api.conf",
259                                     &run, NULL))
260     return 1;
261   return ret;
262 }
263
264 /* end of file test_ats_api_scheduling_destroy_address.c */