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