- fix error messages
[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 {
102   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%s' connected \n",
103               GNUNET_i2s (peer));
104   connected++;
105 }
106
107 static void
108 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
109 {
110   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%s' disconnected \n",
111               GNUNET_i2s (peer));
112 }
113
114 static void
115 notify_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
116                 const struct GNUNET_MessageHeader *message)
117 {
118   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Receiving\n");
119 }
120
121 void
122 start_cb (struct PeerContext *p, void *cls)
123 {
124   static int started;
125
126   started++;
127
128   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer %u (`%s') started\n", p->no,
129               GNUNET_i2s (&p->id));
130
131   if (started != 2)
132     return;
133
134   char *sender_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
135
136   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
137               "Test tries to connect peer %u (`%s') -> peer %u (`%s')\n",
138               p1->no, sender_c, p2->no, GNUNET_i2s (&p2->id));
139   GNUNET_free (sender_c);
140
141   cc = GNUNET_TRANSPORT_TESTING_connect_peers (tth, p1, p2, &testing_connect_cb,
142                                                NULL);
143
144 }
145
146 static void
147 run (void *cls, char *const *args, const char *cfgfile,
148      const struct GNUNET_CONFIGURATION_Handle *cfg)
149 {
150   tth = GNUNET_TRANSPORT_TESTING_init ();
151
152   timeout_task =
153       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MINUTES, &end_badly, NULL);
154
155   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting peer\n");
156   p1 = GNUNET_TRANSPORT_TESTING_start_peer (tth,
157                                             "test_transport_api_tcp_peer1.conf",
158                                             1, &notify_receive, &notify_connect,
159                                             &notify_disconnect, &start_cb, p1);
160
161   p2 = GNUNET_TRANSPORT_TESTING_start_peer (tth,
162                                             "test_transport_api_tcp_peer2.conf",
163                                             2, &notify_receive, &notify_connect,
164                                             &notify_disconnect, &start_cb, p2);
165
166   if (p1 == NULL)
167   {
168     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
169                 "Peer1 was not started successfully\n");
170     if (timeout_task != GNUNET_SCHEDULER_NO_TASK)
171       GNUNET_SCHEDULER_cancel (timeout_task);
172     timeout_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
173   }
174   if (p2 == NULL)
175   {
176     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
177                 "Peer2 was not started successfully\n");
178     if (timeout_task != GNUNET_SCHEDULER_NO_TASK)
179       GNUNET_SCHEDULER_cancel (timeout_task);
180     timeout_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
181   }
182 }
183
184 int
185 main (int argc, char *argv[])
186 {
187   GNUNET_log_setup ("test_transport_testing",
188                     "WARNING",
189                     NULL);
190
191   char *const argv_1[] = { "test_transport_testing",
192     "-c",
193     "test_transport_api_data.conf",
194     NULL
195   };
196
197   struct GNUNET_GETOPT_CommandLineOption options[] = {
198     GNUNET_GETOPT_OPTION_END
199   };
200
201   GNUNET_PROGRAM_run ((sizeof (argv_1) / sizeof (char *)) - 1, argv_1,
202                       "test_transport_testing", "nohelp", options, &run, &ret);
203
204   return ret;
205 }
206
207 /* end of test_transport_api.c */