-test cleanup
[oweals/gnunet.git] / src / ats / test_ats_api_delayed_service_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_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 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 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 struct GNUNET_ATS_Information test_ats_info[2];
77
78 /**
79  * Test ats count
80  */
81 uint32_t test_ats_count;
82
83
84 static void end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
85
86 static int
87 stat_cb(void *cls, const char *subsystem,
88         const char *name, uint64_t value,
89         int is_persistent)
90 {
91
92   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "ATS statistics: `%s' `%s' %llu\n",
93       subsystem,name, value);
94   if (1 == value)
95   {
96     GNUNET_SCHEDULER_add_now (&end, NULL);
97   }
98   return GNUNET_OK;
99 }
100
101
102 static void
103 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
104 {
105   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Shutting down\n");
106
107   if (die_task != NULL)
108   {
109     GNUNET_SCHEDULER_cancel (die_task);
110     die_task = NULL;
111   }
112
113   if (NULL != sched_ats)
114   {
115     GNUNET_ATS_scheduling_done (sched_ats);
116     sched_ats = NULL;
117   }
118
119   GNUNET_STATISTICS_watch_cancel (stats, "ats", "# addresses", &stat_cb, NULL);
120   if (NULL != stats)
121   {
122     GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
123     stats = NULL;
124   }
125
126   free_test_address (&test_addr);
127
128   ret = 0;
129 }
130
131 static void
132 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
133 {
134   die_task = NULL;
135   end ( NULL, NULL);
136   ret = GNUNET_SYSERR;
137 }
138
139 static void
140 address_suggest_cb (void *cls,
141                     const struct GNUNET_PeerIdentity *peer,
142                     const struct GNUNET_HELLO_Address *address,
143                     struct Session *session,
144                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
145                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
146                     const struct GNUNET_ATS_Information *atsi,
147                     uint32_t ats_count)
148 {
149   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Did not expect suggestion callback!\n");
150   GNUNET_SCHEDULER_add_now (&end_badly, NULL);
151   return;
152 }
153
154
155 static void
156 got_initial_value (void *cls, int success)
157 {
158   struct GNUNET_CONFIGURATION_Handle *cfg = cls;
159
160   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Got initial value\n");
161
162   /* Connect to ATS scheduling */
163   sched_ats = GNUNET_ATS_scheduling_init (cfg, &address_suggest_cb, NULL);
164   if (sched_ats == NULL)
165   {
166     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS scheduling!\n");
167     GNUNET_SCHEDULER_add_now (&end_badly, NULL);
168     return;
169   }
170
171   /* Set up peer */
172   memset (&p.id, '1', sizeof (p.id));
173   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
174               GNUNET_i2s_full(&p.id));
175
176   /* Prepare ATS Information */
177   test_ats_info[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
178   test_ats_info[0].value = htonl(GNUNET_ATS_NET_WAN);
179   test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
180   test_ats_info[1].value = htonl(1);
181   test_ats_count = 2;
182
183   /* Adding address without session */
184   test_session = NULL;
185   create_test_address (&test_addr, "test", test_session, "test", strlen ("test") + 1);
186   test_hello_address.peer = p.id;
187   test_hello_address.transport_name = test_addr.plugin;
188   test_hello_address.address = test_addr.addr;
189   test_hello_address.address_length = test_addr.addr_len;
190
191   /* Adding address */
192   GNUNET_ATS_address_add (sched_ats, &test_hello_address, test_session, test_ats_info, test_ats_count);
193
194 }
195
196
197 static int
198 dummy_stat (void *cls, const char *subsystem, const char *name, uint64_t value,
199             int is_persistent)
200 {
201   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Got dummy stat %s%s:%s = %llu\n",
202               is_persistent ? "!" : " ", subsystem, name, value);
203   return GNUNET_OK;
204 }
205
206
207 static void
208 run (void *cls,
209      const struct GNUNET_CONFIGURATION_Handle *cfg,
210      struct GNUNET_TESTING_Peer *peer)
211 {
212   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
213   stats = GNUNET_STATISTICS_create ("ats", cfg);
214   GNUNET_STATISTICS_watch (stats, "ats", "# addresses", &stat_cb, NULL);
215
216   GNUNET_STATISTICS_get (stats, "ats", "# addresses", TIMEOUT,
217                                        &got_initial_value, &dummy_stat,
218                                        GNUNET_CONFIGURATION_dup (cfg));
219
220 }
221
222
223 int
224 main (int argc, char *argv[])
225 {
226   ret = 0;
227   if (0 != GNUNET_TESTING_peer_run ("test-ats-api",
228                                     "test_ats_api_delayed.conf",
229                                     &run, NULL))
230     return 1;
231   return ret;
232 }
233
234 /* end of file test_ats_api_delayed_service_scheduling_add_address.c */