fixes
[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 2, 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_program_lib.h"
29
30 /**
31  * Timeout for starting services, very short because of the strange way start works
32  * (by checking if running before starting, so really this time is always waited on
33  * startup (annoying)).
34  */
35 #define START_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, 50)
36
37 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
38
39 #define START_ARM GNUNET_YES
40
41 #define VERBOSE GNUNET_YES
42
43 static int ret = 1;
44
45 static struct GNUNET_SCHEDULER_Handle *sched;
46
47 static const struct GNUNET_CONFIGURATION_Handle *cfg;
48
49 #if START_ARM
50 static struct GNUNET_ARM_Handle *arm;
51 #endif
52
53 static void
54 arm_stopped (void *cls, int success)
55 {
56   if (success != GNUNET_NO)       
57     {
58       GNUNET_break (0);
59       ret = 4;
60     }
61   GNUNET_ARM_disconnect (arm);
62   arm = NULL;
63 }
64
65 static void 
66 hostNameResolveCB(void *cls, 
67                   const struct sockaddr *addr, 
68                   socklen_t addrlen)
69 {
70   if ( (ret == 0) || (ret == 4) )
71     return;
72   if (NULL == addr)
73     {
74       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 
75                   "Name not resolved!\n");
76 #if START_ARM
77       GNUNET_ARM_stop_service (arm, "arm", TIMEOUT, &arm_stopped, NULL);
78 #endif
79       ret = 3;
80       return;
81     }  
82   ret = 0;
83 #if START_ARM
84   GNUNET_ARM_stop_service (arm, "arm", TIMEOUT, &arm_stopped, NULL);
85 #endif
86 }
87
88
89 static void
90 arm_notify (void *cls, int success)
91 {
92   if (success != GNUNET_YES)
93     {
94       GNUNET_break (0);
95       ret = 1;
96       return;
97     }
98   /* connect to the resolver service */
99   if (NULL == GNUNET_RESOLVER_hostname_resolve (sched,
100                                                 cfg, AF_UNSPEC,
101                                                 TIMEOUT,
102                                                 &hostNameResolveCB,
103                                                 NULL))
104     {
105       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
106                   "Unable to resolve our own hostname!\n");
107       ret = 2;
108 #if START_ARM
109       GNUNET_ARM_stop_service (arm, "arm", TIMEOUT, &arm_stopped, NULL);
110 #endif
111     }
112 }
113
114
115 static void
116 run(void *cls, 
117     struct GNUNET_SCHEDULER_Handle *s, 
118     char * const *args,
119     const char *cfgfile, 
120     const struct GNUNET_CONFIGURATION_Handle *c)
121 {
122   cfg = c;
123   sched = s;    
124 #if START_ARM
125   arm = GNUNET_ARM_connect (cfg, sched, NULL);
126   GNUNET_ARM_start_service (arm, "arm", START_TIMEOUT, &arm_notify, NULL);
127 #else
128   arm_notify (NULL, GNUNET_YES);
129 #endif
130 }
131
132
133 static void
134 check()
135 {
136   char *const argv[] = {
137     "test-gnunet-service-manager",
138     "-c", "test_arm_api_data.conf",
139 #if VERBOSE
140     "-L", "DEBUG",
141 #endif
142     NULL
143   };
144   struct GNUNET_GETOPT_CommandLineOption options[] = {
145     GNUNET_GETOPT_OPTION_END
146   };
147   GNUNET_assert (GNUNET_OK ==
148                  GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
149                                      argv,
150                                      "test-gnunet-service-manager",
151                                      "nohelp", options, &run, NULL));
152 }
153
154
155 int
156 main (int argc, char *argv[])
157 {
158   GNUNET_log_setup("test-gnunet-service-manager",
159 #if VERBOSE
160                    "DEBUG",
161 #else
162                    "WARNING",
163 #endif
164                    NULL);
165   check();
166   return ret;
167 }