implemented ats property normalization with callback to address
[oweals/gnunet.git] / src / ats / test_ats_normalization_update_quality.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_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.h"
30 #include "ats.h"
31 #include "test_ats_api_common.h"
32
33 static GNUNET_SCHEDULER_TaskIdentifier die_task;
34
35 /**
36  * Scheduling handle
37  */
38 static struct GNUNET_ATS_SchedulingHandle *sched_ats;
39
40 /**
41  * Return value
42  */
43 static int ret;
44
45 /**
46  * Test address
47  */
48 static struct Test_Address test_addr;
49
50 /**
51  * Test peer
52  */
53 static struct PeerContext p[2];
54
55 /**
56  * HELLO test address
57  */
58
59 struct GNUNET_HELLO_Address test_hello_address[3];
60
61 /**
62  * Test ats info
63  */
64 struct GNUNET_ATS_Information test_ats_info[3];
65
66 /**
67  * Test ats count
68  */
69 uint32_t test_ats_count;
70
71
72 static void
73 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
74 {
75   die_task = GNUNET_SCHEDULER_NO_TASK;
76
77   if (sched_ats != NULL)
78     GNUNET_ATS_scheduling_done (sched_ats);
79   free_test_address (&test_addr);
80   ret = 0;
81 }
82
83
84 static void
85 end ()
86 {
87   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Shutting down\n");
88   if (die_task != GNUNET_SCHEDULER_NO_TASK)
89   {
90     GNUNET_SCHEDULER_cancel (die_task);
91     die_task = GNUNET_SCHEDULER_NO_TASK;
92   }
93   GNUNET_ATS_scheduling_done (sched_ats);
94   sched_ats = NULL;
95   free_test_address (&test_addr);
96 }
97
98
99 static void
100 address_suggest_cb (void *cls, const struct GNUNET_HELLO_Address *address,
101                     struct Session *session,
102                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
103                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
104                     const struct GNUNET_ATS_Information *atsi,
105                     uint32_t ats_count)
106 {
107   static int stage = 0;
108   if (0 == stage)
109   {
110     GNUNET_ATS_suggest_address_cancel (sched_ats, &p[0].id);
111
112     /* Update address */
113     /* Prepare ATS Information */
114
115     test_ats_info[0].type = htonl (GNUNET_ATS_QUALITY_NET_DELAY);
116     test_ats_info[0].value = htonl(20);
117     test_ats_count = 1;
118
119     GNUNET_ATS_address_update (sched_ats, &test_hello_address[0], NULL, test_ats_info, test_ats_count);
120
121     test_ats_info[0].type = htonl (GNUNET_ATS_QUALITY_NET_DELAY);
122     test_ats_info[0].value = htonl(20);
123     test_ats_count = 1;
124
125     GNUNET_ATS_address_update (sched_ats, &test_hello_address[0], NULL, test_ats_info, test_ats_count);
126
127
128     /* Request address */
129     stage ++;
130   }
131 }
132
133 static void
134 run (void *cls,
135      const struct GNUNET_CONFIGURATION_Handle *cfg,
136      struct GNUNET_TESTING_Peer *peer)
137 {
138   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
139
140   /* Connect to ATS scheduling */
141   sched_ats = GNUNET_ATS_scheduling_init (cfg, &address_suggest_cb, NULL);
142   if (sched_ats == NULL)
143   {
144     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS scheduling!\n");
145     ret = 1;
146     end ();
147     return;
148   }
149
150   /* Set up peer */
151   if (GNUNET_SYSERR == GNUNET_CRYPTO_hash_from_string(PEERID0, &p[0].id.hashPubKey))
152   {
153       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not setup peer!\n");
154       ret = GNUNET_SYSERR;
155       end ();
156       return;
157   }
158
159   GNUNET_assert (0 == strcmp (PEERID0, GNUNET_i2s_full (&p[0].id)));
160
161   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
162               GNUNET_i2s_full(&p[0].id));
163
164   /* Set up peer */
165   if (GNUNET_SYSERR == GNUNET_CRYPTO_hash_from_string(PEERID1, &p[1].id.hashPubKey))
166   {
167       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not setup peer!\n");
168       ret = GNUNET_SYSERR;
169       end ();
170       return;
171   }
172
173   GNUNET_assert (0 == strcmp (PEERID1, GNUNET_i2s_full (&p[1].id)));
174
175   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
176               GNUNET_i2s_full(&p[1].id));
177
178
179
180   /* Adding address for peer 0 */
181   create_test_address (&test_addr, "test", &test_addr, "test", strlen ("test") + 1);
182   /* Prepare ATS Information */
183   test_ats_info[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
184   test_ats_info[0].value = htonl(GNUNET_ATS_NET_WAN);
185   test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DELAY);
186   test_ats_info[1].value = htonl(30);
187   test_ats_count = 2;
188
189   test_hello_address[0].peer = p[0].id;
190   test_hello_address[0].transport_name = test_addr.plugin;
191   test_hello_address[0].address = test_addr.addr;
192   test_hello_address[0].address_length = test_addr.addr_len;
193   GNUNET_ATS_address_add (sched_ats, &test_hello_address[0], NULL, test_ats_info, test_ats_count);
194
195   /* Adding address for peer 1 */
196   create_test_address (&test_addr, "test", &test_addr, "test", strlen ("test") + 1);
197   test_ats_info[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
198   test_ats_info[0].value = htonl(GNUNET_ATS_NET_WAN);
199   test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DELAY);
200   test_ats_info[1].value = htonl(10);
201   test_ats_count = 2;
202
203   test_hello_address[1].peer = p[1].id;
204   test_hello_address[1].transport_name = test_addr.plugin;
205   test_hello_address[1].address = test_addr.addr;
206   test_hello_address[1].address_length = test_addr.addr_len;
207   GNUNET_ATS_address_add (sched_ats, &test_hello_address[1], NULL, test_ats_info, test_ats_count);
208
209   /* Adding 2nd address for peer 1 */
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_DELAY);
213   test_ats_info[1].value = htonl(20);
214   test_ats_count = 2;
215
216   test_hello_address[3].peer = p[1].id;
217   test_hello_address[3].transport_name = test_addr.plugin;
218   test_hello_address[3].address = test_addr.addr;
219   test_hello_address[3].address_length = test_addr.addr_len;
220   GNUNET_ATS_address_add (sched_ats, &test_hello_address[3], NULL, test_ats_info, test_ats_count);
221
222   /* Request address */
223   GNUNET_ATS_suggest_address (sched_ats, &p[0].id);
224 }
225
226
227 int
228 main (int argc, char *argv[])
229 {
230   if (0 != GNUNET_TESTING_peer_run ("test_ats_api_scheduling_update_address",
231                                     "test_ats_api.conf",
232                                     &run, NULL))
233     return 1;
234   return ret;
235 }
236
237 /* end of file test_ats_api_scheduling_update_address.c */