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