api change
[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 2, 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 /**
31  * How long until we give up on connecting the peers?
32  */
33 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 300)
34
35 #define CONNECT_ATTEMPTS 3
36
37 static int ok;
38
39 static struct GNUNET_TESTING_Daemon *d1;
40
41 static struct GNUNET_TESTING_Daemon *d2;
42
43 static struct GNUNET_CONFIGURATION_Handle *c1;
44
45 static struct GNUNET_CONFIGURATION_Handle *c2;
46
47 static struct GNUNET_SCHEDULER_Handle *sched;
48
49 static void
50 end2_cb (void *cls, const char *emsg)
51 {
52
53   if (emsg != NULL)
54     {
55       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Ending with error: %s\n", emsg);
56       ok = 1;
57     }
58   else
59     {
60 #if VERBOSE
61       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
62                   "Both daemons terminated, will now exit.\n");
63 #endif
64       ok = 0;
65     }
66 }
67
68 static void
69 end1_cb (void *cls, const char *emsg)
70 {
71   if (emsg != NULL)
72     {
73       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Stopping daemon 1 gave: %s\n", emsg);
74       ok = 1;
75     }
76   else
77     {
78       ok = 0;
79     }
80
81   GNUNET_TESTING_daemon_stop (d2, TIMEOUT, &end2_cb, NULL, GNUNET_YES, GNUNET_NO);
82   d2 = NULL;
83 }
84
85 static void
86 finish_testing(void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
87 {
88   GNUNET_TESTING_daemon_stop (d1, TIMEOUT, &end1_cb, NULL, GNUNET_YES, 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 (sched, &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, &my_connect_complete, NULL);
120 }
121
122
123 static void
124 my_cb1 (void *cls,
125         const struct GNUNET_PeerIdentity *id,
126         const struct GNUNET_CONFIGURATION_Handle *cfg,
127         struct GNUNET_TESTING_Daemon *d, const char *emsg)
128 {
129   GNUNET_assert (id != NULL);
130 #if VERBOSE
131   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
132               "Daemon `%s' started.\n", GNUNET_i2s (id));
133 #endif
134   d2 = GNUNET_TESTING_daemon_start (sched, c2, TIMEOUT, NULL, NULL, NULL, &my_cb2, NULL);
135   GNUNET_assert (d2 != NULL);
136
137 }
138
139
140 static void
141 run (void *cls,
142      struct GNUNET_SCHEDULER_Handle *s,
143      char *const *args,
144      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
145 {
146   sched = s;
147   ok = 1;
148 #if VERBOSE
149   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemon.\n");
150 #endif
151   c1 = GNUNET_CONFIGURATION_create ();
152   GNUNET_CONFIGURATION_parse (c1, "test_testing_connect_peer1.conf");
153   c2 = GNUNET_CONFIGURATION_create ();
154   GNUNET_CONFIGURATION_parse (c2, "test_testing_connect_peer2.conf");
155   d1 = GNUNET_TESTING_daemon_start (sched, c1, TIMEOUT, NULL, NULL, NULL, &my_cb1, NULL);
156   GNUNET_assert (d1 != NULL);
157 }
158
159 static int
160 check ()
161 {
162   char *const argv[] = { "test-testing",
163     "-c",
164     "test_testing_data.conf",
165 #if VERBOSE
166     "-L", "DEBUG",
167 #endif
168     NULL
169   };
170   struct GNUNET_GETOPT_CommandLineOption options[] = {
171     GNUNET_GETOPT_OPTION_END
172   };
173   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
174                       argv, "test-testing-connect", "nohelp",
175                       options, &run, &ok);
176   return ok;
177 }
178
179 int
180 main (int argc, char *argv[])
181 {
182   int ret;
183
184   GNUNET_log_setup ("test-testing-connect",
185 #if VERBOSE
186                     "DEBUG",
187 #else
188                     "WARNING",
189 #endif
190                     NULL);
191   ret = check ();
192   return ret;
193 }
194
195 /* end of test_testing_connect.c */