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