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