-renaming testing-new.h to testing.h, bumping library versions
[oweals/gnunet.git] / src / ats / test_ats_api_scheduling_add_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_add_address.c
22  * @brief test adding addresses in automatic transport selection scheduling API
23  * @author Christian Grothoff
24  * @author Matthias Wachs
25  */
26 #include "platform.h"
27 #include "gnunet_ats_service.h"
28 #include "gnunet_testing_lib.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         ret = 0;
118     }
119     else
120     {
121         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stage 0: Callback with invalid address `%s'\n",
122                     GNUNET_i2s (&address->peer));
123         ret = 1;
124     }
125
126     if (GNUNET_OK != compare_ats(atsi, ats_count, test_ats_info, test_ats_count))
127     {
128       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Stage 0: Callback with incorrect ats info \n");
129       ret = 1;
130     }
131     stage ++;
132     GNUNET_ATS_suggest_address_cancel (sched_ats, &p.id);
133     GNUNET_SCHEDULER_add_now (&end, NULL);
134   }
135 }
136
137 static void
138 run (void *cls, 
139      const struct GNUNET_CONFIGURATION_Handle *cfg,
140      struct GNUNET_TESTING_Peer *peer)
141 {
142
143   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
144
145   /* Connect to ATS scheduling */
146   sched_ats = GNUNET_ATS_scheduling_init (cfg, &address_suggest_cb, NULL);
147   if (sched_ats == NULL)
148   {
149     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS scheduling!\n");
150     ret = 1;
151     end ();
152     return;
153   }
154
155   /* Set up peer */
156   if (GNUNET_SYSERR == GNUNET_CRYPTO_hash_from_string(PEERID0, &p.id.hashPubKey))
157   {
158       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not setup peer!\n");
159       ret = GNUNET_SYSERR;
160       end ();
161       return;
162   }
163
164   GNUNET_assert (0 == strcmp (PEERID0, GNUNET_i2s_full (&p.id)));
165
166   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
167               GNUNET_i2s_full(&p.id));
168
169   /* Prepare ATS Information */
170   test_ats_info[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
171   test_ats_info[0].value = htonl(GNUNET_ATS_NET_WAN);
172   test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
173   test_ats_info[1].value = htonl(1);
174   test_ats_count = 2;
175
176   /* Adding address without session */
177   test_session = NULL;
178   create_test_address (&test_addr, "test", test_session, "test", strlen ("test") + 1);
179   test_hello_address.peer = p.id;
180   test_hello_address.transport_name = test_addr.plugin;
181   test_hello_address.address = test_addr.addr;
182   test_hello_address.address_length = test_addr.addr_len;
183   GNUNET_ATS_address_add (sched_ats, &test_hello_address, test_session, test_ats_info, test_ats_count);
184
185   GNUNET_ATS_suggest_address (sched_ats, &p.id);
186 }
187
188
189 int
190 main (int argc, char *argv[])
191 {
192   if (0 != GNUNET_TESTING_peer_run ("test_ats_api_scheduling_add_address",
193                                     "test_ats_api.conf",
194                                     &run, NULL))
195     return 1;
196   return ret;
197 }
198
199 /* end of file test_ats_api_scheduling_add_address.c */