- doxygen
[oweals/gnunet.git] / src / ats / test_ats_solver_alternative_after_delete_address.c
1 /*
2   if (NULL == (perf_ats = GNUNET_ATS_performance_init (cfg, &ats_perf_cb, NULL)))
3   {
4     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5         "Failed to connect to performance API\n");
6     GNUNET_SCHEDULER_add_now (end_badly, NULL);
7   }
8  This file is part of GNUnet.
9  (C) 2010-2013 Christian Grothoff (and other contributing authors)
10
11  GNUnet is free software; you can redistribute it and/or modify
12  it under the terms of the GNU General Public License as published
13  by the Free Software Foundation; either version 3, or (at your
14  option) any later version.
15
16  GNUnet is distributed in the hope that it will be useful, but
17  WITHOUT ANY WARRANTY; without even the implied warranty of
18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  General Public License for more details.
20
21  You should have received a copy of the GNU General Public License
22  along with GNUnet; see the file COPYING.  If not, write to the
23  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24  Boston, MA 02111-1307, USA.
25  */
26 /**
27  * @file ats/test_ats_solver_add_address.c
28  * @brief solver test:  add 2 addresses, request address, delete, expect alternative
29  * @author Christian Grothoff
30  * @author Matthias Wachs
31  */
32 #include "platform.h"
33 #include "gnunet_util_lib.h"
34 #include "gnunet_testbed_service.h"
35 #include "gnunet_ats_service.h"
36 #include "test_ats_api_common.h"
37
38 /**
39  * Timeout task
40  */
41 static GNUNET_SCHEDULER_TaskIdentifier die_task;
42
43 /**
44  * Statistics handle
45  */
46 struct GNUNET_STATISTICS_Handle *stats;
47
48 /**
49  * Scheduling handle
50  */
51 static struct GNUNET_ATS_SchedulingHandle *sched_ats;
52
53 /**
54  * Return value
55  */
56 static int ret;
57
58 /**
59  * Test address
60  */
61 static struct Test_Address test_addr;
62
63 /**
64  * Alternative test address
65  */
66 static struct Test_Address alt_test_addr;
67
68 /**
69  * Test peer
70  */
71 static struct PeerContext p;
72
73 /**
74  * HELLO address
75  */
76 static struct GNUNET_HELLO_Address test_hello_address;
77
78 /**
79  * HELLO address
80  */
81 static struct GNUNET_HELLO_Address alt_test_hello_address;
82
83 /**
84  * Session
85  */
86 static void *test_session;
87
88 /**
89  * Test ats info
90  */
91 static struct GNUNET_ATS_Information test_ats_info[2];
92
93 /**
94  * Test ats count
95  */
96 static uint32_t test_ats_count;
97
98 /**
99  * Test state
100  */
101 int addresses_added = GNUNET_NO;
102
103 int first_address_suggested = GNUNET_NO;
104
105 int first_address_deleted = GNUNET_NO;
106
107 int second_address_deleted = GNUNET_NO;
108
109 int second_address_suggested = GNUNET_YES;
110
111 static struct GNUNET_HELLO_Address *first_suggestion = NULL;
112
113 static struct GNUNET_HELLO_Address *second_suggestion = NULL;
114
115
116 static int
117 stat_cb(void *cls, const char *subsystem, const char *name, uint64_t value,
118         int is_persistent);
119
120 static void
121 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
122 {
123   if (die_task != GNUNET_SCHEDULER_NO_TASK)
124   {
125     GNUNET_SCHEDULER_cancel (die_task);
126     die_task = GNUNET_SCHEDULER_NO_TASK;
127   }
128
129   if (NULL != sched_ats)
130   {
131     GNUNET_ATS_scheduling_done (sched_ats);
132     sched_ats = NULL;
133   }
134
135   GNUNET_STATISTICS_watch_cancel (stats, "ats", "# addresses", &stat_cb, NULL);
136   if (NULL != stats)
137   {
138     GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
139     stats = NULL;
140   }
141
142   free_test_address (&test_addr);
143   GNUNET_free_non_null (first_suggestion);
144   GNUNET_free_non_null (second_suggestion);
145   ret = 0;
146 }
147
148
149 static void
150 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
151 {
152
153   die_task = GNUNET_SCHEDULER_NO_TASK;
154   end ( NULL, NULL);
155   ret = GNUNET_SYSERR;
156 }
157
158 static void
159 end_badly_now ()
160 {
161   if (GNUNET_SCHEDULER_NO_TASK != die_task)
162   {
163     GNUNET_SCHEDULER_cancel (die_task);
164     die_task = GNUNET_SCHEDULER_NO_TASK;
165   }
166   GNUNET_SCHEDULER_add_now (&end_badly, NULL);
167 }
168
169 static void
170 address_suggest_cb (void *cls, const struct GNUNET_HELLO_Address *address,
171                     struct Session *session,
172                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
173                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
174                     const struct GNUNET_ATS_Information *atsi,
175                     uint32_t ats_count)
176 {
177   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Received a sugggestion for peer `%s' : `%s'\n",
178     GNUNET_i2s (&address->peer), (char *) address->address);
179
180   if (GNUNET_NO == first_address_suggested)
181   {
182     if  (NULL == first_suggestion)
183     {
184       if ((NULL == address) || (NULL != session))
185       {
186         GNUNET_break (0);
187         end_badly_now ();
188         return;
189       }
190       if ((ntohl(bandwidth_in.value__) == 0) ||
191           (ntohl(bandwidth_out.value__) == 0))
192       {
193         GNUNET_break (0);
194         end_badly_now ();
195         return;
196       }
197
198       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Received 1st sugggestion for peer `%s' : `%s'\n",
199         GNUNET_i2s (&address->peer), (char *) address->address);
200
201       first_suggestion = GNUNET_HELLO_address_copy (address);
202       first_address_suggested = GNUNET_YES;
203
204
205       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Deleting 1st address for peer `%s' : `%s'\n",
206         GNUNET_i2s (&address->peer), (char *) address->address);
207       GNUNET_ATS_address_destroyed (sched_ats, address, session);
208       first_address_deleted = GNUNET_YES;
209
210       return;
211     }
212   }
213   if (GNUNET_YES == first_address_deleted)
214   {
215     if (NULL == second_suggestion)
216     {
217       GNUNET_assert (NULL != address);
218       GNUNET_assert (NULL == session);
219       GNUNET_assert (ntohl(bandwidth_in.value__) > 0);
220       GNUNET_assert (ntohl(bandwidth_out.value__) > 0);
221
222       if ((NULL == address) || (NULL != session))
223       {
224         GNUNET_break (0);
225         end_badly_now ();
226         return;
227       }
228       if ((ntohl(bandwidth_in.value__) == 0) ||
229           (ntohl(bandwidth_out.value__) == 0))
230       {
231         GNUNET_break (0);
232         end_badly_now ();
233         return;
234       }
235
236       if (0 == memcmp (address->address, first_suggestion->address,
237           (first_suggestion->address_length < address->address_length) ? first_suggestion->address_length : address->address_length))
238       {
239         GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Deleted 1st address for peer `%s' was suggested after deletion: `%s' `%s'\n",
240           GNUNET_i2s (&address->peer), (char *) address->address, first_suggestion->address);
241         GNUNET_break (0);
242         end_badly_now ();
243         return;
244       }
245
246       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Received 2nd sugggestion for peer `%s' : `%s'\n",
247         GNUNET_i2s (&address->peer), (char *) address->address);
248       second_suggestion = GNUNET_HELLO_address_copy (address);
249       second_address_suggested = GNUNET_YES;
250
251       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Deleting 2nd address for peer `%s' : `%s'\n",
252         GNUNET_i2s (&address->peer), (char *) address->address);
253       GNUNET_ATS_address_destroyed (sched_ats, address, session);
254       second_address_deleted = GNUNET_YES;
255       return;
256     }
257
258   }
259   if (GNUNET_YES == second_address_deleted)
260   {
261     /* Expecting disconnect */
262     if ((ntohl(bandwidth_in.value__) == 0) &&
263         (ntohl(bandwidth_out.value__) == 0))
264     {
265       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "ATS tells me to disconnect\n");
266       GNUNET_SCHEDULER_add_now (&end, NULL);
267       return;
268     }
269     else
270     {
271       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Expected disconnect but received address `%s' with bandwidth \n",
272           (char *) address->address);
273     }
274   }
275   return;
276 }
277
278
279 static int
280 stat_cb(void *cls, const char *subsystem,
281         const char *name, uint64_t value,
282         int is_persistent)
283 {
284   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "ATS statistics: `%s' `%s' %llu\n",
285       subsystem,name, value);
286   if ((GNUNET_NO == addresses_added) && (value == 2))
287   {
288     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "All addresses added, requesting....\n");
289     /* We have 2 addresses, so we can request */
290     addresses_added = GNUNET_YES;
291     GNUNET_ATS_suggest_address (sched_ats, &p.id);
292   }
293   return GNUNET_OK;
294 }
295
296 static void
297 run (void *cls, const struct GNUNET_CONFIGURATION_Handle *mycfg,
298     struct GNUNET_TESTING_Peer *peer)
299 {
300   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
301   stats = GNUNET_STATISTICS_create ("ats", mycfg);
302   GNUNET_STATISTICS_watch (stats, "ats", "# addresses", &stat_cb, NULL);
303
304
305   /* Connect to ATS scheduling */
306   sched_ats = GNUNET_ATS_scheduling_init (mycfg, &address_suggest_cb, NULL);
307   if (sched_ats == NULL)
308   {
309     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS scheduling!\n");
310     end_badly_now ();
311     return;
312   }
313
314   /* Set up peer */
315   memset (&p.id, '1', sizeof (p.id));
316   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
317               GNUNET_i2s_full(&p.id));
318
319   /* Prepare ATS Information */
320   test_ats_info[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
321   test_ats_info[0].value = htonl(GNUNET_ATS_NET_WAN);
322   test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
323   test_ats_info[1].value = htonl(1);
324   test_ats_count = 2;
325
326   /* Adding address without session */
327   test_session = NULL;
328   create_test_address (&test_addr, "test", test_session, "test", strlen ("test") + 1);
329   test_hello_address.peer = p.id;
330   test_hello_address.transport_name = test_addr.plugin;
331   test_hello_address.address = test_addr.addr;
332   test_hello_address.address_length = test_addr.addr_len;
333
334   /* Adding alternative address without session */
335   test_session = NULL;
336   create_test_address (&alt_test_addr, "test", test_session, "alt_test", strlen ("alt_test") + 1);
337   alt_test_hello_address.peer = p.id;
338   alt_test_hello_address.transport_name = alt_test_addr.plugin;
339   alt_test_hello_address.address = alt_test_addr.addr;
340   alt_test_hello_address.address_length = alt_test_addr.addr_len;
341
342
343   /* Adding address */
344   GNUNET_ATS_address_add (sched_ats, &test_hello_address, NULL, test_ats_info, test_ats_count);
345   /* Adding alternative address */
346   GNUNET_ATS_address_add (sched_ats, &alt_test_hello_address, NULL, test_ats_info, test_ats_count);
347 }
348
349
350 int
351 main (int argc, char *argv[])
352 {
353   char *sep;
354   char *src_filename = GNUNET_strdup (__FILE__);
355   char *test_filename = GNUNET_strdup (argv[0]);
356   char *config_file;
357   char *solver;
358
359   ret = 0;
360
361   if (NULL == (sep  = (strstr (src_filename,".c"))))
362   {
363     GNUNET_break (0);
364     return -1;
365   }
366   sep[0] = '\0';
367
368   if (NULL != (sep = strstr (test_filename, ".exe")))
369     sep[0] = '\0';
370
371   if (NULL == (solver = strstr (test_filename, src_filename)))
372   {
373     GNUNET_break (0);
374     return -1;
375   }
376   solver += strlen (src_filename) +1;
377
378   if (0 == strcmp(solver, "proportional"))
379   {
380     config_file = "test_ats_solver_proportional.conf";
381   }
382   else if (0 == strcmp(solver, "mlp"))
383   {
384     config_file = "test_ats_solver_mlp.conf";
385   }
386   else if ((0 == strcmp(solver, "ril")))
387   {
388     config_file = "test_ats_solver_ril.conf";
389   }
390   else
391   {
392     GNUNET_break (0);
393     GNUNET_free (src_filename);
394     GNUNET_free (test_filename);
395     return 1;
396   }
397
398   GNUNET_free (src_filename);
399   GNUNET_free (test_filename);
400
401   if (0 != GNUNET_TESTING_peer_run ("test-ats-solver",
402       config_file, &run, NULL ))
403     return GNUNET_SYSERR;
404
405   return ret;
406 }
407
408 /* end of file test_ats_solver_add_address.c */