aboutsummaryrefslogtreecommitdiff
path: root/src/testing/test_testing_reconnect.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-06-09 15:35:06 +0000
committerChristian Grothoff <christian@grothoff.org>2012-06-09 15:35:06 +0000
commite0033c1da56e1889775d7dccf92ea78ee52e4d5c (patch)
tree82a835de1f924de68dff5702d9e2b46b2f64ffdd /src/testing/test_testing_reconnect.c
parent5e29c9683d2c0dfff71d2ead9ebb98d74a844bd5 (diff)
downloadgnunet-e0033c1da56e1889775d7dccf92ea78ee52e4d5c.tar.gz
gnunet-e0033c1da56e1889775d7dccf92ea78ee52e4d5c.zip
-moving old testing code to legacy location
Diffstat (limited to 'src/testing/test_testing_reconnect.c')
-rw-r--r--src/testing/test_testing_reconnect.c249
1 files changed, 0 insertions, 249 deletions
diff --git a/src/testing/test_testing_reconnect.c b/src/testing/test_testing_reconnect.c
deleted file mode 100644
index bcee38659..000000000
--- a/src/testing/test_testing_reconnect.c
+++ /dev/null
@@ -1,249 +0,0 @@
1/*
2 This file is part of GNUnet.
3 (C) 2010 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_reconnect.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 * 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
36static int ok;
37
38static struct GNUNET_TESTING_Daemon *d1;
39
40static struct GNUNET_TESTING_Daemon *d2;
41
42static struct GNUNET_CONFIGURATION_Handle *c1;
43
44static struct GNUNET_CONFIGURATION_Handle *c2;
45
46static struct GNUNET_TESTING_ConnectContext *cc;
47
48/**
49 * How many start-connect-stop iterations should we do?
50 */
51#define NUM_PHASES 2
52
53static int phase;
54
55/**
56 * Run the next phase of starting daemons, connecting them and
57 * stopping them again.
58 */
59static void
60run_phase (void);
61
62static void
63end2_cb (void *cls, const char *emsg)
64{
65
66 if (emsg != NULL)
67 {
68 GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Ending with error: %s\n", emsg);
69 ok = 1;
70 }
71 else
72 {
73 if (phase < NUM_PHASES)
74 {
75 FPRINTF (stderr, "%s", ".");
76 run_phase ();
77 return;
78 }
79 FPRINTF (stderr, "%s", ".\n");
80#if VERBOSE
81 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
82 "Both daemons terminated, will now exit.\n");
83#endif
84 ok = 0;
85 }
86}
87
88static void
89end1_cb (void *cls, const char *emsg)
90{
91 if (emsg != NULL)
92 {
93 GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Stopping daemon 1 gave: %s\n",
94 emsg);
95 ok = 1;
96 }
97 else
98 {
99 ok = 0;
100 }
101 if (d2 != NULL)
102 {
103 GNUNET_TESTING_daemon_stop (d2, TIMEOUT, &end2_cb, NULL,
104 (phase == NUM_PHASES) ? GNUNET_YES : GNUNET_NO,
105 GNUNET_NO);
106 d2 = NULL;
107 }
108}
109
110static void
111finish_testing (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
112{
113 GNUNET_TESTING_daemon_stop (d1, TIMEOUT, &end1_cb, NULL,
114 (phase == NUM_PHASES) ? GNUNET_YES : GNUNET_NO,
115 GNUNET_NO);
116 d1 = NULL;
117}
118
119
120static void
121my_connect_complete (void *cls, const struct GNUNET_PeerIdentity *first,
122 const struct GNUNET_PeerIdentity *second,
123 unsigned int distance,
124 const struct GNUNET_CONFIGURATION_Handle *first_cfg,
125 const struct GNUNET_CONFIGURATION_Handle *second_cfg,
126 struct GNUNET_TESTING_Daemon *first_daemon,
127 struct GNUNET_TESTING_Daemon *second_daemon,
128 const char *emsg)
129{
130 cc = NULL;
131#if VERBOSE
132 FPRINTF (stderr, "Peer %s ", GNUNET_i2s (first));
133 FPRINTF (stderr, "connected to %s\n", GNUNET_i2s (second));
134#endif
135 GNUNET_SCHEDULER_add_now (&finish_testing, NULL);
136}
137
138
139
140
141static void
142my_cb2 (void *cls, const struct GNUNET_PeerIdentity *id,
143 const struct GNUNET_CONFIGURATION_Handle *cfg,
144 struct GNUNET_TESTING_Daemon *d, const char *emsg)
145{
146 if (emsg != NULL)
147 {
148 GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Starting daemon 2 gave: %s\n",
149 emsg);
150 GNUNET_assert (0);
151 return;
152 }
153 GNUNET_assert (id != NULL);
154#if VERBOSE
155 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Daemon `%s' started.\n",
156 GNUNET_i2s (id));
157#endif
158 cc = GNUNET_TESTING_daemons_connect (d1, d2, TIMEOUT, CONNECT_ATTEMPTS,
159 GNUNET_YES, &my_connect_complete, NULL);
160}
161
162
163static void
164my_cb1 (void *cls, const struct GNUNET_PeerIdentity *id,
165 const struct GNUNET_CONFIGURATION_Handle *cfg,
166 struct GNUNET_TESTING_Daemon *d, const char *emsg)
167{
168 if (emsg != NULL)
169 {
170 GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Starting daemon 1 gave: %s\n",
171 emsg);
172 GNUNET_assert (0);
173 return;
174 }
175 GNUNET_assert (id != NULL);
176#if VERBOSE
177 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Daemon `%s' started.\n",
178 GNUNET_i2s (id));
179#endif
180 d2 = GNUNET_TESTING_daemon_start (c2, TIMEOUT, GNUNET_NO, NULL, NULL, 0, NULL,
181 NULL, NULL, &my_cb2, NULL);
182 GNUNET_assert (d2 != NULL);
183}
184
185
186static void
187run (void *cls, char *const *args, const char *cfgfile,
188 const struct GNUNET_CONFIGURATION_Handle *cfg)
189{
190 ok = 1;
191#if VERBOSE
192 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemon.\n");
193#endif
194 c1 = GNUNET_CONFIGURATION_create ();
195 GNUNET_assert (GNUNET_OK ==
196 GNUNET_CONFIGURATION_load (c1,
197 "test_testing_connect_peer1.conf"));
198 c2 = GNUNET_CONFIGURATION_create ();
199 GNUNET_assert (GNUNET_OK ==
200 GNUNET_CONFIGURATION_load (c2,
201 "test_testing_connect_peer2.conf"));
202 run_phase ();
203}
204
205static void
206run_phase ()
207{
208 phase++;
209 d1 = GNUNET_TESTING_daemon_start (c1, TIMEOUT, GNUNET_NO, NULL, NULL, 0, NULL,
210 NULL, NULL, &my_cb1, NULL);
211 GNUNET_assert (d1 != NULL);
212}
213
214static int
215check ()
216{
217 char *const argv[] = { "test-testing-reconnect",
218 "-c",
219 "test_testing_data.conf",
220#if VERBOSE
221 "-L", "DEBUG",
222#endif
223 NULL
224 };
225 struct GNUNET_GETOPT_CommandLineOption options[] = {
226 GNUNET_GETOPT_OPTION_END
227 };
228 GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
229 "test-testing-reconnect", "nohelp", options, &run, &ok);
230 return ok;
231}
232
233int
234main (int argc, char *argv[])
235{
236 int ret;
237
238 GNUNET_log_setup ("test-testing-reconnect",
239#if VERBOSE
240 "DEBUG",
241#else
242 "WARNING",
243#endif
244 NULL);
245 ret = check ();
246 return ret;
247}
248
249/* end of test_testing_reconnect.c */