-minor cleanup
[oweals/gnunet.git] / src / arm / test_gnunet_service_manager.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_manager.c (A mockup testcase, not functionally complete)
22  * @brief testcase for gnunet-service-manager.c
23  */
24
25 #include "platform.h"
26 #include "gnunet_arm_service.h"
27 #include "gnunet_resolver_service.h"
28 #include "gnunet_os_lib.h"
29 #include "gnunet_program_lib.h"
30
31 /**
32  * Timeout for starting services, very short because of the strange way start works
33  * (by checking if running before starting, so really this time is always waited on
34  * startup (annoying)).
35  */
36 #define START_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, 50)
37
38 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
39
40 static int ret = 1;
41
42
43 static const struct GNUNET_CONFIGURATION_Handle *cfg;
44
45 static struct GNUNET_ARM_Handle *arm;
46
47
48 static void
49 arm_stopped (void *cls, enum GNUNET_ARM_ProcessStatus success)
50 {
51   if (success != GNUNET_ARM_PROCESS_DOWN)
52     {
53       GNUNET_break (0);
54       ret = 4;
55     }
56   else
57     {
58       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ARM stopped\n");
59     }
60   GNUNET_ARM_disconnect (arm);
61   arm = NULL;
62 }
63
64
65 static void
66 hostNameResolveCB (void *cls, const struct sockaddr *addr, socklen_t addrlen)
67 {
68   if ((ret == 0) || (ret == 4))
69     return;
70   if (NULL == addr)
71     {
72       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Name not resolved!\n");
73       GNUNET_ARM_stop_service (arm, "arm", TIMEOUT, &arm_stopped, NULL);
74       ret = 3;
75       return;
76     }
77   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
78               "Resolved hostname, now stopping ARM\n");
79   ret = 0;
80   GNUNET_ARM_stop_service (arm, "arm", TIMEOUT, &arm_stopped, NULL);
81 }
82
83
84 static void
85 arm_notify (void *cls, enum GNUNET_ARM_ProcessStatus success)
86 {
87   if (success != GNUNET_ARM_PROCESS_STARTING)
88     {
89       GNUNET_break (0);
90       ret = 1;
91       return;
92     }
93   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
94               "Trying to resolve our own hostname!\n");
95   /* connect to the resolver service */
96   if (NULL ==
97       GNUNET_RESOLVER_hostname_resolve (AF_UNSPEC, TIMEOUT,
98                                         &hostNameResolveCB, NULL))
99     {
100       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
101                   "Unable initiate connection to resolver service\n");
102       ret = 2;
103       GNUNET_ARM_stop_service (arm, "arm", TIMEOUT, &arm_stopped, NULL);
104     }
105 }
106
107
108 static void
109 run (void *cls, char *const *args, const char *cfgfile,
110      const struct GNUNET_CONFIGURATION_Handle *c)
111 {
112   cfg = c;
113   arm = GNUNET_ARM_connect (cfg, NULL);
114   GNUNET_ARM_start_service (arm, "arm",
115                             GNUNET_OS_INHERIT_STD_OUT_AND_ERR, START_TIMEOUT, 
116                             &arm_notify, NULL);
117 }
118
119
120 static void
121 check ()
122 {
123   char *const argv[] = {
124     "test-gnunet-service-manager",
125     "-c", "test_arm_api_data.conf",
126     NULL
127   };
128   struct GNUNET_GETOPT_CommandLineOption options[] = {
129     GNUNET_GETOPT_OPTION_END
130   };
131   GNUNET_assert (GNUNET_OK ==
132                  GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
133                                      argv, "test-gnunet-service-manager",
134                                      "nohelp", options, &run, NULL));
135 }
136
137
138 int
139 main (int argc, char *argv[])
140 {
141   char hostname[GNUNET_OS_get_hostname_max_length () + 1];
142
143   if (0 != gethostname (hostname, sizeof (hostname) - 1))
144     {
145       GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
146                            "gethostname");
147       FPRINTF (stderr,
148                "%s", "Failed to determine my own hostname, testcase not run.\n");
149       return 0;
150     }
151   if (NULL == gethostbyname (hostname))
152     {
153       FPRINTF (stderr,
154                "Failed to resolve my hostname `%s', testcase not run.\n",
155                hostname);
156       return 0;
157     }
158   GNUNET_log_setup ("test-gnunet-service-manager",
159                     "WARNING",
160                     NULL);
161   check ();
162   return ret;
163 }