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