-fix config, shutdown issue
[oweals/gnunet.git] / src / ats / test_ats_solver_add_address.c
1 /*
2  This file is part of GNUnet.
3  Copyright (C) 2010-2013 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_solver_add_address.c
22  * @brief solver test: add address
23  * @author Christian Grothoff
24  * @author Matthias Wachs
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28 #include "gnunet_testbed_service.h"
29 #include "gnunet_ats_service.h"
30 #include "test_ats_api_common.h"
31
32 /**
33  * Timeout task
34  */
35 static struct GNUNET_SCHEDULER_Task * die_task;
36
37 /**
38  * Statistics handle
39  */
40 static struct GNUNET_STATISTICS_Handle *stats;
41
42 /**
43  * Scheduling handle
44  */
45 static struct GNUNET_ATS_SchedulingHandle *sched_ats;
46
47 /**
48  * Return value
49  */
50 static int ret;
51
52 /**
53  * Test address
54  */
55 static struct Test_Address test_addr;
56
57 /**
58  * Test peer
59  */
60 static struct PeerContext p;
61
62 /**
63  * HELLO address
64  */
65 static struct GNUNET_HELLO_Address test_hello_address;
66
67 /**
68  * Session
69  */
70 static void *test_session;
71
72 /**
73  * Test ats info
74  */
75 static struct GNUNET_ATS_Information test_ats_info[2];
76
77 /**
78  * Test ats count
79  */
80 static uint32_t test_ats_count;
81
82
83 static int
84 stat_cb(void *cls, const char *subsystem, const char *name, uint64_t value,
85         int is_persistent);
86
87
88 static void
89 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
90 {
91   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Done!\n");
92
93   if (die_task != NULL)
94   {
95     GNUNET_SCHEDULER_cancel (die_task);
96     die_task = NULL;
97   }
98
99   if (NULL != sched_ats)
100   {
101     GNUNET_ATS_scheduling_done (sched_ats);
102     sched_ats = NULL;
103   }
104
105   GNUNET_STATISTICS_watch_cancel (stats, "ats", "# addresses", &stat_cb, NULL);
106   if (NULL != stats)
107   {
108     GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
109     stats = NULL;
110   }
111
112   free_test_address (&test_addr);
113
114   ret = 0;
115 }
116
117
118 static void
119 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
120 {
121   die_task = NULL;
122   end ( NULL, NULL);
123   ret = GNUNET_SYSERR;
124 }
125
126
127 static void
128 address_suggest_cb (void *cls,
129                     const struct GNUNET_PeerIdentity *peer,
130                     const struct GNUNET_HELLO_Address *address,
131                     struct Session *session,
132                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
133                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in)
134 {
135   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Did not expect suggestion callback!\n");
136   GNUNET_SCHEDULER_add_now (&end_badly, NULL);
137 }
138
139
140 static int
141 stat_cb(void *cls, const char *subsystem,
142         const char *name, uint64_t value,
143         int is_persistent)
144 {
145
146   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "ATS statistics: `%s' `%s' %llu\n",
147       subsystem,name, value);
148   if (1 == value)
149   {
150     GNUNET_SCHEDULER_add_now (&end, NULL);
151   }
152   return GNUNET_OK;
153 }
154
155 static void
156 run (void *cls, const struct GNUNET_CONFIGURATION_Handle *mycfg,
157     struct GNUNET_TESTING_Peer *peer)
158 {
159   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
160   stats = GNUNET_STATISTICS_create ("ats", mycfg);
161   GNUNET_STATISTICS_watch (stats, "ats", "# addresses", &stat_cb, NULL);
162
163
164   /* Connect to ATS scheduling */
165   sched_ats = GNUNET_ATS_scheduling_init (mycfg, &address_suggest_cb, NULL);
166   if (sched_ats == NULL)
167   {
168     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS scheduling!\n");
169     GNUNET_SCHEDULER_add_now (&end_badly, NULL);
170     return;
171   }
172
173   /* Set up peer */
174   memset (&p.id, '1', sizeof (p.id));
175
176   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
177               GNUNET_i2s_full(&p.id));
178
179   /* Prepare ATS Information */
180   test_ats_info[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
181   test_ats_info[0].value = htonl(GNUNET_ATS_NET_WAN);
182   test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
183   test_ats_info[1].value = htonl(1);
184   test_ats_count = 2;
185
186   /* Adding address without session */
187   test_session = NULL;
188   create_test_address (&test_addr, "test", test_session, "test", strlen ("test") + 1);
189   test_hello_address.peer = p.id;
190   test_hello_address.transport_name = test_addr.plugin;
191   test_hello_address.address = test_addr.addr;
192   test_hello_address.address_length = test_addr.addr_len;
193
194   /* Adding address */
195   GNUNET_ATS_address_add (sched_ats, &test_hello_address, test_session, test_ats_info, test_ats_count);
196 }
197
198
199 int
200 main (int argc, char *argv[])
201 {
202   char *sep;
203   char *src_filename = GNUNET_strdup (__FILE__);
204   char *test_filename = GNUNET_strdup (argv[0]);
205   char *config_file;
206   char *solver;
207
208   ret = 0;
209
210   if (NULL == (sep  = (strstr (src_filename,".c"))))
211   {
212     GNUNET_break (0);
213     return -1;
214   }
215   sep[0] = '\0';
216
217   if (NULL != (sep = strstr (test_filename, ".exe")))
218     sep[0] = '\0';
219
220   if (NULL == (solver = strstr (test_filename, src_filename)))
221   {
222     GNUNET_break (0);
223     return -1;
224   }
225   solver += strlen (src_filename) +1;
226
227   if (0 == strcmp(solver, "proportional"))
228   {
229     config_file = "test_ats_solver_proportional.conf";
230   }
231   else if (0 == strcmp(solver, "mlp"))
232   {
233     config_file = "test_ats_solver_mlp.conf";
234   }
235   else if ((0 == strcmp(solver, "ril")))
236   {
237     config_file = "test_ats_solver_ril.conf";
238   }
239   else
240   {
241     GNUNET_break (0);
242     GNUNET_free (src_filename);
243     GNUNET_free (test_filename);
244     return 1;
245   }
246
247   GNUNET_free (src_filename);
248   GNUNET_free (test_filename);
249
250   if (0 != GNUNET_TESTING_peer_run ("test-ats-solver",
251       config_file, &run, NULL ))
252     return GNUNET_SYSERR;
253
254   return ret;
255 }
256
257 /* end of file test_ats_solver_add_address.c */