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