514dd2b6e5fd7645d18ddbb3c6f9f94599519cf8
[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_NO
41
42 #define VERBOSE_ARM GNUNET_NO
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 int connected = GNUNET_NO;
57
58 static int ret = 0;
59
60 static void
61 end ()
62 {
63   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stopping peers\n");
64
65   if (timeout_task != GNUNET_SCHEDULER_NO_TASK)
66     GNUNET_SCHEDULER_cancel(timeout_task);
67
68   GNUNET_TRANSPORT_TESTING_stop_peer(p1);
69   GNUNET_TRANSPORT_TESTING_stop_peer(p2);
70 }
71
72 static void
73 end_badly ()
74 {
75   timeout_task = GNUNET_SCHEDULER_NO_TASK;
76   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Fail! Stopping peers\n");
77
78   GNUNET_TRANSPORT_TESTING_stop_peer(p1);
79   GNUNET_TRANSPORT_TESTING_stop_peer(p2);
80
81   ret = GNUNET_SYSERR;
82 }
83
84 static void
85 testing_connect_cb (struct PeerContext * p1, struct PeerContext * p2, void *cls)
86 {
87   char * p1_c = strdup (GNUNET_i2s(&p1->id));
88   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Peers connected: %s <-> %s\n",
89        p1_c,
90        GNUNET_i2s (&p2->id));
91   GNUNET_free(p1_c);
92   end();
93 }
94
95 static void
96 notify_connect (void *cls,
97                 const struct GNUNET_PeerIdentity *peer,
98                 const struct GNUNET_TRANSPORT_ATS_Information *ats,
99                 uint32_t ats_count)
100 {
101   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%s' connected \n",
102        GNUNET_i2s (peer));
103   connected++;
104 }
105
106 static void
107 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
108 {
109   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%s' disconnected \n",
110        GNUNET_i2s (peer));
111 }
112
113 static void
114 notify_receive (void *cls,
115                 const struct GNUNET_PeerIdentity *peer,
116                 const struct GNUNET_MessageHeader *message,
117                 const struct GNUNET_TRANSPORT_ATS_Information *ats,
118                 uint32_t ats_count)
119 {
120   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Receiving\n");
121 }
122
123
124 static void
125 run (void *cls,
126      char *const *args,
127      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
128 {
129   timeout_task = GNUNET_SCHEDULER_add_delayed(GNUNET_TIME_UNIT_MINUTES, &end_badly, NULL);
130
131   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting peer\n");
132   p1 = GNUNET_TRANSPORT_TESTING_start_peer("test_transport_api_tcp_peer1.conf",
133       &notify_receive,
134       &notify_connect,
135       &notify_disconnect,
136       p1);
137
138   p2 = GNUNET_TRANSPORT_TESTING_start_peer("test_transport_api_tcp_peer2.conf",
139       &notify_receive,
140       &notify_connect,
141       &notify_disconnect,
142       p2);
143
144   if (p1 != NULL)
145     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer1 was successfully started\n");
146   else
147     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer1 was not started successfully\n");
148   GNUNET_assert (p1 != NULL);
149   GNUNET_assert (p1->th != NULL);
150
151   if (p2 != NULL)
152     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer2 was successfully started\n");
153   else
154     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer2 was not started successfully\n");
155   GNUNET_assert (p2 != NULL);
156   GNUNET_assert (p2->th != NULL);
157
158
159   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Connecting peers\n");
160   GNUNET_TRANSPORT_TESTING_connect_peers(p1, p2, &testing_connect_cb, NULL);
161 }
162
163 int
164 main (int argc, char *argv[])
165 {
166   GNUNET_log_setup ("test_transport_testing",
167 #if VERBOSE
168                     "DEBUG",
169 #else
170                     "WARNING",
171 #endif
172                     NULL);
173
174   char *const argv_1[] = { "test_transport_testing",
175     "-c",
176     "test_transport_api_data.conf",
177 #if VERBOSE
178     "-L", "DEBUG",
179 #endif
180     NULL
181   };
182
183   struct GNUNET_GETOPT_CommandLineOption options[] = {
184     GNUNET_GETOPT_OPTION_END
185   };
186
187   GNUNET_PROGRAM_run ((sizeof (argv_1) / sizeof (char *)) - 1,
188                       argv_1, "test_transport_testing", "nohelp",
189                       options, &run, &ret);
190
191   return ret;
192 }
193
194 /* end of test_transport_api.c */