handle disconnect properly in test
[oweals/gnunet.git] / src / cadet / test_cadet_single.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2011 GNUnet e.V.
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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20
21 /**
22  * @file cadet/test_cadet_single.c
23  * @brief test cadet single: test of cadet channels with just one client
24  * @author Bartlomiej Polot
25  */
26
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_dht_service.h"
30 #include "gnunet_testing_lib.h"
31 #include "gnunet_cadet_service.h"
32
33 #define REPETITIONS 5
34 #define DATA_SIZE 35000
35
36 struct GNUNET_TESTING_Peer *me;
37
38 static struct GNUNET_CADET_Handle *cadet;
39
40 static struct GNUNET_CADET_Channel *ch1;
41
42 static struct GNUNET_CADET_Channel *ch2;
43
44 static int result;
45
46 static struct GNUNET_SCHEDULER_Task *abort_task;
47
48 static struct GNUNET_SCHEDULER_Task *connect_task;
49
50 static unsigned int repetition;
51
52
53 /* forward declaration */
54 static size_t
55 do_send (void *cls, size_t size, void *buf);
56
57
58 /**
59  * Shutdown nicely
60  */
61 static void
62 do_shutdown (void *cls)
63 {
64   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shutdown\n");
65   if (NULL != abort_task)
66   {
67     GNUNET_SCHEDULER_cancel (abort_task);
68     abort_task = NULL;
69   }
70   if (NULL != connect_task)
71   {
72     GNUNET_SCHEDULER_cancel (connect_task);
73     connect_task = NULL;
74   }
75   if (NULL != ch1)
76   {
77     GNUNET_CADET_channel_destroy (ch1);
78     ch1 = NULL;
79   }
80   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Disconnect client 1\n");
81   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Disconnect client 2\n");
82   if (NULL != cadet)
83   {
84     GNUNET_CADET_disconnect (cadet);
85     cadet = NULL;
86   }
87   else
88   {
89     GNUNET_break (0);
90   }
91 }
92
93
94 /**
95  * Something went wrong and timed out. Kill everything and set error flag
96  */
97 static void
98 do_abort (void *cls)
99 {
100   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ABORT\n");
101   result = GNUNET_SYSERR;
102   abort_task = NULL;
103   GNUNET_SCHEDULER_shutdown ();
104 }
105
106
107 /**
108  * Function is called whenever a message is received.
109  *
110  * @param cls closure (set from GNUNET_CADET_connect)
111  * @param channel connection to the other end
112  * @param channel_ctx place to store local state associated with the channel
113  * @param message the actual message
114  *
115  * @return GNUNET_OK to keep the connection open,
116  *         GNUNET_SYSERR to close it (signal serious error)
117  */
118 static int
119 data_callback (void *cls, struct GNUNET_CADET_Channel *channel,
120                void **channel_ctx,
121                const struct GNUNET_MessageHeader *message)
122 {
123   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
124               "Data callback! Repetition %u/%u\n",
125               repetition, REPETITIONS);
126   repetition = repetition + 1;
127   if (repetition < REPETITIONS)
128   {
129     struct GNUNET_CADET_Channel *my_channel;
130     if (repetition % 2 == 0)
131       my_channel = ch1;
132     else
133       my_channel = ch2;
134     GNUNET_CADET_notify_transmit_ready (my_channel, GNUNET_NO,
135                                        GNUNET_TIME_UNIT_FOREVER_REL,
136                                        sizeof (struct GNUNET_MessageHeader)
137                                        + DATA_SIZE,
138                                        &do_send, NULL);
139     GNUNET_CADET_receive_done (channel);
140     return GNUNET_OK;
141   }
142   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "All data OK. Destroying channel.\n");
143   GNUNET_CADET_channel_destroy (ch1);
144   ch1 = NULL;
145   return GNUNET_OK;
146 }
147
148
149 /**
150  * Method called whenever another peer has added us to a channel
151  * the other peer initiated.
152  *
153  * @param cls closure
154  * @param channel new handle to the channel
155  * @param initiator peer that started the channel
156  * @param port port number
157  * @param options channel option flags
158  * @return initial channel context for the channel
159  *         (can be NULL -- that's not an error)
160  */
161 static void *
162 inbound_channel (void *cls, struct GNUNET_CADET_Channel *channel,
163                  const struct GNUNET_PeerIdentity *initiator,
164                  const struct GNUNET_HashCode *port,
165                  enum GNUNET_CADET_ChannelOption options)
166 {
167   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
168               "received incoming channel on port %s\n",
169               GNUNET_h2s (port));
170   ch2 = channel;
171   return NULL;
172 }
173
174
175 /**
176  * Function called whenever an inbound channel is destroyed.  Should clean up
177  * any associated state.
178  *
179  * @param cls closure (set from GNUNET_CADET_connect)
180  * @param channel connection to the other end (henceforth invalid)
181  * @param channel_ctx place where local state associated
182  *                   with the channel is stored
183  */
184 static void
185 channel_end (void *cls, const struct GNUNET_CADET_Channel *channel,
186              void *channel_ctx)
187 {
188   long id = (long) cls;
189
190   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
191               "incoming channel closed at peer %ld\n",
192               id);
193   if ( (REPETITIONS == repetition) &&
194        (channel == ch2) )
195   {
196     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
197                 "everything fine! finishing!\n");
198     result = GNUNET_OK;
199     GNUNET_SCHEDULER_shutdown ();
200   }
201   if (channel == ch2)
202     ch2 = NULL;
203   if (channel == ch1)
204     ch1 = NULL;
205 }
206
207
208 /**
209  * Handler array for traffic received on peer1
210  */
211 static struct GNUNET_CADET_MessageHandler handlers1[] = {
212   {&data_callback, 1, 0},
213   {NULL, 0, 0}
214 };
215
216
217 /**
218  * Data send callback: fillbuffer with test packet.
219  *
220  * @param cls Closure (unused).
221  * @param size Buffer size.
222  * @param buf Buffer to fill.
223  *
224  * @return size of test packet.
225  */
226 static size_t
227 do_send (void *cls, size_t size, void *buf)
228 {
229   struct GNUNET_MessageHeader *m = buf;
230
231   if (NULL == buf)
232   {
233     GNUNET_break (0);
234     result = GNUNET_SYSERR;
235     return 0;
236   }
237   m->size = htons (sizeof (struct GNUNET_MessageHeader));
238   m->type = htons (1);
239   memset (&m[1], 0, DATA_SIZE);
240   GNUNET_assert (size >= sizeof (struct GNUNET_MessageHeader) + DATA_SIZE);
241   return sizeof (struct GNUNET_MessageHeader) + DATA_SIZE;
242 }
243
244 /**
245  * Connect to other client and send data
246  *
247  * @param cls Closue (unused).
248  */
249 static void
250 do_connect (void *cls)
251 {
252   struct GNUNET_PeerIdentity id;
253   size_t size = sizeof (struct GNUNET_MessageHeader) + DATA_SIZE;
254
255   connect_task = NULL;
256   GNUNET_TESTING_peer_get_identity (me, &id);
257   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "CONNECT BY PORT\n");
258   ch1 = GNUNET_CADET_channel_create (cadet, NULL, &id, GC_u2h (1),
259                                      GNUNET_CADET_OPTION_DEFAULT);
260   GNUNET_CADET_notify_transmit_ready (ch1, GNUNET_NO,
261                                      GNUNET_TIME_UNIT_FOREVER_REL,
262                                      size, &do_send, NULL);
263 }
264
265
266 /**
267  * Initialize framework and start test
268  *
269  * @param cls Closure (unused).
270  * @param cfg Configuration handle.
271  * @param peer Testing peer handle.
272  */
273 static void
274 run (void *cls,
275      const struct GNUNET_CONFIGURATION_Handle *cfg,
276      struct GNUNET_TESTING_Peer *peer)
277 {
278   me = peer;
279   GNUNET_SCHEDULER_add_shutdown (&do_shutdown, NULL);
280   abort_task =
281       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
282                                     (GNUNET_TIME_UNIT_SECONDS, 15), &do_abort,
283                                     NULL);
284   cadet = GNUNET_CADET_connect (cfg,       /* configuration */
285                               (void *) 1L,     /* cls */
286                               &channel_end,      /* inbound end hndlr */
287                               handlers1); /* traffic handlers */
288   GNUNET_CADET_open_port (cadet, GC_u2h (1), &inbound_channel, (void *) 1L);
289
290
291   if (NULL == cadet)
292   {
293     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Couldn't connect to cadet :(\n");
294     result = GNUNET_SYSERR;
295     return;
296   }
297   connect_task
298     = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
299                                     &do_connect,
300                                     NULL);
301 }
302
303
304 /**
305  * Main
306  */
307 int
308 main (int argc, char *argv[])
309 {
310   result = GNUNET_NO;
311   if (0 != GNUNET_TESTING_peer_run ("test-cadet-local",
312                                     "test_cadet.conf",
313                                     &run, NULL))
314   {
315     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "run failed\n");
316     return 2;
317   }
318   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Final result: %d\n", result);
319   return (result == GNUNET_OK) ? 0 : 1;
320 }
321
322 /* end of test_cadet_single.c */