towards reviving priorities in core API, this time with enum to make classes clearer
[oweals/gnunet.git] / src / hostlist / test_gnunet_daemon_hostlist_reconnect.c
1 /*
2      This file is part of GNUnet
3      (C) 2010 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 hostlist/test_gnunet_daemon_hostlist_reconnect.c
22  * @brief test for gnunet_daemon_hostslist.c; tries to re-start the peers
23  *        and connect a second time
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28 #include "gnunet_arm_service.h"
29 #include "gnunet_transport_service.h"
30
31 /**
32  * How long until we give up on transmitting the message?
33  */
34 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 150)
35
36 static int ok;
37
38 static GNUNET_SCHEDULER_TaskIdentifier timeout_task;
39
40 struct PeerContext
41 {
42   struct GNUNET_CONFIGURATION_Handle *cfg;
43   struct GNUNET_TRANSPORT_Handle *th;
44   struct GNUNET_MessageHeader *hello;
45   struct GNUNET_TRANSPORT_GetHelloHandle *ghh;
46   struct GNUNET_OS_Process *arm_proc;
47 };
48
49 static struct PeerContext p1;
50
51 static struct PeerContext p2;
52
53
54 static void
55 clean_up (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
56 {
57   if (NULL != p1.ghh)
58   {
59     GNUNET_TRANSPORT_get_hello_cancel (p1.ghh);
60     p1.ghh = NULL;
61   }
62   if (p1.th != NULL)
63   {
64     GNUNET_TRANSPORT_disconnect (p1.th);
65     p1.th = NULL;
66   }
67   if (NULL != p2.ghh)
68   {
69     GNUNET_TRANSPORT_get_hello_cancel (p2.ghh);
70     p2.ghh = NULL;
71   }
72   if (p2.th != NULL)
73   {
74     GNUNET_TRANSPORT_disconnect (p2.th);
75     p2.th = NULL;
76   }
77   GNUNET_SCHEDULER_shutdown ();
78 }
79
80 /**
81  * Timeout, give up.
82  */
83 static void
84 timeout_error (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
85 {
86   timeout_task = GNUNET_SCHEDULER_NO_TASK;
87   GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
88               "Timeout trying to connect peers, test failed.\n");
89   clean_up (NULL, tc);
90 }
91
92
93 /**
94  * Function called to notify transport users that another
95  * peer connected to us.
96  *
97  * @param cls closure
98  * @param peer the peer that connected
99  * @param latency current latency of the connection
100  * @param distance in overlay hops, as given by transport plugin
101  */
102 static void
103 notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer)
104 {
105   if (peer == NULL)
106     return;
107   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peers connected, shutting down.\n");
108   ok = 0;
109   if (timeout_task != GNUNET_SCHEDULER_NO_TASK)
110   {
111     GNUNET_SCHEDULER_cancel (timeout_task);
112     timeout_task = GNUNET_SCHEDULER_NO_TASK;
113   }
114   GNUNET_SCHEDULER_add_now (&clean_up, NULL);
115 }
116
117
118 static void
119 process_hello (void *cls, const struct GNUNET_MessageHeader *message)
120 {
121   struct PeerContext *p = cls;
122
123   GNUNET_TRANSPORT_get_hello_cancel (p->ghh);
124   p->ghh = NULL;
125   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
126               "Received HELLO, starting hostlist service.\n");
127 }
128
129
130 static void
131 setup_peer (struct PeerContext *p, const char *cfgname)
132 {
133   char *binary;
134
135   binary = GNUNET_OS_get_libexec_binary_path ("gnunet-service-arm");
136   p->cfg = GNUNET_CONFIGURATION_create ();
137   p->arm_proc =
138     GNUNET_OS_start_process (GNUNET_YES, GNUNET_OS_INHERIT_STD_OUT_AND_ERR, NULL, NULL, binary,
139                                "gnunet-service-arm",
140                                "-c", cfgname, NULL);
141   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
142   p->th =
143       GNUNET_TRANSPORT_connect (p->cfg, NULL, p, NULL, &notify_connect, NULL);
144   GNUNET_assert (p->th != NULL);
145   p->ghh = GNUNET_TRANSPORT_get_hello (p->th, &process_hello, p);
146   GNUNET_free (binary);
147 }
148
149
150 static void
151 waitpid_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
152 {
153   struct PeerContext *p = cls;
154
155   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Killing ARM process.\n");
156   if (0 != GNUNET_OS_process_kill (p->arm_proc, GNUNET_TERM_SIG))
157     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
158   if (GNUNET_OS_process_wait (p->arm_proc) != GNUNET_OK)
159     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "waitpid");
160   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ARM process %u stopped\n",
161               GNUNET_OS_process_get_pid (p->arm_proc));
162   GNUNET_OS_process_destroy (p->arm_proc);
163   p->arm_proc = NULL;
164   GNUNET_CONFIGURATION_destroy (p->cfg);
165 }
166
167
168 static void
169 stop_arm (struct PeerContext *p)
170 {
171   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Asking ARM to stop core service\n");
172   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &waitpid_task, p);
173 }
174
175
176 /**
177  * Try again to connect to transport service.
178  */
179 static void
180 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
181 {
182   stop_arm (&p1);
183   stop_arm (&p2);
184 }
185
186
187 static void
188 run (void *cls, char *const *args, const char *cfgfile,
189      const struct GNUNET_CONFIGURATION_Handle *cfg)
190 {
191   GNUNET_assert (ok == 1);
192   ok++;
193   timeout_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &timeout_error, NULL);
194   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
195                                 NULL);
196   setup_peer (&p1, "test_gnunet_daemon_hostlist_peer1.conf");
197   setup_peer (&p2, "test_gnunet_daemon_hostlist_peer2.conf");
198 }
199
200
201 int
202 main (int argcx, char *argvx[])
203 {
204   static char *const argv[] = {
205     "test-gnunet-daemon-hostlist",
206     "-c", "test_gnunet_daemon_hostlist_data.conf",
207     NULL
208   };
209   static struct GNUNET_GETOPT_CommandLineOption options[] = {
210     GNUNET_GETOPT_OPTION_END
211   };
212
213   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-hostlist-peer-1");
214   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-hostlist-peer-2");
215   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-hostlist-peer-3");
216   GNUNET_log_setup ("test-gnunet-daemon-hostlist",
217                     "WARNING",
218                     NULL);
219   ok = 1;
220   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
221                       "test-gnunet-daemon-hostlist", "nohelp", options, &run,
222                       &ok);
223   if (0 == ok)
224   {
225     FPRINTF (stderr, "%s",  ".");
226     /* now do it again */
227     ok = 1;
228     GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
229                         "test-gnunet-daemon-hostlist", "nohelp", options, &run,
230                         &ok);
231     FPRINTF (stderr, "%s",  ".\n");
232   }
233   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-hostlist-peer-1");
234   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-hostlist-peer-2");
235   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-hostlist-peer-3");
236   return ok;
237 }
238
239 /* end of test_gnunet_daemon_hostlist_reconnect.c */