hxing
[oweals/gnunet.git] / src / core / test_core_api_start_only.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 transport/test_core_api_start_only.c
22  * @brief testcase for core_api.c that only starts two peers,
23  *        connects to the core service and shuts down again
24  */
25 #include "platform.h"
26 #include "gnunet_common.h"
27 #include "gnunet_arm_service.h"
28 #include "gnunet_core_service.h"
29 #include "gnunet_getopt_lib.h"
30 #include "gnunet_os_lib.h"
31 #include "gnunet_program_lib.h"
32 #include "gnunet_scheduler_lib.h"
33
34 #define VERBOSE GNUNET_EXTRA_LOGGING
35
36 #define TIMEOUT 3
37
38 #define START_ARM GNUNET_YES
39
40 #define MTYPE 12345
41
42 struct PeerContext
43 {
44   struct GNUNET_CONFIGURATION_Handle *cfg;
45   struct GNUNET_CORE_Handle *ch;
46   struct GNUNET_PeerIdentity id;
47 #if START_ARM
48   struct GNUNET_OS_Process *arm_proc;
49 #endif
50 };
51
52 static struct PeerContext p1;
53
54 static struct PeerContext p2;
55
56 static GNUNET_SCHEDULER_TaskIdentifier timeout_task_id;
57
58 static int ok;
59
60 #if VERBOSE
61 #define OKPP do { ok++; fprintf (stderr, "Now at stage %u at %s:%u\n", ok, __FILE__, __LINE__); } while (0)
62 #else
63 #define OKPP do { ok++; } while (0)
64 #endif
65
66
67
68 static void
69 connect_notify (void *cls, const struct GNUNET_PeerIdentity *peer,
70                 const struct GNUNET_TRANSPORT_ATS_Information *atsi)
71 {
72 }
73
74
75 static void
76 disconnect_notify (void *cls, const struct GNUNET_PeerIdentity *peer)
77 {
78 }
79
80
81 static int
82 inbound_notify (void *cls, const struct GNUNET_PeerIdentity *other,
83                 const struct GNUNET_MessageHeader *message,
84                 const struct GNUNET_TRANSPORT_ATS_Information *atsi)
85 {
86   return GNUNET_OK;
87 }
88
89
90 static int
91 outbound_notify (void *cls, const struct GNUNET_PeerIdentity *other,
92                  const struct GNUNET_MessageHeader *message,
93                  const struct GNUNET_TRANSPORT_ATS_Information *atsi)
94 {
95   return GNUNET_OK;
96 }
97
98
99 static struct GNUNET_CORE_MessageHandler handlers[] = {
100   {NULL, 0, 0}
101 };
102
103
104 static void
105 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
106 {
107   GNUNET_CORE_disconnect (p1.ch);
108   p1.ch = NULL;
109   GNUNET_CORE_disconnect (p2.ch);
110   p2.ch = NULL;
111   ok = 0;
112 }
113
114
115
116
117 static void
118 init_notify (void *cls, struct GNUNET_CORE_Handle *server,
119              const struct GNUNET_PeerIdentity *my_identity)
120 {
121   struct PeerContext *p = cls;
122
123   GNUNET_assert (server != NULL);
124   GNUNET_assert (p->ch == server);
125   if (cls == &p1)
126   {
127     /* connect p2 */
128     p2.ch =
129         GNUNET_CORE_connect (p2.cfg, 1, &p2, &init_notify, &connect_notify,
130                              &disconnect_notify, NULL, &inbound_notify,
131                              GNUNET_YES, &outbound_notify, GNUNET_YES,
132                              handlers);
133   }
134   else
135   {
136     GNUNET_assert (cls == &p2);
137     GNUNET_SCHEDULER_cancel (timeout_task_id);
138     GNUNET_SCHEDULER_add_now (&shutdown_task, NULL);
139   }
140 }
141
142
143 static void
144 setup_peer (struct PeerContext *p, const char *cfgname)
145 {
146   p->cfg = GNUNET_CONFIGURATION_create ();
147 #if START_ARM
148   p->arm_proc =
149       GNUNET_OS_start_process (NULL, NULL, "gnunet-service-arm",
150                                "gnunet-service-arm",
151 #if VERBOSE
152                                "-L", "DEBUG",
153 #endif
154                                "-c", cfgname, NULL);
155 #endif
156   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
157 }
158
159
160 static void
161 timeout_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
162 {
163   fprintf (stderr, "Timeout.\n");
164   if (p1.ch != NULL)
165   {
166     GNUNET_CORE_disconnect (p1.ch);
167     p1.ch = NULL;
168   }
169   if (p2.ch != NULL)
170   {
171     GNUNET_CORE_disconnect (p2.ch);
172     p2.ch = NULL;
173   }
174   ok = 42;
175 }
176
177
178
179 static void
180 run (void *cls, char *const *args, const char *cfgfile,
181      const struct GNUNET_CONFIGURATION_Handle *cfg)
182 {
183   GNUNET_assert (ok == 1);
184   OKPP;
185   setup_peer (&p1, "test_core_api_peer1.conf");
186   setup_peer (&p2, "test_core_api_peer2.conf");
187   timeout_task_id =
188       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
189                                     (GNUNET_TIME_UNIT_MINUTES, TIMEOUT),
190                                     &timeout_task, NULL);
191   p1.ch =
192       GNUNET_CORE_connect (p1.cfg, 1, &p1, &init_notify, &connect_notify,
193                            &disconnect_notify, NULL, &inbound_notify,
194                            GNUNET_YES, &outbound_notify, GNUNET_YES, handlers);
195 }
196
197
198 static void
199 stop_arm (struct PeerContext *p)
200 {
201   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stopping peer\n");
202 #if START_ARM
203   if (0 != GNUNET_OS_process_kill (p->arm_proc, SIGTERM))
204     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
205   if (GNUNET_OS_process_wait (p->arm_proc) != GNUNET_OK)
206     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "waitpid");
207   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ARM process %u stopped\n",
208               GNUNET_OS_process_get_pid (p->arm_proc));
209   GNUNET_OS_process_close (p->arm_proc);
210   p->arm_proc = NULL;
211 #endif
212   GNUNET_CONFIGURATION_destroy (p->cfg);
213 }
214
215
216 static int
217 check ()
218 {
219   char *const argv[] = { "test-core-api-start-only",
220     "-c",
221     "test_core_api_data.conf",
222 #if VERBOSE
223     "-L", "DEBUG",
224 #endif
225     NULL
226   };
227   struct GNUNET_GETOPT_CommandLineOption options[] = {
228     GNUNET_GETOPT_OPTION_END
229   };
230   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-core-peer-1");
231   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-core-peer-2");
232
233   ok = 1;
234   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
235                       "test-core-api-start-only", "nohelp", options, &run, &ok);
236   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Test finished\n");
237   stop_arm (&p1);
238   stop_arm (&p2);
239   return ok;
240 }
241
242 int
243 main (int argc, char *argv[])
244 {
245   int ret;
246
247   GNUNET_log_setup ("test-core-api-start-only",
248 #if VERBOSE
249                     "DEBUG",
250 #else
251                     "WARNING",
252 #endif
253                     NULL);
254   ret = check ();
255   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-core-peer-1");
256   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-core-peer-2");
257   return ret;
258 }
259
260 /* end of test_core_api_start_only.c */