2 This file is part of GNUnet.
3 (C) 2009, 2010 Christian Grothoff (and other contributing authors)
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.
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.
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.
21 * @file transport/test_transport_api.c
22 * @brief base test case for transport implementations
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
30 #include "gnunet_transport_service.h"
31 #include "transport-testing.h"
34 * How long until we give up on transmitting the message?
36 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 120)
39 * How long until we give up on transmitting the message?
41 #define TIMEOUT_TRANSMIT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
43 #define TEST_MESSAGE_SIZE 2600
45 #define TEST_MESSAGE_TYPE 12345
47 static char *test_source;
49 static char *test_plugin;
51 static char *test_name;
57 static int s_connected;
61 static GNUNET_SCHEDULER_TaskIdentifier die_task;
63 static GNUNET_SCHEDULER_TaskIdentifier send_task;
65 static struct PeerContext *p1;
67 static struct PeerContext *p2;
69 static GNUNET_TRANSPORT_TESTING_ConnectRequest cc;
71 static struct GNUNET_TRANSPORT_TransmitHandle *th;
73 static struct GNUNET_TRANSPORT_TESTING_handle *tth;
75 static char *cfg_file_p1;
77 static char *cfg_file_p2;
83 GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Stopping peers\n");
85 if (send_task != GNUNET_SCHEDULER_NO_TASK)
86 GNUNET_SCHEDULER_cancel (send_task);
88 if (die_task != GNUNET_SCHEDULER_NO_TASK)
89 GNUNET_SCHEDULER_cancel (die_task);
92 GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
95 GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
96 GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
100 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
102 die_task = GNUNET_SCHEDULER_NO_TASK;
104 GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Fail! Stopping peers\n");
107 if (send_task != GNUNET_SCHEDULER_NO_TASK)
108 GNUNET_SCHEDULER_cancel (send_task);
112 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Fail! Could not connect peers\n"));
113 GNUNET_TRANSPORT_TESTING_connect_peers_cancel (tth, cc);
118 GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
120 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were not ready to send data\n"));
122 if (s_started == GNUNET_NO)
123 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peers were not started \n"));
125 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peers were started \n"));
127 if (s_connected == GNUNET_NO)
128 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were not connected\n"));
130 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were connected\n"));
132 if (s_sending == GNUNET_NO)
133 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were not ready to send data\n"));
135 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were ready to send data\n"));
140 GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
142 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer 1 was not started\n"));
144 GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
146 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer 2 was not started\n"));
153 notify_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
154 const struct GNUNET_MessageHeader *message)
156 struct PeerContext *p = cls;
157 struct PeerContext *t = NULL;
159 if (0 == memcmp (peer, &p1->id, sizeof (struct GNUNET_PeerIdentity)))
161 if (0 == memcmp (peer, &p2->id, sizeof (struct GNUNET_PeerIdentity)))
163 GNUNET_assert (t != NULL);
165 char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
167 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
168 "Peer %u (`%4s') received message of type %d and size %u size from peer %u (`%4s')!\n",
169 p->no, ps, ntohs (message->type), ntohs (message->size), t->no,
170 GNUNET_i2s (&t->id));
173 if ((TEST_MESSAGE_TYPE == ntohs (message->type)) &&
174 (TEST_MESSAGE_SIZE == ntohs (message->size)))
189 notify_ready (void *cls, size_t size, void *buf)
191 struct PeerContext *p = cls;
192 struct GNUNET_MessageHeader *hdr;
198 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
199 "Timeout occurred while waiting for transmit_ready\n");
200 if (GNUNET_SCHEDULER_NO_TASK != die_task)
201 GNUNET_SCHEDULER_cancel (die_task);
202 die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
207 GNUNET_assert (size >= TEST_MESSAGE_SIZE);
210 memset (buf, '\0', TEST_MESSAGE_SIZE);
212 hdr->size = htons (TEST_MESSAGE_SIZE);
213 hdr->type = htons (TEST_MESSAGE_TYPE);
216 char *ps = GNUNET_strdup (GNUNET_i2s (&p2->id));
217 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
218 "Peer %u (`%4s') sending message with type %u and size %u bytes to peer %u (`%4s')\n",
219 p2->no, ps, ntohs (hdr->type), ntohs (hdr->size), p->no,
220 GNUNET_i2s (&p->id));
223 return TEST_MESSAGE_SIZE;
228 sendtask (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
230 send_task = GNUNET_SCHEDULER_NO_TASK;
232 if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
234 char *receiver_s = GNUNET_strdup (GNUNET_i2s (&p1->id));
236 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
237 "Sending message from peer %u (`%4s') -> peer %u (`%s') !\n",
238 p2->no, GNUNET_i2s (&p2->id), p1->no, receiver_s);
239 GNUNET_free (receiver_s);
240 s_sending = GNUNET_YES;
241 th = GNUNET_TRANSPORT_notify_transmit_ready (p2->th, &p1->id, TEST_MESSAGE_SIZE, 0,
242 TIMEOUT_TRANSMIT, ¬ify_ready,
248 notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer)
253 struct PeerContext *p = cls;
254 struct PeerContext *t = NULL;
256 if (0 == memcmp (peer, &p1->id, sizeof (struct GNUNET_PeerIdentity)))
258 if (0 == memcmp (peer, &p2->id, sizeof (struct GNUNET_PeerIdentity)))
260 GNUNET_assert (t != NULL);
262 char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
264 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
265 "Peer %u (`%4s'): peer %u (`%s') connected to me!\n", p->no, ps,
266 t->no, GNUNET_i2s (peer));
272 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
274 struct PeerContext *p = cls;
275 char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
277 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
278 "Peer %u (`%4s'): peer (`%s') disconnected from me!\n", p->no, ps,
284 GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
290 testing_connect_cb (struct PeerContext *p1, struct PeerContext *p2, void *cls)
293 char *p1_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
295 GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Peers connected: %u (%s) <-> %u (%s)\n",
296 p1->no, p1_c, p2->no, GNUNET_i2s (&p2->id));
299 s_connected = GNUNET_YES;
300 send_task = GNUNET_SCHEDULER_add_now (&sendtask, NULL);
305 start_cb (struct PeerContext *p, void *cls)
311 GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Peer %u (`%s') started\n", p->no,
312 GNUNET_i2s (&p->id));
317 s_started = GNUNET_YES;
318 char *sender_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
320 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
321 "Test tries to connect peer %u (`%s') -> peer %u (`%s')\n",
322 p1->no, sender_c, p2->no, GNUNET_i2s (&p2->id));
323 GNUNET_free (sender_c);
325 cc = GNUNET_TRANSPORT_TESTING_connect_peers (tth, p1, p2, &testing_connect_cb,
332 run (void *cls, char *const *args, const char *cfgfile,
333 const struct GNUNET_CONFIGURATION_Handle *cfg)
335 die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
337 s_started = GNUNET_NO;
338 s_connected = GNUNET_NO;
339 s_sending = GNUNET_NO;
341 p1 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p1, 1,
342 ¬ify_receive, ¬ify_connect,
343 ¬ify_disconnect, &start_cb,
346 p2 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p2, 2,
347 ¬ify_receive, ¬ify_connect,
348 ¬ify_disconnect, &start_cb,
351 if ((p1 == NULL) || (p2 == NULL))
353 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Fail! Could not start peers!\n");
354 if (die_task != GNUNET_SCHEDULER_NO_TASK)
355 GNUNET_SCHEDULER_cancel (die_task);
356 die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
365 static char *const argv[] = { "test-transport-api",
367 "test_transport_api_data.conf",
370 static struct GNUNET_GETOPT_CommandLineOption options[] = {
371 GNUNET_GETOPT_OPTION_END
374 send_task = GNUNET_SCHEDULER_NO_TASK;
377 GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, test_name,
378 "nohelp", options, &run, &ok);
384 main (int argc, char *argv[])
388 GNUNET_TRANSPORT_TESTING_get_test_name (argv[0], &test_name);
389 GNUNET_TRANSPORT_TESTING_get_test_source_name (__FILE__, &test_source);
390 GNUNET_TRANSPORT_TESTING_get_test_plugin_name (argv[0], test_source,
393 GNUNET_log_setup (test_name,
396 tth = GNUNET_TRANSPORT_TESTING_init ();
398 GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p1, 1);
399 GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p2, 2);
403 GNUNET_free (cfg_file_p1);
404 GNUNET_free (cfg_file_p2);
406 GNUNET_free (test_source);
407 GNUNET_free (test_plugin);
408 GNUNET_free (test_name);
410 GNUNET_TRANSPORT_TESTING_done (tth);
415 /* end of test_transport_api.c */