print warning messages about hostkey file
[oweals/gnunet.git] / src / testing / test_testing_connect.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009 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_connect.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_NO
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 void
47 end2_cb (void *cls, const char *emsg)
48 {
49
50   if (emsg != NULL)
51     {
52       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Ending with error: %s\n", emsg);
53       ok = 1;
54     }
55   else
56     {
57 #if VERBOSE
58       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
59                   "Both daemons terminated, will now exit.\n");
60 #endif
61       ok = 0;
62     }
63 }
64
65 static void
66 end1_cb (void *cls, const char *emsg)
67 {
68   if (emsg != NULL)
69     {
70       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Stopping daemon 1 gave: %s\n",
71                   emsg);
72       ok = 1;
73     }
74   else
75     {
76       ok = 0;
77     }
78
79   GNUNET_TESTING_daemon_stop (d2, TIMEOUT, &end2_cb, NULL, GNUNET_YES,
80                               GNUNET_NO);
81   d2 = NULL;
82 }
83
84 static void
85 finish_testing (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
86 {
87   GNUNET_TESTING_daemon_stop (d1, TIMEOUT, &end1_cb, NULL, GNUNET_YES,
88                               GNUNET_NO);
89   d1 = NULL;
90 }
91
92 static void
93 my_connect_complete (void *cls,
94                      const struct GNUNET_PeerIdentity *first,
95                      const struct GNUNET_PeerIdentity *second,
96                      unsigned int distance,
97                      const struct GNUNET_CONFIGURATION_Handle *first_cfg,
98                      const struct GNUNET_CONFIGURATION_Handle *second_cfg,
99                      struct GNUNET_TESTING_Daemon *first_daemon,
100                      struct GNUNET_TESTING_Daemon *second_daemon,
101                      const char *emsg)
102 {
103   GNUNET_SCHEDULER_add_now (&finish_testing, NULL);
104 }
105
106
107 static void
108 my_cb2 (void *cls,
109         const struct GNUNET_PeerIdentity *id,
110         const struct GNUNET_CONFIGURATION_Handle *cfg,
111         struct GNUNET_TESTING_Daemon *d, const char *emsg)
112 {
113   GNUNET_assert (id != NULL);
114 #if VERBOSE
115   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
116               "Daemon `%s' started.\n", GNUNET_i2s (id));
117 #endif
118   GNUNET_TESTING_daemons_connect (d1, d2,
119                                   TIMEOUT, CONNECT_ATTEMPTS,
120                                   &my_connect_complete, NULL);
121 }
122
123
124 static void
125 my_cb1 (void *cls,
126         const struct GNUNET_PeerIdentity *id,
127         const struct GNUNET_CONFIGURATION_Handle *cfg,
128         struct GNUNET_TESTING_Daemon *d, const char *emsg)
129 {
130   GNUNET_assert (id != NULL);
131 #if VERBOSE
132   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
133               "Daemon `%s' started.\n", GNUNET_i2s (id));
134 #endif
135   d2 =
136     GNUNET_TESTING_daemon_start (c2, TIMEOUT, NULL, NULL, 0, NULL, NULL, NULL,
137                                  &my_cb2, NULL);
138   GNUNET_assert (d2 != NULL);
139
140 }
141
142
143 static void
144 run (void *cls,
145      char *const *args,
146      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
147 {
148   ok = 1;
149 #if VERBOSE
150   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemon.\n");
151 #endif
152   c1 = GNUNET_CONFIGURATION_create ();
153   GNUNET_CONFIGURATION_parse (c1, "test_testing_connect_peer1.conf");
154   c2 = GNUNET_CONFIGURATION_create ();
155   GNUNET_CONFIGURATION_parse (c2, "test_testing_connect_peer2.conf");
156   d1 =
157     GNUNET_TESTING_daemon_start (c1, TIMEOUT, NULL, NULL, 0, NULL, NULL, NULL,
158                                  &my_cb1, NULL);
159   GNUNET_assert (d1 != NULL);
160 }
161
162 static int
163 check ()
164 {
165   char *const argv[] = { "test-testing",
166     "-c",
167     "test_testing_data.conf",
168 #if VERBOSE
169     "-L", "DEBUG",
170 #endif
171     NULL
172   };
173   struct GNUNET_GETOPT_CommandLineOption options[] = {
174     GNUNET_GETOPT_OPTION_END
175   };
176   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
177                       argv, "test-testing-connect", "nohelp",
178                       options, &run, &ok);
179   return ok;
180 }
181
182 int
183 main (int argc, char *argv[])
184 {
185   int ret;
186
187   GNUNET_log_setup ("test-testing-connect",
188 #if VERBOSE
189                     "DEBUG",
190 #else
191                     "WARNING",
192 #endif
193                     NULL);
194   ret = check ();
195   return ret;
196 }
197
198 /* end of test_testing_connect.c */