-test cleanup
[oweals/gnunet.git] / src / arm / test_gnunet_service_arm.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009 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 arm/test_gnunet_service_arm.c 
22  * @brief testcase for gnunet-service-arm.c; tests ARM by making it start the resolver
23  * @author Safey
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_arm_service.h"
28 #include "gnunet_resolver_service.h"
29 #include "gnunet_os_lib.h"
30 #include "gnunet_program_lib.h"
31
32 /**
33  * Timeout for starting services, very short because of the strange way start works
34  * (by checking if running before starting, so really this time is always waited on
35  * startup (annoying)).
36  */
37 #define START_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, 50)
38
39 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
40
41 static int ret = 1;
42
43 static int resolved_ok = 0;
44
45 static int asked_for_a_list = 0;
46
47 static struct GNUNET_ARM_Handle *arm;
48
49 static void
50 trigger_disconnect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
51 {
52   GNUNET_ARM_disconnect_and_free (arm);
53   arm = NULL;
54 }
55
56
57 static void
58 arm_stop_cb (void *cls, 
59              struct GNUNET_ARM_Handle *h, 
60              enum GNUNET_ARM_RequestStatus status, 
61              const char *servicename, 
62              enum GNUNET_ARM_Result result)
63 {
64   GNUNET_break (status == GNUNET_ARM_REQUEST_SENT_OK);
65   GNUNET_break (result == GNUNET_ARM_RESULT_STOPPING);
66   if (result != GNUNET_ARM_RESULT_STOPPING)
67     ret = 4;
68   GNUNET_SCHEDULER_add_now (trigger_disconnect, NULL);
69 }
70
71
72 static void
73 service_list (void *cls, struct GNUNET_ARM_Handle *arm,
74               enum GNUNET_ARM_RequestStatus rs,
75               unsigned int count, const char *const*list)
76 {
77   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
78               "%u services are are currently running\n", 
79               count);
80   GNUNET_break (count == 1);
81   GNUNET_break (0 == strcasecmp (list[0], "resolver (gnunet-service-resolver)"));
82   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got service list, now stopping arm\n");
83   ret = 0;
84   GNUNET_ARM_request_service_stop (arm, "arm", TIMEOUT, arm_stop_cb, NULL);
85 }
86
87
88 static void
89 hostNameResolveCB (void *cls, const struct sockaddr *addr, socklen_t addrlen)
90 {
91   if ((ret == 0) || (ret == 4) || (resolved_ok == 1))
92     return;
93   if (NULL == addr)
94   {
95     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Name not resolved!\n");
96     ret = 3;
97     GNUNET_ARM_request_service_stop (arm, "arm", TIMEOUT, arm_stop_cb, NULL);
98   }
99   else if (asked_for_a_list == 0)
100   {
101     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
102         "Resolved hostname, now checking the service list\n");
103     GNUNET_ARM_request_service_list (arm, TIMEOUT, service_list, NULL);
104     asked_for_a_list = 1;
105     resolved_ok = 1;
106   }
107 }
108
109
110 static void
111 arm_start_cb (void *cls, 
112               struct GNUNET_ARM_Handle *h, 
113               enum GNUNET_ARM_RequestStatus status, 
114               const char *servicename, 
115               enum GNUNET_ARM_Result result)
116 {
117   GNUNET_break (status == GNUNET_ARM_REQUEST_SENT_OK);
118   GNUNET_break (result == GNUNET_ARM_RESULT_STARTING);
119   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
120       "Trying to resolve our own hostname!\n");
121   /* connect to the resolver service */
122   if (NULL == GNUNET_RESOLVER_hostname_resolve (
123       AF_UNSPEC, TIMEOUT, &hostNameResolveCB, NULL))
124   {
125     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
126         "Unable initiate connection to resolver service\n");
127     ret = 2;
128     GNUNET_ARM_request_service_stop (arm, "arm", TIMEOUT, arm_stop_cb, NULL);
129   }
130 }
131
132
133 static void
134 run (void *cls, char *const *args, const char *cfgfile,
135      const struct GNUNET_CONFIGURATION_Handle *c)
136 {
137   char *armconfig;
138
139   if (NULL != cfgfile)
140   {
141     if (GNUNET_OK !=
142         GNUNET_CONFIGURATION_get_value_filename (c, "arm", "CONFIG",
143                                                &armconfig))
144     {
145       GNUNET_CONFIGURATION_set_value_string ((struct GNUNET_CONFIGURATION_Handle
146                                               *) c, "arm", "CONFIG",
147                                              cfgfile);
148     }
149     else
150       GNUNET_free (armconfig);
151   }
152   arm = GNUNET_ARM_connect (c, NULL, NULL);
153   GNUNET_ARM_request_service_start (arm, "arm",
154       GNUNET_OS_INHERIT_STD_OUT_AND_ERR, START_TIMEOUT, arm_start_cb, NULL);
155 }
156
157
158 int
159 main (int argc, char *av[])
160 {
161   static char *const argv[] = {
162     "test-gnunet-service-arm",
163     "-c", "test_arm_api_data.conf",
164     NULL
165   };
166   static struct GNUNET_GETOPT_CommandLineOption options[] = {
167     GNUNET_GETOPT_OPTION_END
168   };
169   char hostname[GNUNET_OS_get_hostname_max_length () + 1];
170
171   if (0 != gethostname (hostname, sizeof (hostname) - 1))
172     {
173       GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
174                            "gethostname");
175       FPRINTF (stderr,
176                "%s", "Failed to determine my own hostname, testcase not run.\n");
177       return 0;
178     }
179   if (NULL == gethostbyname (hostname))
180     {
181       FPRINTF (stderr,
182                "Failed to resolve my hostname `%s', testcase not run.\n",
183                hostname);
184       return 0;
185     }
186   GNUNET_log_setup ("test-gnunet-service-arm",
187                     "WARNING",
188                     NULL);
189   GNUNET_break (GNUNET_OK ==
190                 GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
191                                     argv, "test-gnunet-service-arm",
192                                     "nohelp", options, &run, NULL));
193   return ret;
194 }
195
196 /* end of test_gnunet_service_arm.c */