-fix config, shutdown issue
[oweals/gnunet.git] / src / ats / test_ats_api_delayed_service_scheduling_add_address.c
1 /*
2      This file is part of GNUnet.
3      Copyright (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_delayed_service_scheduling_add_address.c
22  * @brief test case to ensure messages are transmitted to ATS service when
23  *  service startup is delayed
24  * @author Christian Grothoff
25  * @author Matthias Wachs
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 /**
34  * Timeout task
35  */
36 static struct GNUNET_SCHEDULER_Task * die_task;
37
38 /**
39  * Statistics handle
40  */
41 static struct GNUNET_STATISTICS_Handle *stats;
42
43 /**
44  * Scheduling handle
45  */
46 static struct GNUNET_ATS_SchedulingHandle *sched_ats;
47
48 /**
49  * Return value
50  */
51 static int ret;
52
53 /**
54  * Test address
55  */
56 static struct Test_Address test_addr;
57
58 /**
59  * Test peer
60  */
61 static struct PeerContext p;
62
63 /**
64  * HELLO address
65  */
66 static struct GNUNET_HELLO_Address test_hello_address;
67
68 /**
69  * Session
70  */
71 static void *test_session;
72
73 /**
74  * Test ats info
75  */
76 static struct GNUNET_ATS_Information test_ats_info[2];
77
78 /**
79  * Test ats count
80  */
81 static uint32_t test_ats_count;
82
83
84 static void
85 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
86
87
88 static int
89 stat_cb(void *cls, const char *subsystem,
90         const char *name, uint64_t value,
91         int is_persistent)
92 {
93   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
94               "ATS statistics: `%s' `%s' %llu\n",
95               subsystem,
96               name,
97               value);
98   if (1 == value)
99   {
100     GNUNET_SCHEDULER_add_now (&end, NULL);
101   }
102   return GNUNET_OK;
103 }
104
105
106 static void
107 end (void *cls,
108      const struct GNUNET_SCHEDULER_TaskContext *tc)
109 {
110   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Shutting down\n");
111
112   if (die_task != NULL)
113   {
114     GNUNET_SCHEDULER_cancel (die_task);
115     die_task = NULL;
116   }
117
118   if (NULL != sched_ats)
119   {
120     GNUNET_ATS_scheduling_done (sched_ats);
121     sched_ats = NULL;
122   }
123
124   GNUNET_STATISTICS_watch_cancel (stats, "ats", "# addresses", &stat_cb, NULL);
125   if (NULL != stats)
126   {
127     GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
128     stats = NULL;
129   }
130
131   free_test_address (&test_addr);
132
133   ret = 0;
134 }
135
136
137 static void
138 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
139 {
140   die_task = NULL;
141   end ( NULL, NULL);
142   ret = GNUNET_SYSERR;
143 }
144
145
146 static void
147 address_suggest_cb (void *cls,
148                     const struct GNUNET_PeerIdentity *peer,
149                     const struct GNUNET_HELLO_Address *address,
150                     struct Session *session,
151                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
152                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in)
153 {
154   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Did not expect suggestion callback!\n");
155   GNUNET_SCHEDULER_add_now (&end_badly, NULL);
156 }
157
158
159 static void
160 got_initial_value (void *cls, int success)
161 {
162   struct GNUNET_CONFIGURATION_Handle *cfg = cls;
163
164   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Got initial value\n");
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     GNUNET_SCHEDULER_add_now (&end_badly, NULL);
172     return;
173   }
174
175   /* Set up peer */
176   memset (&p.id, '1', sizeof (p.id));
177   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
178               GNUNET_i2s_full(&p.id));
179
180   /* Prepare ATS Information */
181   test_ats_info[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
182   test_ats_info[0].value = htonl(GNUNET_ATS_NET_WAN);
183   test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
184   test_ats_info[1].value = htonl(1);
185   test_ats_count = 2;
186
187   /* Adding address without session */
188   test_session = NULL;
189   create_test_address (&test_addr, "test", test_session, "test", strlen ("test") + 1);
190   test_hello_address.peer = p.id;
191   test_hello_address.transport_name = test_addr.plugin;
192   test_hello_address.address = test_addr.addr;
193   test_hello_address.address_length = test_addr.addr_len;
194
195   /* Adding address */
196   GNUNET_ATS_address_add (sched_ats,
197                           &test_hello_address,
198                           test_session,
199                           test_ats_info, test_ats_count);
200 }
201
202
203 static int
204 dummy_stat (void *cls, const char *subsystem, const char *name, uint64_t value,
205             int is_persistent)
206 {
207   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Got dummy stat %s%s:%s = %llu\n",
208               is_persistent ? "!" : " ", subsystem, name, value);
209   return GNUNET_OK;
210 }
211
212
213 static void
214 run (void *cls,
215      const struct GNUNET_CONFIGURATION_Handle *cfg,
216      struct GNUNET_TESTING_Peer *peer)
217 {
218   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
219   stats = GNUNET_STATISTICS_create ("ats", cfg);
220   GNUNET_STATISTICS_watch (stats, "ats", "# addresses", &stat_cb, NULL);
221
222   GNUNET_STATISTICS_get (stats, "ats", "# addresses", TIMEOUT,
223                                        &got_initial_value, &dummy_stat,
224                                        GNUNET_CONFIGURATION_dup (cfg));
225
226 }
227
228
229 int
230 main (int argc, char *argv[])
231 {
232   ret = 0;
233   if (0 != GNUNET_TESTING_peer_run ("test-ats-api",
234                                     "test_ats_api_delayed.conf",
235                                     &run, NULL))
236     return 1;
237   return ret;
238 }
239
240 /* end of file test_ats_api_delayed_service_scheduling_add_address.c */