change testing library to use timeout for peer and peergroup startup so testcase...
[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, 60)
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   GNUNET_assert (emsg == NULL);
72   GNUNET_TESTING_daemon_stop (d2, TIMEOUT, &end2_cb, NULL, GNUNET_YES);
73   d2 = NULL;
74 }
75
76 static void
77 finish_testing(void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
78 {
79   GNUNET_TESTING_daemon_stop (d1, TIMEOUT, &end1_cb, NULL, GNUNET_YES);
80   d1 = NULL;
81 }
82
83 static void
84 my_connect_complete (void *cls,
85                      const struct GNUNET_PeerIdentity *first,
86                      const struct GNUNET_PeerIdentity *second,
87                      const struct GNUNET_CONFIGURATION_Handle *first_cfg,
88                      const struct GNUNET_CONFIGURATION_Handle *second_cfg,
89                      struct GNUNET_TESTING_Daemon *first_daemon,
90                      struct GNUNET_TESTING_Daemon *second_daemon,
91                      const char *emsg)
92 {
93   GNUNET_SCHEDULER_add_now (sched, &finish_testing, NULL);
94 }
95
96
97 static void
98 my_cb2 (void *cls,
99         const struct GNUNET_PeerIdentity *id,
100         const struct GNUNET_CONFIGURATION_Handle *cfg,
101         struct GNUNET_TESTING_Daemon *d, const char *emsg)
102 {
103   GNUNET_assert (id != NULL);
104 #if VERBOSE
105   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
106               "Daemon `%s' started.\n", GNUNET_i2s (id));
107 #endif
108   GNUNET_TESTING_daemons_connect (d1, d2,
109                                   TIMEOUT, CONNECT_ATTEMPTS, &my_connect_complete, NULL);
110 }
111
112
113 static void
114 my_cb1 (void *cls,
115         const struct GNUNET_PeerIdentity *id,
116         const struct GNUNET_CONFIGURATION_Handle *cfg,
117         struct GNUNET_TESTING_Daemon *d, const char *emsg)
118 {
119   GNUNET_assert (id != NULL);
120 #if VERBOSE
121   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
122               "Daemon `%s' started.\n", GNUNET_i2s (id));
123 #endif
124   d2 = GNUNET_TESTING_daemon_start (sched, c2, TIMEOUT, NULL, NULL, NULL, &my_cb2, NULL);
125   GNUNET_assert (d2 != NULL);
126
127 }
128
129
130 static void
131 run (void *cls,
132      struct GNUNET_SCHEDULER_Handle *s,
133      char *const *args,
134      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
135 {
136   sched = s;
137   ok = 1;
138 #if VERBOSE
139   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemon.\n");
140 #endif
141   c1 = GNUNET_CONFIGURATION_create ();
142   GNUNET_CONFIGURATION_parse (c1, "test_testing_connect_peer1.conf");
143   c2 = GNUNET_CONFIGURATION_create ();
144   GNUNET_CONFIGURATION_parse (c2, "test_testing_connect_peer2.conf");
145   d1 = GNUNET_TESTING_daemon_start (sched, c1, TIMEOUT, NULL, NULL, NULL, &my_cb1, NULL);
146   GNUNET_assert (d1 != NULL);
147 }
148
149 static int
150 check ()
151 {
152   char *const argv[] = { "test-testing",
153     "-c",
154     "test_testing_data.conf",
155 #if VERBOSE
156     "-L", "DEBUG",
157 #endif
158     NULL
159   };
160   struct GNUNET_GETOPT_CommandLineOption options[] = {
161     GNUNET_GETOPT_OPTION_END
162   };
163   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
164                       argv, "test-testing-connect", "nohelp",
165                       options, &run, &ok);
166   return ok;
167 }
168
169 int
170 main (int argc, char *argv[])
171 {
172   int ret;
173
174   GNUNET_log_setup ("test-testing-connect",
175 #if VERBOSE
176                     "DEBUG",
177 #else
178                     "WARNING",
179 #endif
180                     NULL);
181   ret = check ();
182   /*sleep (1);
183   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-testing");
184   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-testing-connect-peer1");
185   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-testing-connect-peer2");*/
186   return ret;
187 }
188
189 /* end of test_testing_connect.c */