remaing remaining mandatory functions for basic operation
[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 && channel == ch2)
194   {
195     ch2 = NULL;
196     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "everything fine! finishing!\n");
197     result = GNUNET_OK;
198     GNUNET_SCHEDULER_shutdown ();
199   }
200 }
201
202
203 /**
204  * Handler array for traffic received on peer1
205  */
206 static struct GNUNET_CADET_MessageHandler handlers1[] = {
207   {&data_callback, 1, 0},
208   {NULL, 0, 0}
209 };
210
211
212 /**
213  * Data send callback: fillbuffer with test packet.
214  *
215  * @param cls Closure (unused).
216  * @param size Buffer size.
217  * @param buf Buffer to fill.
218  *
219  * @return size of test packet.
220  */
221 static size_t
222 do_send (void *cls, size_t size, void *buf)
223 {
224   struct GNUNET_MessageHeader *m = buf;
225
226   if (NULL == buf)
227   {
228     GNUNET_break (0);
229     result = GNUNET_SYSERR;
230     return 0;
231   }
232   m->size = htons (sizeof (struct GNUNET_MessageHeader));
233   m->type = htons (1);
234   memset (&m[1], 0, DATA_SIZE);
235   GNUNET_assert (size >= sizeof (struct GNUNET_MessageHeader) + DATA_SIZE);
236   return sizeof (struct GNUNET_MessageHeader) + DATA_SIZE;
237 }
238
239 /**
240  * Connect to other client and send data
241  *
242  * @param cls Closue (unused).
243  */
244 static void
245 do_connect (void *cls)
246 {
247   struct GNUNET_PeerIdentity id;
248   size_t size = sizeof (struct GNUNET_MessageHeader) + DATA_SIZE;
249
250   connect_task = NULL;
251   GNUNET_TESTING_peer_get_identity (me, &id);
252   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "CONNECT BY PORT\n");
253   ch1 = GNUNET_CADET_channel_create (cadet, NULL, &id, GC_u2h (1),
254                                      GNUNET_CADET_OPTION_DEFAULT);
255   GNUNET_CADET_notify_transmit_ready (ch1, GNUNET_NO,
256                                      GNUNET_TIME_UNIT_FOREVER_REL,
257                                      size, &do_send, NULL);
258 }
259
260
261 /**
262  * Initialize framework and start test
263  *
264  * @param cls Closure (unused).
265  * @param cfg Configuration handle.
266  * @param peer Testing peer handle.
267  */
268 static void
269 run (void *cls,
270      const struct GNUNET_CONFIGURATION_Handle *cfg,
271      struct GNUNET_TESTING_Peer *peer)
272 {
273   me = peer;
274   GNUNET_SCHEDULER_add_shutdown (&do_shutdown, NULL);
275   abort_task =
276       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
277                                     (GNUNET_TIME_UNIT_SECONDS, 15), &do_abort,
278                                     NULL);
279   cadet = GNUNET_CADET_connect (cfg,       /* configuration */
280                               (void *) 1L,     /* cls */
281                               &channel_end,      /* inbound end hndlr */
282                               handlers1); /* traffic handlers */
283   GNUNET_CADET_open_port (cadet, GC_u2h (1), &inbound_channel, (void *) 1L);
284
285
286   if (NULL == cadet)
287   {
288     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Couldn't connect to cadet :(\n");
289     result = GNUNET_SYSERR;
290     return;
291   }
292   connect_task
293     = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
294                                     &do_connect,
295                                     NULL);
296 }
297
298
299 /**
300  * Main
301  */
302 int
303 main (int argc, char *argv[])
304 {
305   result = GNUNET_NO;
306   if (0 != GNUNET_TESTING_peer_run ("test-cadet-local",
307                                     "test_cadet.conf",
308                                     &run, NULL))
309   {
310     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "run failed\n");
311     return 2;
312   }
313   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Final result: %d\n", result);
314   return (result == GNUNET_OK) ? 0 : 1;
315 }
316
317 /* end of test_cadet_single.c */