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