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