new operation queue for limiting overlay connects
[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_transport_service.h"
31 #include "transport-testing.h"
32 /**
33  * How long until we give up on transmitting the message?
34  */
35 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
36
37 GNUNET_SCHEDULER_TaskIdentifier timeout_task;
38
39 static struct PeerContext *p1;
40 static struct PeerContext *p2;
41
42 static GNUNET_TRANSPORT_TESTING_ConnectRequest cc;
43
44 struct GNUNET_TRANSPORT_TESTING_handle *tth;
45
46 static int connected = GNUNET_NO;
47
48 static int ret = 0;
49
50 static void
51 end ()
52 {
53   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stopping peers\n");
54
55   if (timeout_task != GNUNET_SCHEDULER_NO_TASK)
56     GNUNET_SCHEDULER_cancel (timeout_task);
57
58   GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
59   GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
60
61   GNUNET_TRANSPORT_TESTING_done (tth);
62 }
63
64 static void
65 end_badly ()
66 {
67   timeout_task = GNUNET_SCHEDULER_NO_TASK;
68   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Fail! Stopping peers\n");
69
70   if (NULL != cc)
71   {
72     GNUNET_TRANSPORT_TESTING_connect_peers_cancel (tth, cc);
73     cc = NULL;
74   }
75
76   if (p1 != NULL)
77     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
78   if (p2 != NULL)
79     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
80
81   if (NULL != tth)
82     GNUNET_TRANSPORT_TESTING_done (tth);
83
84   ret = GNUNET_SYSERR;
85 }
86
87 static void
88 testing_connect_cb (struct PeerContext *p1, struct PeerContext *p2, void *cls)
89 {
90   char *ps = GNUNET_strdup (GNUNET_i2s (&p1->id));
91
92   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
93               "Peer %u (`%4s') connected to peer %u (`%s')!\n", p1->no, ps,
94               p2->no, GNUNET_i2s (&p2->id));
95   GNUNET_free (ps);
96   GNUNET_SCHEDULER_add_now (&end, NULL);
97 }
98
99 static void
100 notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
101                 const struct GNUNET_ATS_Information *ats, uint32_t ats_count)
102 {
103   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%s' connected \n",
104               GNUNET_i2s (peer));
105   connected++;
106 }
107
108 static void
109 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
110 {
111   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%s' disconnected \n",
112               GNUNET_i2s (peer));
113 }
114
115 static void
116 notify_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
117                 const struct GNUNET_MessageHeader *message,
118                 const struct GNUNET_ATS_Information *ats, uint32_t ats_count)
119 {
120   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Receiving\n");
121 }
122
123 void
124 start_cb (struct PeerContext *p, void *cls)
125 {
126   static int started;
127
128   started++;
129
130   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer %u (`%s') started\n", p->no,
131               GNUNET_i2s (&p->id));
132
133   if (started != 2)
134     return;
135
136   char *sender_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
137
138   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
139               "Test tries to connect peer %u (`%s') -> peer %u (`%s')\n",
140               p1->no, sender_c, p2->no, GNUNET_i2s (&p2->id));
141   GNUNET_free (sender_c);
142
143   cc = GNUNET_TRANSPORT_TESTING_connect_peers (tth, p1, p2, &testing_connect_cb,
144                                                NULL);
145
146 }
147
148 static void
149 run (void *cls, char *const *args, const char *cfgfile,
150      const struct GNUNET_CONFIGURATION_Handle *cfg)
151 {
152   tth = GNUNET_TRANSPORT_TESTING_init ();
153
154   timeout_task =
155       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MINUTES, &end_badly, NULL);
156
157   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting peer\n");
158   p1 = GNUNET_TRANSPORT_TESTING_start_peer (tth,
159                                             "test_transport_api_tcp_peer1.conf",
160                                             1, &notify_receive, &notify_connect,
161                                             &notify_disconnect, &start_cb, p1);
162
163   p2 = GNUNET_TRANSPORT_TESTING_start_peer (tth,
164                                             "test_transport_api_tcp_peer2.conf",
165                                             2, &notify_receive, &notify_connect,
166                                             &notify_disconnect, &start_cb, p2);
167
168   if (p1 == NULL)
169   {
170     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
171                 "Peer1 was not started successfully\n");
172     if (timeout_task != GNUNET_SCHEDULER_NO_TASK)
173       GNUNET_SCHEDULER_cancel (timeout_task);
174     timeout_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
175   }
176   if (p2 == NULL)
177   {
178     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
179                 "Peer2 was not started successfully\n");
180     if (timeout_task != GNUNET_SCHEDULER_NO_TASK)
181       GNUNET_SCHEDULER_cancel (timeout_task);
182     timeout_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
183   }
184 }
185
186 int
187 main (int argc, char *argv[])
188 {
189   GNUNET_log_setup ("test_transport_testing",
190                     "WARNING",
191                     NULL);
192
193   char *const argv_1[] = { "test_transport_testing",
194     "-c",
195     "test_transport_api_data.conf",
196     NULL
197   };
198
199   struct GNUNET_GETOPT_CommandLineOption options[] = {
200     GNUNET_GETOPT_OPTION_END
201   };
202
203   GNUNET_PROGRAM_run ((sizeof (argv_1) / sizeof (char *)) - 1, argv_1,
204                       "test_transport_testing", "nohelp", options, &run, &ret);
205
206   return ret;
207 }
208
209 /* end of test_transport_api.c */