-improve UDP logging
[oweals/gnunet.git] / src / ats / test_ats_solver_request_and_delete_address.c
1 /*
2  This file is part of GNUnet.
3  Copyright (C) 2010-2013 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_solver_request_and_delete_address.c
22  * @brief solver test:  add address, request address, delete address and wait for disconnect
23  * @author Christian Grothoff
24  * @author Matthias Wachs
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28 #include "gnunet_testbed_service.h"
29 #include "gnunet_ats_service.h"
30 #include "test_ats_api_common.h"
31
32 /**
33  * Timeout task
34  */
35 static struct GNUNET_SCHEDULER_Task * die_task;
36
37 /**
38  * Statistics handle
39  */
40 static struct GNUNET_STATISTICS_Handle *stats;
41
42 /**
43  * Scheduling handle
44  */
45 static struct GNUNET_ATS_SchedulingHandle *sched_ats;
46
47 /**
48  * Connectivity handle
49  */
50 static struct GNUNET_ATS_ConnectivityHandle *connect_ats;
51
52 /**
53  * Return value
54  */
55 static int ret;
56
57 /**
58  * Test address
59  */
60 static struct Test_Address test_addr;
61
62 /**
63  * Test peer
64  */
65 static struct PeerContext p;
66
67 /**
68  * HELLO address
69  */
70 static struct GNUNET_HELLO_Address test_hello_address;
71
72 /**
73  * Session
74  */
75 static void *test_session;
76
77 /**
78  * Test ats info
79  */
80 struct GNUNET_ATS_Information test_ats_info[2];
81
82 /**
83  * Test ats count
84  */
85 static uint32_t test_ats_count;
86
87 /**
88  * The address we will delete.
89  */
90 static struct GNUNET_ATS_AddressRecord *ar;
91
92 static int address_deleted = GNUNET_NO;
93
94
95 static int
96 stat_cb(void *cls, const char *subsystem, const char *name, uint64_t value,
97         int is_persistent);
98
99
100 static void
101 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
102 {
103   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Done!\n");
104   if (die_task != NULL)
105   {
106     GNUNET_SCHEDULER_cancel (die_task);
107     die_task = NULL;
108   }
109
110   if (NULL != sched_ats)
111   {
112     GNUNET_ATS_scheduling_done (sched_ats);
113     sched_ats = NULL;
114   }
115
116   if (NULL != connect_ats)
117   {
118     GNUNET_ATS_connectivity_done (connect_ats);
119     connect_ats = NULL;
120   }
121   GNUNET_STATISTICS_watch_cancel (stats, "ats", "# addresses", &stat_cb, NULL);
122   if (NULL != stats)
123   {
124     GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
125     stats = NULL;
126   }
127   free_test_address (&test_addr);
128   ret = 0;
129 }
130
131
132 static void
133 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
134 {
135   die_task = NULL;
136   end (NULL, NULL);
137   ret = GNUNET_SYSERR;
138 }
139
140
141 static void
142 address_suggest_cb (void *cls,
143                     const struct GNUNET_PeerIdentity *peer,
144                     const struct GNUNET_HELLO_Address *address,
145                     struct Session *session,
146                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
147                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in)
148 {
149   if (GNUNET_NO == address_deleted)
150   {
151     /* Expected address suggestion */
152     GNUNET_assert (NULL != address);
153     GNUNET_assert (NULL == session);
154     GNUNET_assert (ntohl(bandwidth_in.value__) > 0);
155     GNUNET_assert (ntohl(bandwidth_out.value__) > 0);
156
157     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
158                 "Received sugggestion for peer `%s', deleting address\n",
159                 GNUNET_i2s (&address->peer));
160     address_deleted = GNUNET_YES;
161     /* Destroying address and wait for disconnect suggestion */
162     GNUNET_ATS_address_destroy (ar);
163     ar = NULL;
164   }
165   else
166   {
167     /* Expecting disconnect */
168     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
169                 "Received sugggestion for peer `%s': %u %u\n",
170                 GNUNET_i2s (peer),
171                 (unsigned int) ntohl (bandwidth_in.value__),
172                 (unsigned int) ntohl (bandwidth_out.value__));
173
174     if ((ntohl(bandwidth_in.value__) == 0) &&
175         (ntohl(bandwidth_out.value__) == 0))
176     {
177       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Done!\n");
178       GNUNET_SCHEDULER_add_now (&end, NULL);
179     }
180   }
181 }
182
183
184 static int
185 stat_cb (void *cls, const char *subsystem,
186          const char *name, uint64_t value,
187          int is_persistent)
188 {
189   static struct GNUNET_ATS_ConnectivitySuggestHandle *sh;
190
191   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
192               "ATS statistics: `%s' `%s' %llu\n",
193               subsystem,
194               name,
195               value);
196   if (NULL == sh)
197     sh = GNUNET_ATS_connectivity_suggest (connect_ats, &p.id);
198   return GNUNET_OK;
199 }
200
201
202 static void
203 run (void *cls,
204      const struct GNUNET_CONFIGURATION_Handle *mycfg,
205      struct GNUNET_TESTING_Peer *peer)
206 {
207   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
208   stats = GNUNET_STATISTICS_create ("ats", mycfg);
209   GNUNET_STATISTICS_watch (stats, "ats", "# addresses", &stat_cb, NULL);
210
211   connect_ats = GNUNET_ATS_connectivity_init (mycfg);
212
213   /* Connect to ATS scheduling */
214   sched_ats = GNUNET_ATS_scheduling_init (mycfg, &address_suggest_cb, NULL);
215   if (sched_ats == NULL)
216   {
217     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS scheduling!\n");
218     GNUNET_SCHEDULER_add_now (&end_badly, NULL);
219     return;
220   }
221
222   /* Set up peer */
223   memset (&p.id, '1', sizeof (p.id));
224   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
225               GNUNET_i2s_full(&p.id));
226
227   /* Prepare ATS Information */
228   test_ats_info[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
229   test_ats_info[0].value = htonl(GNUNET_ATS_NET_WAN);
230   test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
231   test_ats_info[1].value = htonl(1);
232   test_ats_count = 2;
233
234   /* Adding address without session */
235   test_session = NULL;
236   create_test_address (&test_addr, "test", test_session, "test", strlen ("test") + 1);
237   test_hello_address.peer = p.id;
238   test_hello_address.transport_name = test_addr.plugin;
239   test_hello_address.address = test_addr.addr;
240   test_hello_address.address_length = test_addr.addr_len;
241
242   /* Adding address */
243   ar = GNUNET_ATS_address_add (sched_ats, &test_hello_address,
244                                NULL,
245                                test_ats_info, test_ats_count);
246 }
247
248
249 int
250 main (int argc, char *argv[])
251 {
252   char *sep;
253   char *src_filename = GNUNET_strdup (__FILE__);
254   char *test_filename = GNUNET_strdup (argv[0]);
255   char *config_file;
256   char *solver;
257
258   ret = 0;
259
260   if (NULL == (sep  = (strstr (src_filename,".c"))))
261   {
262     GNUNET_break (0);
263     return -1;
264   }
265   sep[0] = '\0';
266
267   if (NULL != (sep = strstr (test_filename, ".exe")))
268     sep[0] = '\0';
269
270   if (NULL == (solver = strstr (test_filename, src_filename)))
271   {
272     GNUNET_break (0);
273     return -1;
274   }
275   solver += strlen (src_filename) +1;
276
277   if (0 == strcmp(solver, "proportional"))
278   {
279     config_file = "test_ats_solver_proportional.conf";
280   }
281   else if (0 == strcmp(solver, "mlp"))
282   {
283     config_file = "test_ats_solver_mlp.conf";
284   }
285   else if ((0 == strcmp(solver, "ril")))
286   {
287     config_file = "test_ats_solver_ril.conf";
288   }
289   else
290   {
291     GNUNET_break (0);
292     GNUNET_free (src_filename);
293     GNUNET_free (test_filename);
294     return 1;
295   }
296
297   GNUNET_free (src_filename);
298   GNUNET_free (test_filename);
299
300   if (0 != GNUNET_TESTING_peer_run ("test-ats-solver",
301       config_file, &run, NULL ))
302     return GNUNET_SYSERR;
303
304   return ret;
305 }
306
307 /* end of file test_ats_solver_request_and_delete_address_proportional.c */