Fixed reconnect
[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, ".");
76       run_phase ();
77       return;
78     }
79     fprintf (stderr, ".\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
102   GNUNET_TESTING_daemon_stop (d2, TIMEOUT, &end2_cb, NULL,
103                               (phase == NUM_PHASES) ? GNUNET_YES : GNUNET_NO,
104                               GNUNET_NO);
105   d2 = NULL;
106 }
107
108 static void
109 finish_testing (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
110 {
111   GNUNET_TESTING_daemon_stop (d1, TIMEOUT, &end1_cb, NULL,
112                               (phase == NUM_PHASES) ? GNUNET_YES : GNUNET_NO,
113                               GNUNET_NO);
114   d1 = NULL;
115 }
116
117
118 static void
119 my_connect_complete (void *cls, const struct GNUNET_PeerIdentity *first,
120                      const struct GNUNET_PeerIdentity *second,
121                      unsigned int distance,
122                      const struct GNUNET_CONFIGURATION_Handle *first_cfg,
123                      const struct GNUNET_CONFIGURATION_Handle *second_cfg,
124                      struct GNUNET_TESTING_Daemon *first_daemon,
125                      struct GNUNET_TESTING_Daemon *second_daemon,
126                      const char *emsg)
127 {
128   cc = NULL;
129 #if VERBOSE
130   fprintf (stderr, "Peer %s ", GNUNET_i2s (first));
131   fprintf (stderr, "connected to %s\n", GNUNET_i2s (second));
132 #endif
133   GNUNET_SCHEDULER_add_now (&finish_testing, NULL);
134 }
135
136
137
138
139 static void
140 my_cb2 (void *cls, const struct GNUNET_PeerIdentity *id,
141         const struct GNUNET_CONFIGURATION_Handle *cfg,
142         struct GNUNET_TESTING_Daemon *d, const char *emsg)
143 {
144   GNUNET_assert (id != NULL);
145 #if VERBOSE
146   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Daemon `%s' started.\n",
147               GNUNET_i2s (id));
148 #endif
149   cc = GNUNET_TESTING_daemons_connect (d1, d2, TIMEOUT, CONNECT_ATTEMPTS,
150                                        GNUNET_YES, &my_connect_complete, NULL);
151 }
152
153
154 static void
155 my_cb1 (void *cls, const struct GNUNET_PeerIdentity *id,
156         const struct GNUNET_CONFIGURATION_Handle *cfg,
157         struct GNUNET_TESTING_Daemon *d, const char *emsg)
158 {
159   GNUNET_assert (id != NULL);
160 #if VERBOSE
161   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Daemon `%s' started.\n",
162               GNUNET_i2s (id));
163 #endif
164   d2 = GNUNET_TESTING_daemon_start (c2, TIMEOUT, GNUNET_NO, NULL, NULL, 0, NULL,
165                                     NULL, NULL, &my_cb2, NULL);
166   GNUNET_assert (d2 != NULL);
167 }
168
169
170 static void
171 run (void *cls, char *const *args, const char *cfgfile,
172      const struct GNUNET_CONFIGURATION_Handle *cfg)
173 {
174   ok = 1;
175 #if VERBOSE
176   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemon.\n");
177 #endif
178   c1 = GNUNET_CONFIGURATION_create ();
179   GNUNET_CONFIGURATION_parse (c1, "test_testing_connect_peer1.conf");
180   c2 = GNUNET_CONFIGURATION_create ();
181   GNUNET_CONFIGURATION_parse (c2, "test_testing_connect_peer2.conf");
182   run_phase ();
183 }
184
185 static void
186 run_phase ()
187 {
188   phase++;
189   d1 = GNUNET_TESTING_daemon_start (c1, TIMEOUT, GNUNET_NO, NULL, NULL, 0, NULL,
190                                     NULL, NULL, &my_cb1, NULL);
191   GNUNET_assert (d1 != NULL);
192 }
193
194 static int
195 check ()
196 {
197   char *const argv[] = { "test-testing-reconnect",
198     "-c",
199     "test_testing_data.conf",
200 #if VERBOSE
201     "-L", "DEBUG",
202 #endif
203     NULL
204   };
205   struct GNUNET_GETOPT_CommandLineOption options[] = {
206     GNUNET_GETOPT_OPTION_END
207   };
208   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
209                       "test-testing-reconnect", "nohelp", options, &run, &ok);
210   return ok;
211 }
212
213 int
214 main (int argc, char *argv[])
215 {
216   int ret;
217
218   GNUNET_log_setup ("test-testing-reconnect",
219 #if VERBOSE
220                     "DEBUG",
221 #else
222                     "WARNING",
223 #endif
224                     NULL);
225   ret = check ();
226   return ret;
227 }
228
229 /* end of test_testing_reconnect.c */