- init 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.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-new.h"
30 #include "ats.h"
31
32 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
33 #define DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
34
35 static GNUNET_SCHEDULER_TaskIdentifier die_task;
36 static GNUNET_SCHEDULER_TaskIdentifier wait_task;
37
38 static struct GNUNET_ATS_SchedulingHandle *ats;
39
40 static int ret;
41
42 static void
43 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
44 {
45   die_task = GNUNET_SCHEDULER_NO_TASK;
46   if (ats != NULL)
47   {
48     GNUNET_ATS_scheduling_done (ats);
49     ats = NULL;
50   }
51   ret = 1;
52 }
53
54 static void
55 end_badly_now ()
56 {
57   if (die_task != GNUNET_SCHEDULER_NO_TASK)
58   {
59     GNUNET_SCHEDULER_cancel (die_task);
60     die_task = GNUNET_SCHEDULER_NO_TASK;
61   }
62   die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
63 }
64
65 static void
66 delay (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
67 {
68   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Shutdown ATS\n");
69   GNUNET_ATS_scheduling_done (ats);
70   ats = NULL;
71   if (die_task != GNUNET_SCHEDULER_NO_TASK)
72   {
73     GNUNET_SCHEDULER_cancel (die_task);
74     die_task = GNUNET_SCHEDULER_NO_TASK;
75   }
76   ret = 0;
77 }
78
79 static void
80 address_suggest_cb (void *cls, const struct GNUNET_HELLO_Address *address,
81                     struct Session *session,
82                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
83                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
84                     const struct GNUNET_ATS_Information *ats,
85                     uint32_t ats_count)
86 {
87   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Received address without asking for it!\n");
88   end_badly_now ();
89 }
90
91
92 static void
93 run (void *cls, 
94      const struct GNUNET_CONFIGURATION_Handle *cfg,
95      struct GNUNET_TESTING_Peer *peer)
96 {
97   ret = 1;
98   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
99
100   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Initializing ATS\n");
101   ats = GNUNET_ATS_scheduling_init (cfg, &address_suggest_cb, NULL);
102   if (ats == NULL)
103   {
104     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Failed to initialize ATS\n");
105     end_badly_now ();
106     return;
107   }
108   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Waiting for %llu sec\n", (long long unsigned int) DELAY.rel_value);
109   wait_task = GNUNET_SCHEDULER_add_delayed (DELAY, &delay, NULL);
110 }
111
112
113 int
114 main (int argc, char *argv[])
115 {
116   if (0 != GNUNET_TESTING_peer_run ("test_ats_api_scheduling",
117                                     "test_ats_api.conf",
118                                     &run, NULL))
119     return 1;
120   return ret;
121 }
122
123 /* end of file test_ats_api_scheduling.c */