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