fixing shutdown
[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 ((ats_count != test_ats_count) ||
132                 (GNUNET_OK != compare_ats(atsi, ats_count, test_ats_info, test_ats_count)))
133     {
134       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Stage 0: Callback with incorrect ats info \n");
135       ret = 1;
136       GNUNET_SCHEDULER_add_now (&end, NULL);
137       return;
138     }
139
140     /* Update address */
141     /* Prepare ATS Information */
142     test_ats_info[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
143     test_ats_info[0].value = htonl(GNUNET_ATS_NET_WAN);
144     test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
145     test_ats_info[1].value = htonl(5);
146     test_ats_info[2].type = htonl (GNUNET_ATS_QUALITY_NET_DELAY);
147     test_ats_info[2].value = htonl(30);
148     test_ats_count = 3;
149
150     GNUNET_ATS_address_update (sched_ats, &test_hello_address, test_session, test_ats_info, test_ats_count);
151
152     /* Request address */
153     GNUNET_ATS_suggest_address (sched_ats, &p.id);
154     stage ++;
155   }
156   else if (1 == stage)
157   {
158       GNUNET_ATS_suggest_address_cancel (sched_ats, &p.id);
159       if (GNUNET_OK == compare_addresses(address, session, &test_hello_address, test_session))
160       {
161         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stage 1: Callback with correct address `%s'\n",
162                     GNUNET_i2s (&address->peer));
163         ret = 0;
164       }
165       else
166       {
167         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Stage 1: Callback with incorrect address `%s'\n",
168                     GNUNET_i2s (&address->peer));
169         ret = 1;
170       }
171
172       if ((ats_count != test_ats_count) ||
173                 (GNUNET_OK != compare_ats(atsi, ats_count, test_ats_info, test_ats_count)))
174       {
175         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Stage 1: Callback with incorrect ats info \n");
176         ret = 1;
177         GNUNET_SCHEDULER_add_now (&end, NULL);
178         return;
179       }
180
181       GNUNET_SCHEDULER_add_now (&end, NULL);
182   }
183 }
184
185 static void
186 run (void *cls,
187      const struct GNUNET_CONFIGURATION_Handle *cfg,
188      struct GNUNET_TESTING_Peer *peer)
189 {
190   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
191
192   /* Connect to ATS scheduling */
193   sched_ats = GNUNET_ATS_scheduling_init (cfg, &address_suggest_cb, NULL);
194   if (sched_ats == NULL)
195   {
196     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS scheduling!\n");
197     ret = 1;
198     end ();
199     return;
200   }
201
202   /* Set up peer */
203   if (GNUNET_SYSERR == GNUNET_CRYPTO_hash_from_string(PEERID0, &p.id.hashPubKey))
204   {
205       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not setup peer!\n");
206       ret = GNUNET_SYSERR;
207       end ();
208       return;
209   }
210
211   GNUNET_assert (0 == strcmp (PEERID0, GNUNET_i2s_full (&p.id)));
212
213   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
214               GNUNET_i2s_full(&p.id));
215
216   /* Prepare ATS Information */
217   test_ats_info[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
218   test_ats_info[0].value = htonl(GNUNET_ATS_NET_WAN);
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 */