aboutsummaryrefslogtreecommitdiff
path: root/src/testing_old/test_testing_group.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testing_old/test_testing_group.c')
-rw-r--r--src/testing_old/test_testing_group.c166
1 files changed, 0 insertions, 166 deletions
diff --git a/src/testing_old/test_testing_group.c b/src/testing_old/test_testing_group.c
deleted file mode 100644
index f5df45b19..000000000
--- a/src/testing_old/test_testing_group.c
+++ /dev/null
@@ -1,166 +0,0 @@
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_group.c
22 * @brief testcase for functions to connect peers in testing.c
23 */
24#include "platform.h"
25#include "gnunet_testing_lib.h"
26
27#define VERBOSE GNUNET_NO
28
29#define NUM_PEERS 4
30
31/**
32 * How long until we give up on connecting the peers?
33 */
34#define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 300)
35
36static int ok;
37
38static int peers_left;
39
40static int failed_peers;
41
42static struct GNUNET_TESTING_PeerGroup *pg;
43
44/**
45 * Check whether peers successfully shut down.
46 */
47void
48shutdown_callback (void *cls, const char *emsg)
49{
50 if (emsg != NULL)
51 {
52#if VERBOSE
53 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Shutdown of peers failed!\n");
54#endif
55 if (ok == 0)
56 ok = 666;
57 }
58 else
59 {
60#if VERBOSE
61 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "All peers successfully shut down!\n");
62#endif
63 }
64}
65
66
67static void
68my_cb (void *cls, const struct GNUNET_PeerIdentity *id,
69 const struct GNUNET_CONFIGURATION_Handle *cfg,
70 struct GNUNET_TESTING_Daemon *d, const char *emsg)
71{
72 if (id == NULL)
73 {
74 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
75 "Start callback called with error (too long starting peers), aborting test!\n");
76 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Error from testing: `%s'\n");
77 failed_peers++;
78 if (failed_peers == peers_left)
79 {
80 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
81 "Too many peers failed, ending test!\n");
82 ok = 1;
83 GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
84 }
85 return;
86 }
87
88 peers_left--;
89 if (peers_left == 0)
90 {
91 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
92 "All peers started successfully, ending test!\n");
93 GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
94 ok = 0;
95 }
96 else if (failed_peers == peers_left)
97 {
98 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
99 "Too many peers failed, ending test!\n");
100 ok = 1;
101 GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
102 }
103}
104
105
106static void
107run (void *cls, char *const *args, const char *cfgfile,
108 const struct GNUNET_CONFIGURATION_Handle *cfg)
109{
110 ok = 1;
111#if VERBOSE
112 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemons.\n");
113#endif
114 peers_left = NUM_PEERS;
115 pg = GNUNET_TESTING_daemons_start (cfg, peers_left, /* Total number of peers */
116 peers_left, /* Number of outstanding connections */
117 peers_left, /* Number of parallel ssh connections, or peers being started at once */
118 TIMEOUT, NULL, NULL, &my_cb, NULL, NULL,
119 NULL, NULL);
120 GNUNET_assert (pg != NULL);
121}
122
123static int
124check ()
125{
126 char *const argv[] = { "test-testing",
127 "-c",
128 "test_testing_data.conf",
129#if VERBOSE
130 "-L", "DEBUG",
131#endif
132 NULL
133 };
134 struct GNUNET_GETOPT_CommandLineOption options[] = {
135 GNUNET_GETOPT_OPTION_END
136 };
137 GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
138 "test-testing-group", "nohelp", options, &run, &ok);
139 return ok;
140}
141
142int
143main (int argc, char *argv[])
144{
145 int ret;
146
147 GNUNET_log_setup ("test-testing-group",
148#if VERBOSE
149 "DEBUG",
150#else
151 "WARNING",
152#endif
153 NULL);
154 ret = check ();
155 /**
156 * Still need to remove the base testing directory here,
157 * because group starts will create subdirectories under this
158 * main dir. However, we no longer need to sleep, as the
159 * shutdown sequence won't return until everything is cleaned
160 * up.
161 */
162 GNUNET_DISK_directory_remove ("/tmp/test-gnunet-testing");
163 return ret;
164}
165
166/* end of test_testing_group.c */