-test cleanup
[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                     const struct GNUNET_ATS_Information *atsi,
168                     uint32_t ats_count)
169 {
170   GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
171               "Did not expect suggestion callback!\n");
172   GNUNET_SCHEDULER_shutdown ();
173 }
174
175
176 static void
177 got_initial_value (void *cls,
178                    int success)
179 {
180   struct GNUNET_CONFIGURATION_Handle *cfg = cls;
181
182   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
183               "Statistics running, now adding address\n");
184
185   /* Connect to ATS scheduling */
186   sched_ats = GNUNET_ATS_scheduling_init (cfg,
187                                           &address_suggest_cb, NULL);
188   if (NULL == sched_ats)
189   {
190     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
191                 "Could not connect to ATS scheduling!\n");
192     GNUNET_SCHEDULER_shutdown ();
193     return;
194   }
195
196   /* Set up peer */
197   memset (&p.id, '1', sizeof (p.id));
198   /* Prepare ATS Information */
199   test_ats_info[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
200   test_ats_info[0].value = htonl(GNUNET_ATS_NET_WAN);
201   test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
202   test_ats_info[1].value = htonl(1);
203   test_ats_count = 2;
204
205   /* Adding address without session */
206   test_session = NULL;
207   create_test_address (&test_addr,
208                        "test", test_session,
209                        "test", strlen ("test") + 1);
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
215   /* Adding address */
216   GNUNET_ATS_address_add (sched_ats,
217                           &test_hello_address,
218                           test_session,
219                           test_ats_info,
220                           test_ats_count);
221 }
222
223
224 static int
225 dummy_stat (void *cls,
226             const char *subsystem,
227             const char *name,
228             uint64_t value,
229             int is_persistent)
230 {
231   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Got dummy stat %s%s:%s = %llu\n",
232               is_persistent ? "!" : " ", subsystem, name, value);
233   return GNUNET_OK;
234 }
235
236
237 static void
238 run (void *cls,
239      const struct GNUNET_CONFIGURATION_Handle *cfg,
240      struct GNUNET_TESTING_Peer *peer)
241 {
242   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
243   stats = GNUNET_STATISTICS_create ("ats", cfg);
244   GNUNET_STATISTICS_watch (stats, "ats", "# addresses", &stat_cb, NULL);
245   GNUNET_STATISTICS_get (stats,
246                          "ats",
247                          "# addresses",
248                          TIMEOUT,
249                          &got_initial_value,
250                          &dummy_stat,
251                          GNUNET_CONFIGURATION_dup (cfg));
252 }
253
254
255 int
256 main (int argc, char *argv[])
257 {
258   ret = 0;
259   if (0 != GNUNET_TESTING_peer_run ("test-ats-api",
260                                     "test_ats_api.conf",
261                                     &run, NULL))
262     return 1;
263   return ret;
264 }
265
266 /* end of file test_ats_api_scheduling_destroy_address.c */