-freeing addrinfo
[oweals/gnunet.git] / src / testing / test_testing_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 testing/test_testing_reconnect.c
22  * @brief testcase for functions to connect two peers in testing.c
23  */
24 #include "platform.h"
25 #include "gnunet_testing_lib.h"
26
27 #define VERBOSE GNUNET_YES
28
29 /**
30  * How long until we give up on connecting the peers?
31  */
32 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 300)
33
34 #define CONNECT_ATTEMPTS 3
35
36 static int ok;
37
38 static struct GNUNET_TESTING_Daemon *d1;
39
40 static struct GNUNET_TESTING_Daemon *d2;
41
42 static struct GNUNET_CONFIGURATION_Handle *c1;
43
44 static struct GNUNET_CONFIGURATION_Handle *c2;
45
46 static struct GNUNET_TESTING_ConnectContext *cc;
47
48 /**
49  * How many start-connect-stop iterations should we do?
50  */
51 #define NUM_PHASES 2
52
53 static int phase;
54
55 /**
56  * Run the next phase of starting daemons, connecting them and
57  * stopping them again.
58  */
59 static void
60 run_phase (void);
61
62 static void
63 end2_cb (void *cls, const char *emsg)
64 {
65
66   if (emsg != NULL)
67   {
68     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Ending with error: %s\n", emsg);
69     ok = 1;
70   }
71   else
72   {
73     if (phase < NUM_PHASES)
74     {
75       FPRINTF (stderr, "%s",  ".");
76       run_phase ();
77       return;
78     }
79     FPRINTF (stderr, "%s",  ".\n");
80 #if VERBOSE
81     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
82                 "Both daemons terminated, will now exit.\n");
83 #endif
84     ok = 0;
85   }
86 }
87
88 static void
89 end1_cb (void *cls, const char *emsg)
90 {
91   if (emsg != NULL)
92   {
93     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Stopping daemon 1 gave: %s\n",
94                 emsg);
95     ok = 1;
96   }
97   else
98   {
99     ok = 0;
100   }
101   if (d2 != NULL)
102   {
103     GNUNET_TESTING_daemon_stop (d2, TIMEOUT, &end2_cb, NULL,
104                                 (phase == NUM_PHASES) ? GNUNET_YES : GNUNET_NO,
105                                 GNUNET_NO);
106     d2 = NULL;
107   }
108 }
109
110 static void
111 finish_testing (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
112 {
113   GNUNET_TESTING_daemon_stop (d1, TIMEOUT, &end1_cb, NULL,
114                               (phase == NUM_PHASES) ? GNUNET_YES : GNUNET_NO,
115                               GNUNET_NO);
116   d1 = NULL;
117 }
118
119
120 static void
121 my_connect_complete (void *cls, const struct GNUNET_PeerIdentity *first,
122                      const struct GNUNET_PeerIdentity *second,
123                      unsigned int distance,
124                      const struct GNUNET_CONFIGURATION_Handle *first_cfg,
125                      const struct GNUNET_CONFIGURATION_Handle *second_cfg,
126                      struct GNUNET_TESTING_Daemon *first_daemon,
127                      struct GNUNET_TESTING_Daemon *second_daemon,
128                      const char *emsg)
129 {
130   cc = NULL;
131 #if VERBOSE
132   FPRINTF (stderr, "Peer %s ", GNUNET_i2s (first));
133   FPRINTF (stderr, "connected to %s\n", GNUNET_i2s (second));
134 #endif
135   GNUNET_SCHEDULER_add_now (&finish_testing, NULL);
136 }
137
138
139
140
141 static void
142 my_cb2 (void *cls, const struct GNUNET_PeerIdentity *id,
143         const struct GNUNET_CONFIGURATION_Handle *cfg,
144         struct GNUNET_TESTING_Daemon *d, const char *emsg)
145 {
146   if (emsg != NULL)
147   {
148     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Starting daemon 2 gave: %s\n",
149                 emsg);
150     GNUNET_assert (0);
151     return;
152   }
153   GNUNET_assert (id != NULL);
154 #if VERBOSE
155   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Daemon `%s' started.\n",
156               GNUNET_i2s (id));
157 #endif
158   cc = GNUNET_TESTING_daemons_connect (d1, d2, TIMEOUT, CONNECT_ATTEMPTS,
159                                        GNUNET_YES, &my_connect_complete, NULL);
160 }
161
162
163 static void
164 my_cb1 (void *cls, const struct GNUNET_PeerIdentity *id,
165         const struct GNUNET_CONFIGURATION_Handle *cfg,
166         struct GNUNET_TESTING_Daemon *d, const char *emsg)
167 {
168   if (emsg != NULL)
169   {
170     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Starting daemon 1 gave: %s\n",
171                 emsg);
172     GNUNET_assert (0);
173     return;
174   }
175   GNUNET_assert (id != NULL);
176 #if VERBOSE
177   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Daemon `%s' started.\n",
178               GNUNET_i2s (id));
179 #endif
180   d2 = GNUNET_TESTING_daemon_start (c2, TIMEOUT, GNUNET_NO, NULL, NULL, 0, NULL,
181                                     NULL, NULL, &my_cb2, NULL);
182   GNUNET_assert (d2 != NULL);
183 }
184
185
186 static void
187 run (void *cls, char *const *args, const char *cfgfile,
188      const struct GNUNET_CONFIGURATION_Handle *cfg)
189 {
190   ok = 1;
191 #if VERBOSE
192   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemon.\n");
193 #endif
194   c1 = GNUNET_CONFIGURATION_create ();
195   GNUNET_assert (GNUNET_OK ==
196                  GNUNET_CONFIGURATION_load (c1,
197                                             "test_testing_connect_peer1.conf"));
198   c2 = GNUNET_CONFIGURATION_create ();
199   GNUNET_assert (GNUNET_OK ==
200                  GNUNET_CONFIGURATION_load (c2,
201                                             "test_testing_connect_peer2.conf"));
202   run_phase ();
203 }
204
205 static void
206 run_phase ()
207 {
208   phase++;
209   d1 = GNUNET_TESTING_daemon_start (c1, TIMEOUT, GNUNET_NO, NULL, NULL, 0, NULL,
210                                     NULL, NULL, &my_cb1, NULL);
211   GNUNET_assert (d1 != NULL);
212 }
213
214 static int
215 check ()
216 {
217   char *const argv[] = { "test-testing-reconnect",
218     "-c",
219     "test_testing_data.conf",
220 #if VERBOSE
221     "-L", "DEBUG",
222 #endif
223     NULL
224   };
225   struct GNUNET_GETOPT_CommandLineOption options[] = {
226     GNUNET_GETOPT_OPTION_END
227   };
228   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
229                       "test-testing-reconnect", "nohelp", options, &run, &ok);
230   return ok;
231 }
232
233 int
234 main (int argc, char *argv[])
235 {
236   int ret;
237
238   GNUNET_log_setup ("test-testing-reconnect",
239 #if VERBOSE
240                     "DEBUG",
241 #else
242                     "WARNING",
243 #endif
244                     NULL);
245   ret = check ();
246   return ret;
247 }
248
249 /* end of test_testing_reconnect.c */