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