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