fix indentation
[oweals/gnunet.git] / src / cadet / test_cadet_local_mq.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2017 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_local_mq.c
23  * @brief test cadet local: test of cadet channels with just one peer
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 TEST_MESSAGE_TYPE 1
34 #define TEST_PORT_ID 1
35
36 /**
37  * Test message structure.
38  */
39 struct GNUNET_CADET_TestMsg
40 {
41   /**
42    * Type: #TEST_MESSAGE_TYPE
43    *
44    * Size: sizeof(struct GNUNET_CADET_TestMsg)
45    */
46   struct GNUNET_MessageHeader header;
47
48   /**
49    * Test payload.
50    */
51   uint64_t payload;
52 };
53
54 struct GNUNET_TESTING_Peer *me;
55
56 static struct GNUNET_CADET_Handle *cadet_peer_1;
57
58 static struct GNUNET_CADET_Handle *cadet_peer_2;
59
60 static struct GNUNET_CADET_Channel *ch;
61
62 static int result = GNUNET_OK;
63
64 static int got_data = GNUNET_NO;
65
66 static struct GNUNET_SCHEDULER_Task *abort_task;
67
68 static struct GNUNET_SCHEDULER_Task *connect_task;
69
70
71 /**
72  * Connect to other client and send data
73  *
74  * @param cls Closue (unused).
75  */
76 static void
77 do_connect (void *cls);
78
79
80 /**
81  * Shutdown nicely
82  */
83 static void
84 do_shutdown (void *cls)
85 {
86   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
87               "shutdown\n");
88   if (NULL != abort_task)
89   {
90     GNUNET_SCHEDULER_cancel (abort_task);
91     abort_task = NULL;
92   }
93   if (NULL != ch)
94   {
95     GNUNET_CADET_channel_destroy (ch);
96     ch = NULL;
97   }
98   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
99               "Disconnect client 1\n");
100   if (NULL != cadet_peer_1)
101   {
102     GNUNET_CADET_disconnect (cadet_peer_1);
103     cadet_peer_1 = NULL;
104   }
105   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
106               "Disconnect client 2\n");
107   if (NULL != cadet_peer_2)
108   {
109     GNUNET_CADET_disconnect (cadet_peer_2);
110     cadet_peer_2 = NULL;
111   }
112   if (NULL != connect_task)
113   {
114     GNUNET_SCHEDULER_cancel (connect_task);
115     connect_task = NULL;
116   }
117 }
118
119
120 /**
121  * Something went wrong and timed out. Kill everything and set error flag
122  */
123 static void
124 do_abort (void *cls)
125 {
126   GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
127               "ABORT from line %ld\n",
128               (long) cls);
129   result = GNUNET_SYSERR;
130   abort_task = NULL;
131   GNUNET_SCHEDULER_shutdown ();
132 }
133
134 /**
135  * Method called whenever a peer connects to a port in MQ-based CADET.
136  *
137  * @param cls Closure from #GNUNET_CADET_open_port.
138  * @param channel New handle to the channel.
139  * @param source Peer that started this channel.
140  * @return Closure for the incoming @a channel. It's given to:
141  *         - The #GNUNET_CADET_DisconnectEventHandler (given to
142  *           #GNUNET_CADET_open_port) when the channel dies.
143  *         - Each the #GNUNET_MQ_MessageCallback handlers for each message
144  *           received on the @a channel.
145  */
146 static void *
147 connected (void *cls,
148            struct GNUNET_CADET_Channel *channel,
149            const struct GNUNET_PeerIdentity *source)
150 {
151   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
152               "connected %s, cls: %p\n",
153               GNUNET_i2s(source), cls);
154   return channel;
155 }
156
157 /**
158  * Function called whenever an MQ-channel is destroyed, even if the destruction
159  * was requested by #GNUNET_CADET_channel_destroy.
160  * It must NOT call #GNUNET_CADET_channel_destroy on the channel.
161  *
162  * It should clean up any associated state, including cancelling any pending
163  * transmission on this channel.
164  *
165  * @param cls Channel closure.
166  * @param channel Connection to the other end (henceforth invalid).
167  */
168 static void
169 disconnected (void *cls,
170               const struct GNUNET_CADET_Channel *channel)
171 {
172   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
173               "disconnected channel %p, cls: %p\n",
174               channel, cls);
175   if (channel == ch)
176     ch = NULL;
177 }
178
179
180 /**
181  * Handle test data
182  *
183  * @param h     The cadet handle
184  * @param msg   A message with the details of the new incoming channel
185  */
186 static void
187 handle_data_received (void *cls,
188                       const struct GNUNET_CADET_TestMsg *msg)
189 {
190   uint64_t payload;
191
192   payload = GNUNET_ntohll (msg->payload);
193   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
194               "Data callback payload %llu with cls: %p! Shutting down.\n",
195               (unsigned long long) payload,
196               cls);
197   GNUNET_assert (42 == payload);
198   got_data = GNUNET_YES;
199   GNUNET_SCHEDULER_shutdown ();
200 }
201
202
203 /**
204  * Signature of the main function of a task.
205  *
206  * @param cls Closure (unused).
207  */
208 static void
209 message_sent (void *cls)
210 {
211   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "message sent\n");
212 }
213
214
215 /**
216  * Connect to other client and send data
217  *
218  * @param cls Closure (unused).
219  */
220 static void
221 do_connect (void *cls)
222 {
223   struct GNUNET_PeerIdentity id;
224   struct GNUNET_MQ_Handle *mq;
225   struct GNUNET_MQ_Envelope *env;
226   struct GNUNET_CADET_TestMsg *msg;
227
228   struct GNUNET_MQ_MessageHandler handlers[] = {
229     GNUNET_MQ_hd_fixed_size (data_received,
230                              TEST_MESSAGE_TYPE,
231                              struct GNUNET_CADET_TestMsg,
232                              cadet_peer_1),
233     GNUNET_MQ_handler_end ()
234   };
235
236   connect_task = NULL;
237   GNUNET_TESTING_peer_get_identity (me, &id);
238   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
239               "creating channel\n");
240   ch = GNUNET_CADET_channel_create (cadet_peer_1, /* cadet handle */
241                                     NULL,         /* channel cls */
242                                     &id,          /* destination */
243                                     GC_u2h (TEST_MESSAGE_TYPE), /* port */
244                                     GNUNET_CADET_OPTION_DEFAULT, /* opt */
245                                     NULL,          /* window change */
246                                     &disconnected, /* disconnect handler */
247                                     handlers       /* traffic handlers */
248                                    );
249   env = GNUNET_MQ_msg (msg, TEST_MESSAGE_TYPE);
250   msg->payload = GNUNET_htonll (42);
251   mq = GNUNET_CADET_get_mq (ch);
252   GNUNET_MQ_notify_sent (env, &message_sent, NULL);
253   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
254               "sending message\n");
255   GNUNET_MQ_send (mq, env);
256 }
257
258
259 /**
260  * Initialize framework and start test
261  *
262  * @param cls Closure (unused).
263  * @param cfg Configuration handle.
264  * @param peer Testing peer handle.
265  */
266 static void
267 run (void *cls,
268      const struct GNUNET_CONFIGURATION_Handle *cfg,
269      struct GNUNET_TESTING_Peer *peer)
270 {
271   struct GNUNET_MQ_MessageHandler handlers[] = {
272     GNUNET_MQ_hd_fixed_size (data_received,
273                              TEST_MESSAGE_TYPE,
274                              struct GNUNET_CADET_TestMsg,
275                              cadet_peer_2),
276     GNUNET_MQ_handler_end ()
277   };
278   struct GNUNET_TIME_Relative delay;
279
280   me = peer;
281   GNUNET_SCHEDULER_add_shutdown (&do_shutdown,
282                                  NULL);
283   delay = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 15);
284   abort_task = GNUNET_SCHEDULER_add_delayed (delay,
285                                              &do_abort,
286                                              (void *) (long) __LINE__);
287   cadet_peer_1 = GNUNET_CADET_connect (cfg);
288   cadet_peer_2 = GNUNET_CADET_connect (cfg);
289
290   if ( (NULL == cadet_peer_1) ||
291        (NULL == cadet_peer_2) )
292   {
293     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
294                 "Couldn't connect to cadet\n");
295     result = GNUNET_SYSERR;
296     GNUNET_SCHEDULER_shutdown ();
297     return;
298   }
299   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "CADET 1: %p\n", cadet_peer_1);
300   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "CADET 2: %p\n", cadet_peer_2);
301   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "handlers 2: %p\n", handlers);
302   GNUNET_CADET_open_port (cadet_peer_2,          /* cadet handle */
303                           GC_u2h (TEST_PORT_ID), /* port id */
304                           &connected,            /* connect handler */
305                           (void *) 2L,           /* handle for #connected */
306                           NULL,                  /* window size handler */
307                           &disconnected,         /* disconnect handler */
308                           handlers);             /* traffic handlers */
309   delay = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 2);
310   if (NULL == connect_task)
311     connect_task = GNUNET_SCHEDULER_add_delayed (delay,
312                                                  &do_connect,
313                                                  NULL);
314 }
315
316
317 /**
318  * Main
319  */
320 int
321 main (int argc, char *argv[])
322 {
323   if (0 != GNUNET_TESTING_peer_run ("test-cadet-local",
324                                     "test_cadet.conf",
325                                 &run, NULL))
326   {
327     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "run failed\n");
328     return 2;
329   }
330   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Final result: %d\n", result);
331   return (result == GNUNET_OK) ? 0 : 1;
332 }
333
334 /* end of test_cadet_local_1.c */