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