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