-changing exit helper code to automatically do the network configuration for an exit...
[oweals/gnunet.git] / src / transport / test_transport_testing.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010 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 transport/test_transport_api.c
22  * @brief base test case for transport implementations
23  *
24  * This test case serves as a base for tcp, udp, and udp-nat
25  * transport test cases.  Based on the executable being run
26  * the correct test case will be performed.  Conservation of
27  * C code apparently.
28  */
29 #include "platform.h"
30 #include "gnunet_common.h"
31 #include "gnunet_hello_lib.h"
32 #include "gnunet_getopt_lib.h"
33 #include "gnunet_os_lib.h"
34 #include "gnunet_program_lib.h"
35 #include "gnunet_scheduler_lib.h"
36 #include "gnunet_transport_service.h"
37 #include "transport.h"
38 #include "transport-testing.h"
39
40 #define VERBOSE GNUNET_EXTRA_LOGGING
41
42 #define VERBOSE_ARM GNUNET_EXTRA_LOGGING
43
44 #define START_ARM GNUNET_YES
45
46 /**
47  * How long until we give up on transmitting the message?
48  */
49 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
50
51 GNUNET_SCHEDULER_TaskIdentifier timeout_task;
52
53 static struct PeerContext *p1;
54 static struct PeerContext *p2;
55
56 static GNUNET_TRANSPORT_TESTING_ConnectRequest cc;
57
58 struct GNUNET_TRANSPORT_TESTING_handle *tth;
59
60 static int connected = GNUNET_NO;
61
62 static int ret = 0;
63
64 static void
65 end ()
66 {
67   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stopping peers\n");
68
69   if (timeout_task != GNUNET_SCHEDULER_NO_TASK)
70     GNUNET_SCHEDULER_cancel (timeout_task);
71
72   GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
73   GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
74
75   GNUNET_TRANSPORT_TESTING_done (tth);
76 }
77
78 static void
79 end_badly ()
80 {
81   timeout_task = GNUNET_SCHEDULER_NO_TASK;
82   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Fail! Stopping peers\n");
83
84   if (p1 != NULL)
85     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
86   if (p2 != NULL)
87     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
88
89   GNUNET_TRANSPORT_TESTING_done (tth);
90
91   ret = GNUNET_SYSERR;
92 }
93
94 static void
95 testing_connect_cb (struct PeerContext *p1, struct PeerContext *p2, void *cls)
96 {
97   char *ps = GNUNET_strdup (GNUNET_i2s (&p1->id));
98
99   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
100               "Peer %u (`%4s') connected to peer %u (`%s')!\n", p1->no, ps,
101               p2->no, GNUNET_i2s (&p2->id));
102   GNUNET_free (ps);
103   GNUNET_SCHEDULER_add_now (&end, NULL);
104 }
105
106 static void
107 notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
108                 const struct GNUNET_ATS_Information *ats, uint32_t ats_count)
109 {
110   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%s' connected \n",
111               GNUNET_i2s (peer));
112   connected++;
113 }
114
115 static void
116 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
117 {
118   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%s' disconnected \n",
119               GNUNET_i2s (peer));
120 }
121
122 static void
123 notify_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
124                 const struct GNUNET_MessageHeader *message,
125                 const struct GNUNET_ATS_Information *ats, uint32_t ats_count)
126 {
127   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Receiving\n");
128 }
129
130 void
131 start_cb (struct PeerContext *p, void *cls)
132 {
133   static int started;
134
135   started++;
136
137   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer %u (`%s') started\n", p->no,
138               GNUNET_i2s (&p->id));
139
140   if (started != 2)
141     return;
142
143   char *sender_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
144
145   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
146               "Test tries to connect peer %u (`%s') -> peer %u (`%s')\n",
147               p1->no, sender_c, p2->no, GNUNET_i2s (&p2->id));
148   GNUNET_free (sender_c);
149
150   cc = GNUNET_TRANSPORT_TESTING_connect_peers (tth, p1, p2, &testing_connect_cb,
151                                                NULL);
152
153 }
154
155 static void
156 run (void *cls, char *const *args, const char *cfgfile,
157      const struct GNUNET_CONFIGURATION_Handle *cfg)
158 {
159   tth = GNUNET_TRANSPORT_TESTING_init ();
160
161   timeout_task =
162       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MINUTES, &end_badly, NULL);
163
164   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting peer\n");
165   p1 = GNUNET_TRANSPORT_TESTING_start_peer (tth,
166                                             "test_transport_api_tcp_peer1.conf",
167                                             1, &notify_receive, &notify_connect,
168                                             &notify_disconnect, &start_cb, p1);
169
170   GNUNET_assert (p1->hostkeyfile != NULL);
171
172   p2 = GNUNET_TRANSPORT_TESTING_start_peer (tth,
173                                             "test_transport_api_tcp_peer2.conf",
174                                             2, &notify_receive, &notify_connect,
175                                             &notify_disconnect, &start_cb, p2);
176
177   GNUNET_assert (p2->hostkeyfile != NULL);
178
179   if (p1 == NULL)
180   {
181     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
182                 "Peer1 was not started successfully\n");
183     if (timeout_task != GNUNET_SCHEDULER_NO_TASK)
184       GNUNET_SCHEDULER_cancel (timeout_task);
185     timeout_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
186   }
187   if (p2 == NULL)
188   {
189     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
190                 "Peer2 was not started successfully\n");
191     if (timeout_task != GNUNET_SCHEDULER_NO_TASK)
192       GNUNET_SCHEDULER_cancel (timeout_task);
193     timeout_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
194   }
195 }
196
197 int
198 main (int argc, char *argv[])
199 {
200   GNUNET_log_setup ("test_transport_testing",
201 #if VERBOSE
202                     "DEBUG",
203 #else
204                     "WARNING",
205 #endif
206                     NULL);
207
208   char *const argv_1[] = { "test_transport_testing",
209     "-c",
210     "test_transport_api_data.conf",
211 #if VERBOSE
212     "-L", "DEBUG",
213 #endif
214     NULL
215   };
216
217   struct GNUNET_GETOPT_CommandLineOption options[] = {
218     GNUNET_GETOPT_OPTION_END
219   };
220
221   GNUNET_PROGRAM_run ((sizeof (argv_1) / sizeof (char *)) - 1, argv_1,
222                       "test_transport_testing", "nohelp", options, &run, &ret);
223
224   return ret;
225 }
226
227 /* end of test_transport_api.c */