aboutsummaryrefslogtreecommitdiff
path: root/src/ats/test_ats_api_scheduling_update_address.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2012-12-06 12:20:58 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2012-12-06 12:20:58 +0000
commit9c9d19ad801e8760986e7c377ae2b7e2e1439547 (patch)
tree26094d80e58264cb3854128e8ab23a93e1b69600 /src/ats/test_ats_api_scheduling_update_address.c
parent1f64f8561f93fb9537e828404595e76476527fee (diff)
downloadgnunet-9c9d19ad801e8760986e7c377ae2b7e2e1439547.tar.gz
gnunet-9c9d19ad801e8760986e7c377ae2b7e2e1439547.zip
changes
Diffstat (limited to 'src/ats/test_ats_api_scheduling_update_address.c')
-rw-r--r--src/ats/test_ats_api_scheduling_update_address.c253
1 files changed, 253 insertions, 0 deletions
diff --git a/src/ats/test_ats_api_scheduling_update_address.c b/src/ats/test_ats_api_scheduling_update_address.c
new file mode 100644
index 000000000..184b3afc0
--- /dev/null
+++ b/src/ats/test_ats_api_scheduling_update_address.c
@@ -0,0 +1,253 @@
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_update_address.c
22 * @brief test updating an address: add address, get and compare it, update it
23 * get it again and compre
24 * @author Christian Grothoff
25 * @author Matthias Wachs
26 */
27#include "platform.h"
28#include "gnunet_ats_service.h"
29#include "gnunet_testing_lib-new.h"
30#include "ats.h"
31#include "test_ats_api_common.h"
32
33static GNUNET_SCHEDULER_TaskIdentifier die_task;
34
35/**
36 * Scheduling handle
37 */
38static struct GNUNET_ATS_SchedulingHandle *sched_ats;
39
40/**
41 * Return value
42 */
43static int ret;
44
45/**
46 * Test address
47 */
48static struct Test_Address test_addr;
49
50/**
51 * Test peer
52 */
53static struct PeerContext p;
54
55/**
56 * HELLO test address
57 */
58
59struct GNUNET_HELLO_Address test_hello_address;
60
61/**
62 * Test session
63 */
64static void *test_session;
65
66static void
67create_test_address (struct Test_Address *dest, char * plugin, void *session, void *addr, size_t addrlen)
68{
69 dest->plugin = GNUNET_strdup (plugin);
70 dest->session = session;
71 dest->addr = GNUNET_malloc (addrlen);
72 memcpy (dest->addr, addr, addrlen);
73 dest->addr_len = addrlen;
74}
75
76static void
77free_test_address (struct Test_Address *dest)
78{
79 GNUNET_free (dest->plugin);
80 GNUNET_free (dest->addr);
81}
82
83
84static void
85end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
86{
87 die_task = GNUNET_SCHEDULER_NO_TASK;
88
89 if (sched_ats != NULL)
90 GNUNET_ATS_scheduling_done (sched_ats);
91 free_test_address (&test_addr);
92 ret = GNUNET_SYSERR;
93}
94
95
96static void
97end ()
98{
99 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Shutting down\n");
100 if (die_task != GNUNET_SCHEDULER_NO_TASK)
101 {
102 GNUNET_SCHEDULER_cancel (die_task);
103 die_task = GNUNET_SCHEDULER_NO_TASK;
104 }
105 GNUNET_ATS_scheduling_done (sched_ats);
106 sched_ats = NULL;
107 free_test_address (&test_addr);
108}
109
110
111static int
112compare_addresses (const struct GNUNET_HELLO_Address *address1, void *session1,
113 const struct GNUNET_HELLO_Address *address2, void *session2)
114{
115 if (0 != memcmp (&address1->peer, &address2->peer, sizeof (struct GNUNET_PeerIdentity)))
116 {
117 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggestion with invalid peer id'\n");
118 return GNUNET_SYSERR;
119 }
120 if (0 != strcmp (address1->transport_name, address2->transport_name))
121 {
122 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggestion with invalid plugin'\n");
123 return GNUNET_SYSERR;
124 }
125 if (address1->address_length != address2->address_length)
126 {
127 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggestion with invalid address length'\n");
128 return GNUNET_SYSERR;
129
130 }
131 else if (0 != memcmp (address1->address, address2->address, address2->address_length))
132 {
133 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggestion with invalid address'\n");
134 return GNUNET_SYSERR;
135 }
136 if (session1 != session2)
137 {
138 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Suggestion with invalid session1 %p vs session2 %p'\n",
139 session1, session2);
140 return GNUNET_SYSERR;
141
142 }
143 return GNUNET_OK;
144}
145
146static void
147address_suggest_cb (void *cls, const struct GNUNET_HELLO_Address *address,
148 struct Session *session,
149 struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
150 struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
151 const struct GNUNET_ATS_Information *atsi,
152 uint32_t ats_count)
153{
154 static int stage = 0;
155 if (0 == stage)
156 {
157 GNUNET_ATS_suggest_address_cancel (sched_ats, &p.id);
158 if (GNUNET_OK == compare_addresses(address, session, &test_hello_address, test_session))
159 {
160 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stage 0: Callback for correct address `%s'\n",
161 GNUNET_i2s (&address->peer));
162 ret = 0;
163 }
164 else
165 {
166 ret = 1;
167 GNUNET_SCHEDULER_add_now (&end, NULL);
168 }
169
170 /* Update address */
171
172
173 /* Request address */
174 GNUNET_ATS_suggest_address (sched_ats, &p.id);
175 stage ++;
176 }
177 else if (1 == stage)
178 {
179 GNUNET_ATS_suggest_address_cancel (sched_ats, &p.id);
180 if (GNUNET_OK == compare_addresses(address, session, &test_hello_address, test_session))
181 {
182 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stage 1: Callback with correct address `%s'\n",
183 GNUNET_i2s (&address->peer));
184 ret = 0;
185 }
186 else
187 {
188 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stage 1: Callback with incorrect address `%s'\n",
189 GNUNET_i2s (&address->peer));
190 ret = 1;
191 }
192
193 GNUNET_SCHEDULER_add_now (&end, NULL);
194 }
195
196}
197
198static void
199run (void *cls,
200 const struct GNUNET_CONFIGURATION_Handle *cfg,
201 struct GNUNET_TESTING_Peer *peer)
202{
203 die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
204
205 /* Connect to ATS scheduling */
206 sched_ats = GNUNET_ATS_scheduling_init (cfg, &address_suggest_cb, NULL);
207 if (sched_ats == NULL)
208 {
209 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS scheduling!\n");
210 ret = 1;
211 end ();
212 return;
213 }
214
215 /* Set up peer */
216 if (GNUNET_SYSERR == GNUNET_CRYPTO_hash_from_string(PEERID, &p.id.hashPubKey))
217 {
218 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not setup peer!\n");
219 ret = GNUNET_SYSERR;
220 end ();
221 return;
222 }
223
224 GNUNET_assert (0 == strcmp (PEERID, GNUNET_i2s_full (&p.id)));
225
226 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
227 GNUNET_i2s_full(&p.id));
228
229 /* Adding address without session */
230 test_session = &test_addr;
231 create_test_address (&test_addr, "test", &test_addr, "test", strlen ("test") + 1);
232 test_hello_address.peer = p.id;
233 test_hello_address.transport_name = test_addr.plugin;
234 test_hello_address.address = test_addr.addr;
235 test_hello_address.address_length = test_addr.addr_len;
236 GNUNET_ATS_address_add (sched_ats, &test_hello_address, test_session, NULL, 0);
237
238 /* Request address */
239 GNUNET_ATS_suggest_address (sched_ats, &p.id);
240}
241
242
243int
244main (int argc, char *argv[])
245{
246 if (0 != GNUNET_TESTING_peer_run ("test_ats_api_scheduling_update_address",
247 "test_ats_api.conf",
248 &run, NULL))
249 return 1;
250 return ret;
251}
252
253/* end of file test_ats_api_scheduling_update_address.c */