aboutsummaryrefslogtreecommitdiff
path: root/src/testing_old/test_testing_peergroup.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testing_old/test_testing_peergroup.c')
-rw-r--r--src/testing_old/test_testing_peergroup.c157
1 files changed, 0 insertions, 157 deletions
diff --git a/src/testing_old/test_testing_peergroup.c b/src/testing_old/test_testing_peergroup.c
deleted file mode 100644
index 061a0ca75..000000000
--- a/src/testing_old/test_testing_peergroup.c
+++ /dev/null
@@ -1,157 +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_peergroup.c
22 * @brief testcase for functions to connect peers in testing_peergroup.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 struct GNUNET_TESTING_PeerGroup *pg;
41
42/**
43 * Check whether peers successfully shut down.
44 */
45void
46shutdown_callback (void *cls, const char *emsg)
47{
48 if (emsg != NULL)
49 {
50#if VERBOSE
51 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Shutdown of peers failed!\n");
52#endif
53 if (ok == 0)
54 ok = 666;
55 }
56 else
57 {
58#if VERBOSE
59 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "All peers successfully shut down!\n");
60#endif
61 ok = 0;
62 }
63}
64
65
66static void
67my_cb (void *cls, const char *emsg)
68{
69 if (emsg != NULL)
70 {
71 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
72 "Peergroup callback called with error, aborting test!\n");
73 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Error from testing: `%s'\n");
74 ok = 1;
75 GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
76 return;
77 }
78
79 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
80 "Peer Group started successfully, ending test!\n");
81 /**
82 * If something is to actually be DONE with the testcase, it should
83 * be put in here. Usually there will be a struct declared (or global
84 * variables can be used) to keep track of the state, statistics,
85 * handles to peers, etc. The example here is the opaque "TestCaseData"
86 * struct that could be passed into a function "additional_code_for_testing"
87 * which can be used to perform actions on the peers in the peergroup.
88 * Also, the GNUNET_TESTING_daemons_stop call would need to be removed,
89 * and only called once all of the testing is complete.
90 */
91
92 /**
93 * struct TestcaseData *state_closure;
94 * GNUNET_SCHEDULER_add_now(&additional_code_for_testing, state_closure);
95 */
96
97 GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
98}
99
100
101static void
102run (void *cls, char *const *args, const char *cfgfile,
103 const struct GNUNET_CONFIGURATION_Handle *cfg)
104{
105 struct GNUNET_CONFIGURATION_Handle *testing_cfg;
106
107 ok = 1;
108 testing_cfg = GNUNET_CONFIGURATION_create ();
109 GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (testing_cfg, cfgfile));
110#if VERBOSE
111 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemons.\n");
112 GNUNET_CONFIGURATION_set_value_string (testing_cfg, "testing",
113 "use_progressbars", "YES");
114#endif
115 peers_left = NUM_PEERS;
116 pg = GNUNET_TESTING_peergroup_start (testing_cfg, peers_left, TIMEOUT, NULL,
117 &my_cb, NULL, NULL);
118 GNUNET_assert (pg != NULL);
119}
120
121static int
122check ()
123{
124 char *const argv[] = { "test-testing-peergroup",
125 "-c",
126 "test_testing_peergroup_data.conf",
127#if VERBOSE
128 "-L", "DEBUG",
129#endif
130 NULL
131 };
132 struct GNUNET_GETOPT_CommandLineOption options[] = {
133 GNUNET_GETOPT_OPTION_END
134 };
135 GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
136 "test-testing-peergroup", "nohelp", options, &run, &ok);
137 return ok;
138}
139
140int
141main (int argc, char *argv[])
142{
143 int ret;
144
145 GNUNET_log_setup ("test-testing-peergroup",
146#if VERBOSE
147 "DEBUG",
148#else
149 "WARNING",
150#endif
151 NULL);
152 ret = check ();
153 GNUNET_DISK_directory_remove ("/tmp/test-gnunet-testing");
154 return ret;
155}
156
157/* end of test_testing_peergroup.c */