- use -enc for test by default
[oweals/gnunet.git] / src / mesh / test_mesh_single.c
1 /*
2      This file is part of GNUnet.
3      (C) 2011 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 /**
22  * @file mesh/test_mesh_local.c
23  * @brief test mesh local: test of mesh 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_mesh_service_enc.h"
32
33 #define REPETITIONS 5
34 #define DATA_SIZE 35000
35
36 struct GNUNET_TESTING_Peer *me;
37
38 static struct GNUNET_MESH_Handle *mesh;
39
40 static struct GNUNET_MESH_Channel *ch1;
41
42 static struct GNUNET_MESH_Channel *ch2;
43
44 static int result = GNUNET_OK;
45
46 static GNUNET_SCHEDULER_TaskIdentifier abort_task;
47
48 static GNUNET_SCHEDULER_TaskIdentifier shutdown_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, const struct GNUNET_SCHEDULER_TaskContext *tc)
63 {
64   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shutdown\n");
65   if (GNUNET_SCHEDULER_NO_TASK != abort_task)
66   {
67     GNUNET_SCHEDULER_cancel (abort_task);
68   }
69   if (NULL != ch1)
70   {
71     GNUNET_MESH_channel_destroy (ch1);
72   }
73   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Disconnect client 1\n");
74   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Disconnect client 2\n");
75   if (NULL != mesh)
76   {
77     GNUNET_MESH_disconnect (mesh);
78   }
79 }
80
81
82 /**
83  * Something went wrong and timed out. Kill everything and set error flag
84  */
85 static void
86 do_abort (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
87 {
88   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ABORT\n");
89   result = GNUNET_SYSERR;
90   abort_task = GNUNET_SCHEDULER_NO_TASK;
91   if (GNUNET_SCHEDULER_NO_TASK != shutdown_task)
92   {
93     GNUNET_SCHEDULER_cancel (shutdown_task);
94     shutdown_task = GNUNET_SCHEDULER_NO_TASK;
95   }
96   do_shutdown (cls, tc);
97 }
98
99
100 /**
101  * Function is called whenever a message is received.
102  *
103  * @param cls closure (set from GNUNET_MESH_connect)
104  * @param channel connection to the other end
105  * @param channel_ctx place to store local state associated with the channel
106  * @param message the actual message
107  * 
108  * @return GNUNET_OK to keep the connection open,
109  *         GNUNET_SYSERR to close it (signal serious error)
110  */
111 static int
112 data_callback (void *cls, struct GNUNET_MESH_Channel *channel,
113                void **channel_ctx,
114                const struct GNUNET_MessageHeader *message)
115 {
116   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Data callback! Repetition %u\n", repetition);
117   printf ("rep %u\n", repetition);
118   repetition = repetition + 1;
119   if (repetition < REPETITIONS)
120   {
121     struct GNUNET_MESH_Channel *my_channel;
122     if (repetition % 2 == 0)
123       my_channel = ch1;
124     else
125       my_channel = ch2;
126     GNUNET_MESH_notify_transmit_ready (my_channel, GNUNET_NO,
127                                        GNUNET_TIME_UNIT_FOREVER_REL,
128                                        sizeof (struct GNUNET_MessageHeader) + DATA_SIZE,
129                                        &do_send, NULL);
130     GNUNET_MESH_receive_done (channel);
131     return GNUNET_OK;
132   }
133   if (GNUNET_SCHEDULER_NO_TASK != shutdown_task)
134     GNUNET_SCHEDULER_cancel (shutdown_task);
135   shutdown_task =
136     GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &do_shutdown,
137                                   NULL);
138   GNUNET_MESH_receive_done (channel);
139   return GNUNET_OK;
140 }
141
142
143 /**
144  * Method called whenever another peer has added us to a channel
145  * the other peer initiated.
146  *
147  * @param cls closure
148  * @param channel new handle to the channel
149  * @param initiator peer that started the channel
150  * @param port port number
151  * @return initial channel context for the channel (can be NULL -- that's not an error)
152  */
153 static void *
154 inbound_channel (void *cls, struct GNUNET_MESH_Channel *channel,
155                 const struct GNUNET_PeerIdentity *initiator,
156                 uint32_t port)
157 {
158   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
159               "received incoming channel on port %u\n",
160               port);
161     ch2 = channel;
162   return NULL;
163 }
164
165
166 /**
167  * Function called whenever an inbound channel is destroyed.  Should clean up
168  * any associated state.
169  *
170  * @param cls closure (set from GNUNET_MESH_connect)
171  * @param channel connection to the other end (henceforth invalid)
172  * @param channel_ctx place where local state associated
173  *                   with the channel is stored
174  */
175 static void
176 inbound_end (void *cls, const struct GNUNET_MESH_Channel *channel,
177              void *channel_ctx)
178 {
179   long id = (long) cls;
180
181   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
182               "incoming channel closed at peer %ld\n",
183               id);
184 }
185
186
187 /**
188  * Handler array for traffic received on peer1
189  */
190 static struct GNUNET_MESH_MessageHandler handlers1[] = {
191   {&data_callback, 1, 0},
192   {NULL, 0, 0}
193 };
194
195
196 /**
197  * Data send callback: fillbuffer with test packet.
198  * 
199  * @param cls Closure (unused).
200  * @param size Buffer size.
201  * @param buf Buffer to fill.
202  * 
203  * @return size of test packet.
204  */
205 static size_t
206 do_send (void *cls, size_t size, void *buf)
207 {
208   struct GNUNET_MessageHeader *m = buf;
209
210   if (NULL == buf)
211   {
212     GNUNET_break (0);
213     result = GNUNET_SYSERR;
214     return 0;
215   }
216   m->size = htons (sizeof (struct GNUNET_MessageHeader));
217   m->type = htons (1);
218   memset (&m[1], 0, DATA_SIZE);
219   GNUNET_assert (size >= sizeof (struct GNUNET_MessageHeader) + DATA_SIZE);
220   return sizeof (struct GNUNET_MessageHeader) + DATA_SIZE;
221 }
222
223 /**
224  * Connect to other client and send data
225  * 
226  * @param cls Closue (unused).
227  * @param tc TaskContext.
228  */
229 static void
230 do_connect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
231 {
232   struct GNUNET_PeerIdentity id;
233
234   GNUNET_TESTING_peer_get_identity (me, &id);
235   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "CONNECT BY PORT\n");
236     ch1 = GNUNET_MESH_channel_create (mesh, NULL, &id, 1, GNUNET_YES, GNUNET_NO);
237   GNUNET_MESH_notify_transmit_ready (ch1, GNUNET_NO,
238                                      GNUNET_TIME_UNIT_FOREVER_REL,
239                                      sizeof (struct GNUNET_MessageHeader) + DATA_SIZE,
240                                      &do_send, NULL);
241 }
242
243
244 /**
245  * Initialize framework and start test
246  * 
247  * @param cls Closure (unused).
248  * @param cfg Configuration handle.
249  * @param peer Testing peer handle.
250  */
251 static void
252 run (void *cls, 
253      const struct GNUNET_CONFIGURATION_Handle *cfg,
254      struct GNUNET_TESTING_Peer *peer)
255 {
256   static uint32_t ports[] = {1, 0};
257
258   me = peer;
259   abort_task =
260       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
261                                     (GNUNET_TIME_UNIT_SECONDS, 15), &do_abort,
262                                     NULL);
263   mesh = GNUNET_MESH_connect (cfg,       /* configuration */
264                               (void *) 1L,     /* cls */
265                               &inbound_channel,   /* inbound new hndlr */
266                               &inbound_end,      /* inbound end hndlr */
267                               handlers1, /* traffic handlers */
268                               ports);     /* ports offered */
269
270   if (NULL == mesh)
271   {
272     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Couldn't connect to mesh :(\n");
273     result = GNUNET_SYSERR;
274     return;
275   }
276   else
277   {
278     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "YAY! CONNECTED TO MESH :D\n");
279   }
280   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &do_connect, NULL);
281 }
282
283
284 /**
285  * Main
286  */
287 int
288 main (int argc, char *argv[])
289 {
290   if (0 != GNUNET_TESTING_peer_run ("test-mesh-local",
291                                     "test_mesh.conf",
292                                 &run, NULL))
293   {
294     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "run failed\n");
295     return 2;
296   }
297   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Final result: %d\n", result);
298   return (result == GNUNET_OK) ? 0 : 1;
299 }
300
301 /* end of test_mesh_local_1.c */