new solver specific test
[oweals/gnunet.git] / src / ats / test_ats_solver_add_address.c
1 /*
2   if (NULL == (perf_ats = GNUNET_ATS_performance_init (cfg, &ats_perf_cb, NULL)))
3   {
4     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5         "Failed to connect to performance API\n");
6     GNUNET_SCHEDULER_add_now (end_badly, NULL);
7   }
8  This file is part of GNUnet.
9  (C) 2010-2013 Christian Grothoff (and other contributing authors)
10
11  GNUnet is free software; you can redistribute it and/or modify
12  it under the terms of the GNU General Public License as published
13  by the Free Software Foundation; either version 3, or (at your
14  option) any later version.
15
16  GNUnet is distributed in the hope that it will be useful, but
17  WITHOUT ANY WARRANTY; without even the implied warranty of
18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  General Public License for more details.
20
21  You should have received a copy of the GNU General Public License
22  along with GNUnet; see the file COPYING.  If not, write to the
23  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24  Boston, MA 02111-1307, USA.
25  */
26 /**
27  * @file ats/test_ats_solver_add_address.c
28  * @brief solver test: add address
29  * @author Christian Grothoff
30  * @author Matthias Wachs
31  */
32 #include "platform.h"
33 #include "gnunet_util_lib.h"
34 #include "gnunet_testbed_service.h"
35 #include "gnunet_ats_service.h"
36 #include "test_ats_api_common.h"
37
38 /**
39  * Timeout task
40  */
41 static GNUNET_SCHEDULER_TaskIdentifier die_task;
42
43 /**
44  * Statistics handle
45  */
46 struct GNUNET_STATISTICS_Handle *stats;
47
48 /**
49  * Scheduling handle
50  */
51 static struct GNUNET_ATS_SchedulingHandle *sched_ats;
52
53 /**
54  * Return value
55  */
56 static int ret;
57
58 /**
59  * Test address
60  */
61 static struct Test_Address test_addr;
62
63 /**
64  * Test peer
65  */
66 static struct PeerContext p;
67
68 /**
69  * HELLO address
70  */
71 struct GNUNET_HELLO_Address test_hello_address;
72
73 /**
74  * Session
75  */
76 static void *test_session;
77
78 /**
79  * Test ats info
80  */
81 struct GNUNET_ATS_Information test_ats_info[2];
82
83 /**
84  * Test ats count
85  */
86 uint32_t test_ats_count;
87
88
89 static int
90 stat_cb(void *cls, const char *subsystem, const char *name, uint64_t value,
91         int is_persistent);
92
93 static void
94 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
95 {
96   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Done!\n");
97
98   if (die_task != GNUNET_SCHEDULER_NO_TASK)
99   {
100     GNUNET_SCHEDULER_cancel (die_task);
101     die_task = GNUNET_SCHEDULER_NO_TASK;
102   }
103
104   if (NULL != sched_ats)
105   {
106     GNUNET_ATS_scheduling_done (sched_ats);
107     sched_ats = NULL;
108   }
109
110   GNUNET_STATISTICS_watch_cancel (stats, "ats", "# addresses", &stat_cb, NULL);
111   if (NULL != stats)
112   {
113     GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
114     stats = NULL;
115   }
116
117   free_test_address (&test_addr);
118
119   ret = 0;
120 }
121
122
123 static void
124 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
125 {
126   die_task = GNUNET_SCHEDULER_NO_TASK;
127   end ( NULL, NULL);
128   ret = GNUNET_SYSERR;
129 }
130
131 static void
132 address_suggest_cb (void *cls, const struct GNUNET_HELLO_Address *address,
133                     struct Session *session,
134                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
135                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
136                     const struct GNUNET_ATS_Information *atsi,
137                     uint32_t ats_count)
138 {
139   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Did not expect suggestion callback!\n");
140   GNUNET_SCHEDULER_add_now (&end_badly, NULL);
141   return;
142 }
143
144
145 static int
146 stat_cb(void *cls, const char *subsystem,
147         const char *name, uint64_t value,
148         int is_persistent)
149 {
150
151   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "ATS statistics: `%s' `%s' %llu\n",
152       subsystem,name, value);
153   if (1 == value)
154   {
155     GNUNET_SCHEDULER_add_now (&end, NULL);
156   }
157   return GNUNET_OK;
158 }
159
160 static void
161 run (void *cls, const struct GNUNET_CONFIGURATION_Handle *mycfg,
162     struct GNUNET_TESTING_Peer *peer)
163 {
164   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
165   stats = GNUNET_STATISTICS_create ("ats", mycfg);
166   GNUNET_STATISTICS_watch (stats, "ats", "# addresses", &stat_cb, NULL);
167
168
169   /* Connect to ATS scheduling */
170   sched_ats = GNUNET_ATS_scheduling_init (mycfg, &address_suggest_cb, NULL);
171   if (sched_ats == NULL)
172   {
173     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS scheduling!\n");
174     GNUNET_SCHEDULER_add_now (&end_badly, NULL);
175     return;
176   }
177
178   /* Set up peer */
179   if (GNUNET_SYSERR == GNUNET_CRYPTO_hash_from_string(PEERID0, &p.id.hashPubKey))
180   {
181       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not setup peer!\n");
182       GNUNET_SCHEDULER_add_now (&end_badly, NULL);
183       return;
184   }
185   GNUNET_assert (0 == strcmp (PEERID0, GNUNET_i2s_full (&p.id)));
186
187   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
188               GNUNET_i2s_full(&p.id));
189
190   /* Prepare ATS Information */
191   test_ats_info[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
192   test_ats_info[0].value = htonl(GNUNET_ATS_NET_WAN);
193   test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
194   test_ats_info[1].value = htonl(1);
195   test_ats_count = 2;
196
197   /* Adding address without session */
198   test_session = NULL;
199   create_test_address (&test_addr, "test", test_session, "test", strlen ("test") + 1);
200   test_hello_address.peer = p.id;
201   test_hello_address.transport_name = test_addr.plugin;
202   test_hello_address.address = test_addr.addr;
203   test_hello_address.address_length = test_addr.addr_len;
204
205   /* Adding address */
206   GNUNET_ATS_address_add (sched_ats, &test_hello_address, test_session, test_ats_info, test_ats_count);
207 }
208
209
210 int
211 main (int argc, char *argv[])
212 {
213   char *sep;
214   char *src_filename = GNUNET_strdup (__FILE__);
215   char *test_filename = GNUNET_strdup (argv[0]);
216   char *config_file;
217   char *solver;
218
219   ret = 0;
220
221   if (NULL == (sep  = (strstr (src_filename,".c"))))
222   {
223     GNUNET_break (0);
224     return -1;
225   }
226   sep[0] = '\0';
227
228   if (NULL != (sep = strstr (test_filename, ".exe")))
229     sep[0] = '\0';
230
231   if (NULL == (solver = strstr (test_filename, src_filename)))
232   {
233     GNUNET_break (0);
234     return -1;
235   }
236   solver += strlen (src_filename) +1;
237
238   if (0 == strcmp(solver, "proportional"))
239   {
240     config_file = "test_ats_solver_proportional.conf";
241   }
242   else if (0 == strcmp(solver, "mlp"))
243   {
244     config_file = "test_ats_solver_mlp.conf";
245   }
246   else if ((0 == strcmp(solver, "ril")))
247   {
248     config_file = "test_ats_solver_ril.conf";
249   }
250   else
251   {
252     GNUNET_break (0);
253     GNUNET_free (src_filename);
254     GNUNET_free (test_filename);
255     return 1;
256   }
257
258   GNUNET_free (src_filename);
259   GNUNET_free (test_filename);
260
261   if (0 != GNUNET_TESTING_peer_run ("test-ats-solver",
262       config_file, &run, NULL ))
263     return GNUNET_SYSERR;
264
265   return ret;
266 }
267
268 /* end of file test_ats_solver_add_address.c */