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