remove ATS information from callback from ATS address selection, as the argument...
[oweals/gnunet.git] / src / ats / test_ats_api_scheduling_add_address_inbound.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_add_address.c
22  * @brief adding addresses with scheduling API
23  * @author Christian Grothoff
24  * @author Matthias Wachs
25  */
26 #include "platform.h"
27 #include "gnunet_ats_service.h"
28 #include "gnunet_testing_lib.h"
29 #include "ats.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  * Return value
49  */
50 static int ret;
51
52 /**
53  * Test address
54  */
55 static struct Test_Address test_addr;
56
57 /**
58  * Test peer
59  */
60 static struct PeerContext p;
61
62 /**
63  * HELLO address
64  */
65 static struct GNUNET_HELLO_Address test_hello_address;
66
67 /**
68  * Test ats info
69  */
70 static struct GNUNET_ATS_Information test_ats_info[2];
71
72 /**
73  * Test ats count
74  */
75 static uint32_t test_ats_count;
76
77
78 static void
79 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
80
81 static void
82 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
83
84
85 static int
86 stat_cb(void *cls, const char *subsystem,
87         const char *name, uint64_t value,
88         int is_persistent)
89 {
90   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "ATS statistics: `%s' `%s' %llu\n",
91       subsystem,name, value);
92   if (1 == value)
93   {
94     GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &end, NULL);
95   }
96   if (1 < value)
97   {
98     GNUNET_SCHEDULER_add_now (&end_badly, NULL);
99   }
100
101   return GNUNET_OK;
102 }
103
104
105 static void
106 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
107 {
108   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Shutting down\n");
109
110   if (die_task != NULL)
111   {
112     GNUNET_SCHEDULER_cancel (die_task);
113     die_task = NULL;
114   }
115
116   if (NULL != sched_ats)
117   {
118     GNUNET_ATS_scheduling_done (sched_ats);
119     sched_ats = NULL;
120   }
121
122   GNUNET_STATISTICS_watch_cancel (stats, "ats", "# addresses", &stat_cb, NULL);
123   if (NULL != stats)
124   {
125     GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
126     stats = NULL;
127   }
128
129   free_test_address (&test_addr);
130
131   ret = 0;
132 }
133
134 static void
135 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
136 {
137   die_task = NULL;
138   end ( NULL, NULL);
139   ret = GNUNET_SYSERR;
140 }
141
142
143 static void
144 address_suggest_cb (void *cls,
145                     const struct GNUNET_PeerIdentity *peer,
146                     const struct GNUNET_HELLO_Address *address,
147                     struct Session *session,
148                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
149                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in)
150 {
151   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Did not expect suggestion callback!\n");
152   GNUNET_SCHEDULER_add_now (&end_badly, NULL);
153 }
154
155
156 static void
157 got_initial_value (void *cls, int success)
158 {
159   struct GNUNET_CONFIGURATION_Handle *cfg = cls;
160
161   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Got initial value\n");
162   /* Connect to ATS scheduling */
163   sched_ats = GNUNET_ATS_scheduling_init (cfg, &address_suggest_cb, NULL);
164   if (sched_ats == NULL)
165   {
166     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS scheduling!\n");
167     GNUNET_SCHEDULER_add_now (&end_badly, NULL);
168     return;
169   }
170
171   /* Set up peer */
172   memset (&p.id, '1', sizeof (p.id));
173   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
174               GNUNET_i2s_full(&p.id));
175
176   /* Prepare ATS Information */
177   test_ats_info[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
178   test_ats_info[0].value = htonl(GNUNET_ATS_NET_WAN);
179   test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
180   test_ats_info[1].value = htonl(1);
181   test_ats_count = 2;
182
183   /* Adding address without session */
184   create_test_address (&test_addr, "test-plugin", NULL, NULL, 0);
185   test_hello_address.peer = p.id;
186   test_hello_address.transport_name = test_addr.plugin;
187   test_hello_address.address = NULL;
188   test_hello_address.address_length = 0;
189
190   /* Adding address */
191   GNUNET_ATS_address_add (sched_ats, &test_hello_address, NULL, test_ats_info, test_ats_count);
192   GNUNET_ATS_address_add (sched_ats, &test_hello_address, NULL, test_ats_info, test_ats_count);
193 }
194
195 static int
196 dummy_stat (void *cls, const char *subsystem, const char *name, uint64_t value,
197             int is_persistent)
198 {
199   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Got dummy stat %s%s:%s = %llu\n",
200               is_persistent ? "!" : " ", subsystem, name, value);
201   return GNUNET_OK;
202 }
203
204
205 static void
206 run (void *cls,
207      const struct GNUNET_CONFIGURATION_Handle *cfg,
208      struct GNUNET_TESTING_Peer *peer)
209 {
210   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
211   stats = GNUNET_STATISTICS_create ("ats", cfg);
212   GNUNET_STATISTICS_watch (stats, "ats", "# addresses", &stat_cb, NULL);
213
214   GNUNET_STATISTICS_get (stats, "ats", "# addresses", TIMEOUT,
215                                        &got_initial_value, &dummy_stat,
216                                        GNUNET_CONFIGURATION_dup (cfg));
217
218 }
219
220
221 int
222 main (int argc, char *argv[])
223 {
224   ret = 0;
225   if (0 != GNUNET_TESTING_peer_run ("test-ats-api",
226                                     "test_ats_api.conf",
227                                     &run, NULL))
228     return 1;
229   return ret;
230 }
231
232 /* end of file test_ats_api_scheduling_add_address.c */