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