aboutsummaryrefslogtreecommitdiff
path: root/src/transport/test_transport_api_monitor_validation.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-07-06 23:06:06 +0000
committerChristian Grothoff <christian@grothoff.org>2016-07-06 23:06:06 +0000
commitf8de70cbb50e5821fcbb5f2303ca8e1eae12a348 (patch)
tree64ff9e18d3fca11e5a75bea898fc3fd3c64d1f03 /src/transport/test_transport_api_monitor_validation.c
parent680cc0e4f5d8cf15269e34d465fbeaf545220c8a (diff)
downloadgnunet-f8de70cbb50e5821fcbb5f2303ca8e1eae12a348.tar.gz
gnunet-f8de70cbb50e5821fcbb5f2303ca8e1eae12a348.zip
remove dead monitor validation test
Diffstat (limited to 'src/transport/test_transport_api_monitor_validation.c')
-rw-r--r--src/transport/test_transport_api_monitor_validation.c536
1 files changed, 0 insertions, 536 deletions
diff --git a/src/transport/test_transport_api_monitor_validation.c b/src/transport/test_transport_api_monitor_validation.c
deleted file mode 100644
index 49550e011..000000000
--- a/src/transport/test_transport_api_monitor_validation.c
+++ /dev/null
@@ -1,536 +0,0 @@
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2009, 2010 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 * @file transport/test_transport_api_monitor_validation.c
22 * @brief base test case for transport validation monitorung
23 *
24 * This test case connects two peers and monitors validation monitoring
25 * callbacks
26 */
27#include "platform.h"
28#include "gnunet_transport_service.h"
29#include "transport-testing.h"
30
31/**
32 * How long until we give up on transmitting the message?
33 */
34#define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 120)
35
36/**
37 * How long until we give up on transmitting the message?
38 */
39#define TIMEOUT_TRANSMIT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
40
41#define TEST_MESSAGE_SIZE 2600
42
43#define TEST_MESSAGE_TYPE 12345
44
45static char *test_source;
46
47static char *test_plugin;
48
49static char *test_name;
50
51static int ok;
52
53static int s_started;
54
55static int s_connected;
56
57static int s_sending;
58
59static struct GNUNET_SCHEDULER_Task * die_task;
60
61static struct GNUNET_SCHEDULER_Task * send_task;
62
63static struct PeerContext *p1;
64
65static struct PeerContext *p2;
66
67static struct GNUNET_TRANSPORT_TESTING_ConnectRequest * cc;
68
69static struct GNUNET_TRANSPORT_TransmitHandle *th;
70
71static struct GNUNET_TRANSPORT_TESTING_handle *tth;
72
73static char *cfg_file_p1;
74
75static char *cfg_file_p2;
76
77static struct GNUNET_TRANSPORT_ValidationMonitoringContext *vmc_p1;
78
79static struct GNUNET_TRANSPORT_ValidationMonitoringContext *vmc_p2;
80
81static int p1_c = GNUNET_NO;
82
83static int p2_c = GNUNET_NO;
84
85static int p1_c_notify = GNUNET_NO;
86
87static int p2_c_notify = GNUNET_NO;
88
89static void
90end ()
91{
92 GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Stopping peers\n");
93
94
95 if (send_task != NULL)
96 GNUNET_SCHEDULER_cancel (send_task);
97
98 if (die_task != NULL)
99 GNUNET_SCHEDULER_cancel (die_task);
100
101 if (th != NULL)
102 GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
103 th = NULL;
104
105 GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
106 p1 = NULL;
107 GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
108 p2 = NULL;
109
110 if (NULL != vmc_p1)
111 {
112 GNUNET_TRANSPORT_monitor_validation_entries_cancel (vmc_p1);
113 vmc_p1 = NULL;
114 }
115 if (NULL != vmc_p2)
116 {
117 GNUNET_TRANSPORT_monitor_validation_entries_cancel (vmc_p2);
118 vmc_p2 = NULL;
119 }
120
121 ok = 0;
122}
123
124static void
125end_badly (void *cls)
126{
127 die_task = NULL;
128
129 GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Fail! Stopping peers\n");
130
131
132 if (send_task != NULL)
133 GNUNET_SCHEDULER_cancel (send_task);
134
135 if (cc != NULL)
136 {
137 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Fail! Could not connect peers\n"));
138 GNUNET_TRANSPORT_TESTING_connect_peers_cancel (tth, cc);
139 cc = NULL;
140 }
141
142 if (th != NULL)
143 GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
144 else
145 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were not ready to send data\n"));
146
147 if (s_started == GNUNET_NO)
148 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peers were not started \n"));
149 else
150 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peers were started \n"));
151
152 if (s_connected == GNUNET_NO)
153 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were not connected\n"));
154 else
155 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were connected\n"));
156
157 if (s_sending == GNUNET_NO)
158 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were not ready to send data\n"));
159 else
160 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were ready to send data\n"));
161
162 th = NULL;
163
164 if (NULL != vmc_p1)
165 {
166 GNUNET_TRANSPORT_monitor_validation_entries_cancel (vmc_p1);
167 vmc_p1 = NULL;
168 }
169 if (NULL != vmc_p2)
170 {
171 GNUNET_TRANSPORT_monitor_validation_entries_cancel (vmc_p2);
172 vmc_p2 = NULL;
173 }
174
175 if (p1 != NULL)
176 GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
177 else
178 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer 1 was not started\n"));
179 if (p2 != NULL)
180 GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
181 else
182 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer 2 was not started\n"));
183
184 ok = GNUNET_SYSERR;
185}
186
187
188static void
189notify_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
190 const struct GNUNET_MessageHeader *message)
191{
192 struct PeerContext *p = cls;
193 struct PeerContext *t = NULL;
194
195 if (0 == memcmp (peer, &p1->id, sizeof (struct GNUNET_PeerIdentity)))
196 t = p1;
197 if (0 == memcmp (peer, &p2->id, sizeof (struct GNUNET_PeerIdentity)))
198 t = p2;
199 GNUNET_assert (t != NULL);
200
201 char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
202
203 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
204 "Peer %u (`%4s') received message of type %d and size %u size from peer %u (`%4s')!\n",
205 p->no, ps, ntohs (message->type), ntohs (message->size), t->no,
206 GNUNET_i2s (&t->id));
207 GNUNET_free (ps);
208
209 if (0 >= p1_c)
210 {
211 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
212 "Peer 1 did not receive validation callbacks for peer 2\n");
213 }
214 if (0 >= p2_c)
215 {
216 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
217 "Peer 2 did not receive validation callbacks for peer 1\n");
218 }
219
220 if ((0 >= p1_c) || (0 >= p2_c))
221 {
222 if (NULL != die_task)
223 GNUNET_SCHEDULER_cancel (die_task);
224 die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
225 }
226 else
227 end ();
228}
229
230
231static size_t
232notify_ready (void *cls,
233 size_t size,
234 void *buf)
235{
236 struct PeerContext *p = cls;
237 struct GNUNET_MessageHeader *hdr;
238
239 th = NULL;
240 if (NULL == buf)
241 {
242 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
243 "Timeout occurred while waiting for transmit_ready\n");
244 if (NULL != die_task)
245 GNUNET_SCHEDULER_cancel (die_task);
246 die_task = GNUNET_SCHEDULER_add_now (&end_badly,
247 NULL);
248 ok = 42;
249 return 0;
250 }
251
252 GNUNET_assert (size >= TEST_MESSAGE_SIZE);
253 memset (buf, '\0', TEST_MESSAGE_SIZE);
254 hdr = buf;
255 hdr->size = htons (TEST_MESSAGE_SIZE);
256 hdr->type = htons (TEST_MESSAGE_TYPE);
257
258 {
259 char *ps = GNUNET_strdup (GNUNET_i2s (&p2->id));
260 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
261 "Peer %u (`%4s') sending message with type %u and size %u bytes to peer %u (`%4s')\n",
262 p2->no,
263 ps,
264 ntohs (hdr->type),
265 ntohs (hdr->size),
266 p->no,
267 GNUNET_i2s (&p->id));
268 GNUNET_free (ps);
269 }
270
271 return TEST_MESSAGE_SIZE;
272}
273
274
275static void
276sendtask (void *cls)
277{
278 send_task = NULL;
279 char *receiver_s = GNUNET_strdup (GNUNET_i2s (&p1->id));
280
281 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
282 "Sending message from peer %u (`%4s') -> peer %u (`%s') !\n",
283 p2->no, GNUNET_i2s (&p2->id), p1->no, receiver_s);
284 GNUNET_free (receiver_s);
285 s_sending = GNUNET_YES;
286 th = GNUNET_TRANSPORT_notify_transmit_ready (p2->th, &p1->id, TEST_MESSAGE_SIZE,
287 TIMEOUT_TRANSMIT, &notify_ready,
288 p1);
289}
290
291
292static void
293done ()
294{
295 if ( (GNUNET_YES == p1_c) &&
296 (GNUNET_YES == p2_c) &&
297 p1_c_notify &&
298 p2_c_notify)
299 {
300 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
301 "Both peers state to be connected\n");
302 ok = 0;
303 end();
304 }
305}
306
307
308static void
309notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer)
310{
311 static int c;
312
313 c++;
314 struct PeerContext *p = cls;
315 struct PeerContext *t = NULL;
316
317 if (0 == memcmp (peer, &p1->id, sizeof (struct GNUNET_PeerIdentity)))
318 {
319 p1_c_notify = GNUNET_YES;
320 t = p1;
321 }
322 if (0 == memcmp (peer, &p2->id, sizeof (struct GNUNET_PeerIdentity)))
323 {
324 p2_c_notify = GNUNET_YES;
325 t = p2;
326 }
327 GNUNET_assert (t != NULL);
328
329 char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
330
331 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
332 "Peer %u (`%4s'): peer %u (`%s') connected to me!\n", p->no, ps,
333 t->no, GNUNET_i2s (peer));
334 if (p1_c_notify && p2_c_notify)
335 GNUNET_SCHEDULER_add_now(&done, NULL);
336 GNUNET_free (ps);
337}
338
339
340static void
341notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
342{
343 struct PeerContext *p = cls;
344 char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
345
346 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
347 "Peer %u (`%4s'): peer (`%s') disconnected from me!\n", p->no, ps,
348 GNUNET_i2s (peer));
349
350 GNUNET_free (ps);
351
352 if (th != NULL)
353 GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
354 th = NULL;
355}
356
357
358static void
359testing_connect_cb (struct PeerContext *p1, struct PeerContext *p2, void *cls)
360{
361 cc = NULL;
362 char *p1_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
363
364 GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Peers connected: %u (%s) <-> %u (%s)\n",
365 p1->no, p1_c, p2->no, GNUNET_i2s (&p2->id));
366 GNUNET_free (p1_c);
367
368 s_connected = GNUNET_YES;
369 send_task = GNUNET_SCHEDULER_add_now (&sendtask, NULL);
370}
371
372
373static void
374start_cb (struct PeerContext *p, void *cls)
375{
376 static int started;
377
378 started++;
379
380 GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Peer %u (`%s') started\n", p->no,
381 GNUNET_i2s (&p->id));
382
383 if (started != 2)
384 return;
385 else
386 s_started = GNUNET_YES;
387 char *sender_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
388
389 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
390 "Test tries to connect peer %u (`%s') -> peer %u (`%s')\n",
391 p1->no, sender_c, p2->no, GNUNET_i2s (&p2->id));
392 GNUNET_free (sender_c);
393
394 cc = GNUNET_TRANSPORT_TESTING_connect_peers (tth, p1, p2, &testing_connect_cb,
395 NULL);
396
397}
398
399static void
400monitor1_cb (void *cls,
401 const struct GNUNET_HELLO_Address *address,
402 struct GNUNET_TIME_Absolute last_validation,
403 struct GNUNET_TIME_Absolute valid_until,
404 struct GNUNET_TIME_Absolute next_validation,
405 enum GNUNET_TRANSPORT_ValidationState state)
406{
407 if ((NULL == address) || (NULL == p1))
408 return;
409
410 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
411 "Monitor 1: %s %s %s\n",
412 GNUNET_i2s (&address->peer),
413 GNUNET_TRANSPORT_vs2s (state),
414 GNUNET_STRINGS_absolute_time_to_string(valid_until));
415 if (0 == memcmp (&address->peer,
416 &p2->id,
417 sizeof (p2->id)))
418 p1_c++;
419}
420
421
422static void
423monitor2_cb (void *cls,
424 const struct GNUNET_HELLO_Address *address,
425 struct GNUNET_TIME_Absolute last_validation,
426 struct GNUNET_TIME_Absolute valid_until,
427 struct GNUNET_TIME_Absolute next_validation,
428 enum GNUNET_TRANSPORT_ValidationState state)
429{
430 if ((NULL == address) || (NULL == p2))
431 return;
432
433 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
434 "Monitor 2: %s %s %s\n",
435 GNUNET_i2s (&address->peer),
436 GNUNET_TRANSPORT_vs2s(state),
437 GNUNET_STRINGS_absolute_time_to_string(valid_until));
438 if (0 == memcmp (&address->peer,
439 &p1->id,
440 sizeof (p1->id)))
441 p2_c++;
442}
443
444
445static void
446run (void *cls, char *const *args, const char *cfgfile,
447 const struct GNUNET_CONFIGURATION_Handle *cfg)
448{
449 die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
450
451 s_started = GNUNET_NO;
452 s_connected = GNUNET_NO;
453 s_sending = GNUNET_NO;
454
455 p1 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p1, 1,
456 &notify_receive, &notify_connect,
457 &notify_disconnect, &start_cb,
458 NULL);
459 vmc_p1 = GNUNET_TRANSPORT_monitor_validation_entries (p1->cfg, NULL, GNUNET_NO, GNUNET_TIME_UNIT_FOREVER_REL, &monitor1_cb, NULL);
460
461 p2 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p2, 2,
462 &notify_receive, &notify_connect,
463 &notify_disconnect, &start_cb,
464 NULL);
465 vmc_p2 = GNUNET_TRANSPORT_monitor_validation_entries (p2->cfg, NULL, GNUNET_NO, GNUNET_TIME_UNIT_FOREVER_REL, &monitor2_cb, NULL);
466
467 if ((p1 == NULL) || (p2 == NULL))
468 {
469 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Fail! Could not start peers!\n");
470 if (die_task != NULL)
471 GNUNET_SCHEDULER_cancel (die_task);
472 die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
473 return;
474 }
475}
476
477
478static int
479check ()
480{
481 static char *const argv[] = { "test-transport-api",
482 "-c",
483 "test_transport_api_data.conf",
484 NULL
485 };
486 static struct GNUNET_GETOPT_CommandLineOption options[] = {
487 GNUNET_GETOPT_OPTION_END
488 };
489
490 send_task = NULL;
491
492 ok = 1;
493 GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, test_name,
494 "nohelp", options, &run, &ok);
495
496 return ok;
497}
498
499int
500main (int argc, char *argv[])
501{
502 int ret;
503
504 ok = 1;
505
506 GNUNET_TRANSPORT_TESTING_get_test_name (argv[0], &test_name);
507 GNUNET_TRANSPORT_TESTING_get_test_source_name (__FILE__, &test_source);
508 GNUNET_TRANSPORT_TESTING_get_test_plugin_name (argv[0], test_source,
509 &test_plugin);
510
511 GNUNET_log_setup (test_name,
512 "WARNING",
513 NULL);
514 tth = GNUNET_TRANSPORT_TESTING_init ();
515
516 GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p1, 1);
517 GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p2, 2);
518
519 ret = check ();
520
521 GNUNET_free (cfg_file_p1);
522 GNUNET_free (cfg_file_p2);
523
524 GNUNET_free (test_source);
525 GNUNET_free (test_plugin);
526 GNUNET_free (test_name);
527
528 GNUNET_TRANSPORT_TESTING_done (tth);
529
530 if (0 != ret)
531 return ret;
532 else
533 return ok;
534}
535
536/* end of test_transport_api_monitor_validation.c */