statistic based test
[oweals/gnunet.git] / src / ats / test_ats_api_scheduling_init.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_scheduling_init.c
22  * @brief test automatic transport selection scheduling API init/shutdown
23  * @author Christian Grothoff
24  * @author Matthias Wachs
25  *
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  * Timeout task
34  */
35 static GNUNET_SCHEDULER_TaskIdentifier die_task;
36
37 /**
38  * Statistics handle
39  */
40 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 static void end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
54
55 static int
56 stat_cb(void *cls, const char *subsystem,
57         const char *name, uint64_t value,
58         int is_persistent)
59 {
60
61   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "ATS statistics: `%s' `%s' %llu\n",
62       subsystem,name, value);
63   if (0 == value)
64   {
65     GNUNET_SCHEDULER_add_now (&end, NULL);
66   }
67   return GNUNET_OK;
68 }
69
70
71 static void
72 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
73 {
74   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Shutting down\n");
75
76   if (die_task != GNUNET_SCHEDULER_NO_TASK)
77   {
78     GNUNET_SCHEDULER_cancel (die_task);
79     die_task = GNUNET_SCHEDULER_NO_TASK;
80   }
81
82   if (NULL != sched_ats)
83   {
84     GNUNET_ATS_scheduling_done (sched_ats);
85     sched_ats = NULL;
86   }
87
88   GNUNET_STATISTICS_watch_cancel (stats, "ats", "# addresses", &stat_cb, NULL);
89   if (NULL != stats)
90   {
91     GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
92     stats = NULL;
93   }
94   ret = 0;
95 }
96
97 static void
98 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
99 {
100   die_task = GNUNET_SCHEDULER_NO_TASK;
101   end ( NULL, NULL);
102   ret = GNUNET_SYSERR;
103 }
104
105 static void
106 address_suggest_cb (void *cls, const struct GNUNET_HELLO_Address *address,
107                     struct Session *session,
108                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
109                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
110                     const struct GNUNET_ATS_Information *atsi,
111                     uint32_t ats_count)
112 {
113   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Did not expect suggestion callback!\n");
114   GNUNET_SCHEDULER_add_now (&end_badly, NULL);
115   return;
116 }
117
118
119 static void
120 run (void *cls, 
121      const struct GNUNET_CONFIGURATION_Handle *cfg,
122      struct GNUNET_TESTING_Peer *peer)
123 {
124   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
125   stats = GNUNET_STATISTICS_create ("ats", cfg);
126   GNUNET_STATISTICS_watch (stats, "ats", "# addresses", &stat_cb, NULL);
127
128   /* Connect to ATS scheduling */
129   sched_ats = GNUNET_ATS_scheduling_init (cfg, &address_suggest_cb, NULL);
130   if (sched_ats == NULL)
131   {
132     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS scheduling!\n");
133     GNUNET_SCHEDULER_add_now (&end_badly, NULL);
134     return;
135   }
136 }
137
138
139 int
140 main (int argc, char *argv[])
141 {
142   ret = 0;
143   if (0 != GNUNET_TESTING_peer_run ("test-ats-api",
144                                     "test_ats_api.conf",
145                                     &run, NULL))
146     return 1;
147   return ret;
148 }
149
150 /* end of file test_ats_api_scheduling_init.c */