480bafdc669508bcc4ec5419b5ec31fe7fb70346
[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 /**
47  * How many start-connect-stop iterations should we do?
48  */
49 #define NUM_PHASES 2
50
51 static int phase;
52
53 /**
54  * Run the next phase of starting daemons, connecting them and
55  * stopping them again.
56  */
57 static void run_phase ();
58
59 static void
60 end2_cb (void *cls, const char *emsg)
61 {
62
63   if (emsg != NULL)
64   {
65     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Ending with error: %s\n", emsg);
66     ok = 1;
67   }
68   else
69   {
70     if (phase < NUM_PHASES)
71     {
72       fprintf (stderr, ".");
73       run_phase ();
74       return;
75     }
76     fprintf (stderr, ".\n");
77 #if VERBOSE
78     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
79                 "Both daemons terminated, will now exit.\n");
80 #endif
81     ok = 0;
82   }
83 }
84
85 static void
86 end1_cb (void *cls, const char *emsg)
87 {
88   if (emsg != NULL)
89   {
90     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Stopping daemon 1 gave: %s\n",
91                 emsg);
92     ok = 1;
93   }
94   else
95   {
96     ok = 0;
97   }
98
99   GNUNET_TESTING_daemon_stop (d2, TIMEOUT, &end2_cb, NULL,
100                               (phase == NUM_PHASES) ? GNUNET_YES : GNUNET_NO,
101                               GNUNET_NO);
102   d2 = NULL;
103 }
104
105 static void
106 finish_testing (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
107 {
108   GNUNET_TESTING_daemon_stop (d1, TIMEOUT, &end1_cb, NULL,
109                               (phase == NUM_PHASES) ? GNUNET_YES : GNUNET_NO,
110                               GNUNET_NO);
111   d1 = NULL;
112 }
113
114
115 static void
116 my_connect_complete (void *cls, const struct GNUNET_PeerIdentity *first,
117                      const struct GNUNET_PeerIdentity *second,
118                      unsigned int distance,
119                      const struct GNUNET_CONFIGURATION_Handle *first_cfg,
120                      const struct GNUNET_CONFIGURATION_Handle *second_cfg,
121                      struct GNUNET_TESTING_Daemon *first_daemon,
122                      struct GNUNET_TESTING_Daemon *second_daemon,
123                      const char *emsg)
124 {
125 #if VERBOSE
126   fprintf (stderr, "Peer %s ", GNUNET_i2s (first));
127   fprintf (stderr, "connected to %s\n", GNUNET_i2s (second));
128 #endif
129   GNUNET_SCHEDULER_add_now (&finish_testing, NULL);
130 }
131
132
133
134
135 static void
136 my_cb2 (void *cls, const struct GNUNET_PeerIdentity *id,
137         const struct GNUNET_CONFIGURATION_Handle *cfg,
138         struct GNUNET_TESTING_Daemon *d, const char *emsg)
139 {
140   GNUNET_assert (id != NULL);
141 #if VERBOSE
142   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Daemon `%s' started.\n",
143               GNUNET_i2s (id));
144 #endif
145   GNUNET_TESTING_daemons_connect (d1, d2, TIMEOUT, CONNECT_ATTEMPTS, GNUNET_YES,
146                                   &my_connect_complete, NULL);
147 }
148
149
150 static void
151 my_cb1 (void *cls, const struct GNUNET_PeerIdentity *id,
152         const struct GNUNET_CONFIGURATION_Handle *cfg,
153         struct GNUNET_TESTING_Daemon *d, const char *emsg)
154 {
155   GNUNET_assert (id != NULL);
156 #if VERBOSE
157   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Daemon `%s' started.\n",
158               GNUNET_i2s (id));
159 #endif
160   d2 = GNUNET_TESTING_daemon_start (c2, TIMEOUT, GNUNET_NO, NULL, NULL, 0, NULL,
161                                     NULL, NULL, &my_cb2, NULL);
162   GNUNET_assert (d2 != NULL);
163 }
164
165
166 static void
167 run (void *cls, char *const *args, const char *cfgfile,
168      const struct GNUNET_CONFIGURATION_Handle *cfg)
169 {
170   ok = 1;
171 #if VERBOSE
172   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemon.\n");
173 #endif
174   c1 = GNUNET_CONFIGURATION_create ();
175   GNUNET_CONFIGURATION_parse (c1, "test_testing_connect_peer1.conf");
176   c2 = GNUNET_CONFIGURATION_create ();
177   GNUNET_CONFIGURATION_parse (c2, "test_testing_connect_peer2.conf");
178   run_phase ();
179 }
180
181 static void
182 run_phase ()
183 {
184   phase++;
185   d1 = GNUNET_TESTING_daemon_start (c1, TIMEOUT, GNUNET_NO, NULL, NULL, 0, NULL,
186                                     NULL, NULL, &my_cb1, NULL);
187   GNUNET_assert (d1 != NULL);
188 }
189
190 static int
191 check ()
192 {
193   char *const argv[] = { "test-testing-reconnect",
194     "-c",
195     "test_testing_data.conf",
196 #if VERBOSE
197     "-L", "DEBUG",
198 #endif
199     NULL
200   };
201   struct GNUNET_GETOPT_CommandLineOption options[] = {
202     GNUNET_GETOPT_OPTION_END
203   };
204   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
205                       "test-testing-reconnect", "nohelp", options, &run, &ok);
206   return ok;
207 }
208
209 int
210 main (int argc, char *argv[])
211 {
212   int ret;
213
214   GNUNET_log_setup ("test-testing-reconnect",
215 #if VERBOSE
216                     "DEBUG",
217 #else
218                     "WARNING",
219 #endif
220                     NULL);
221   ret = check ();
222   return ret;
223 }
224
225 /* end of test_testing_reconnect.c */