21dd417bf17eca61c70ffc3da2aec9aa8ac222ed
[oweals/gnunet.git] / src / transport / test_transport_address_switch.c
1 /*
2  This file is part of GNUnet.
3  (C) 2009, 2010, 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  * @file transport/test_transport_address_switch.c
22  * @brief base test case for transport implementations
23  *
24  * This test case tests if peers can successfully switch address when connected
25  * connected
26  */
27 #include "platform.h"
28 #include "gnunet_transport_service.h"
29 #include "gnunet_ats_service.h"
30 #include "gauger.h"
31 #include "transport-testing.h"
32
33 /*
34  * Testcase specific declarations
35  */
36
37 GNUNET_NETWORK_STRUCT_BEGIN
38 struct TestMessage
39 {
40   struct GNUNET_MessageHeader header;
41   uint32_t num;
42 };
43 GNUNET_NETWORK_STRUCT_END
44
45 /**
46  * Note that this value must not significantly exceed
47  * 'MAX_PENDING' in 'gnunet-service-transport.c', otherwise
48  * messages may be dropped even for a reliable transport.
49  */
50 #define TOTAL_MSGS (4096 * 2)
51
52 /**
53  * Message type for test messages
54  */
55 #define MTYPE 12345
56
57 /**
58  * Testcase timeout
59  */
60 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 120)
61
62 /**
63  * How long until we give up on transmitting the message?
64  */
65 #define TIMEOUT_TRANSMIT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
66
67 #define DURATION GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
68 #define DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
69
70 static GNUNET_SCHEDULER_TaskIdentifier die_task;
71
72 static GNUNET_SCHEDULER_TaskIdentifier delayed_end_task;
73
74 static GNUNET_SCHEDULER_TaskIdentifier measure_task;
75
76 struct PeerContext *p1;
77 char *cfg_file_p1;
78 struct GNUNET_STATISTICS_Handle *p1_stat;
79
80 struct PeerContext *p2;
81 char *cfg_file_p2;
82 struct GNUNET_STATISTICS_Handle *p2_stat;
83
84 struct PeerContext *sender;
85
86 struct PeerContext *receiver;
87
88 struct GNUNET_TRANSPORT_TransmitHandle *th;
89
90 static int test_connected;
91 static int res;
92
93 struct GNUNET_TRANSPORT_TESTING_handle *tth;
94
95 static GNUNET_TRANSPORT_TESTING_ConnectRequest cc;
96
97 static unsigned int p1_switch_attempts;
98 static unsigned int p1_switch_success;
99 static unsigned int p1_switch_fail;
100 static unsigned int p1_addresses_avail;
101
102 static unsigned int p2_switch_attempts;
103 static unsigned int p2_switch_success;
104 static unsigned int p2_switch_fail;
105 static unsigned int p2_addresses_avail;
106
107 static unsigned long long bytes_sent_total;
108 static unsigned long long bytes_recv_total;
109
110 static unsigned long long bytes_sent_after_switch;
111 static unsigned long long bytes_recv_after_switch;
112
113 static struct GNUNET_TIME_Absolute start_time;
114 static struct GNUNET_TIME_Absolute start_time;
115
116 /*
117  * END Testcase specific declarations
118  */
119
120 #if VERBOSE
121 #define OKPP do { ok++; FPRINTF (stderr, "Now at stage %u at %s:%u\n", ok, __FILE__, __LINE__); } while (0)
122 #else
123 #define OKPP do { ok++; } while (0)
124 #endif
125
126 static void end ();
127
128 static int
129 stat_start_attempt_cb (void *cls, const char *subsystem, const char *name,
130     uint64_t value, int is_persistent)
131 {
132   if (cls == p1)
133   {
134     p1_switch_attempts++;
135     FPRINTF (stderr, "Peer 1 tries to switch.");
136   }
137   else if (cls == p2)
138   {
139     p2_switch_attempts++;
140     FPRINTF (stderr, "Peer 2 tries to switch.");
141   }
142   else
143     return GNUNET_OK;
144
145   if (GNUNET_SCHEDULER_NO_TASK == delayed_end_task)
146     delayed_end_task = GNUNET_SCHEDULER_add_delayed (DELAY, &end, NULL );
147   return GNUNET_OK;
148 }
149
150
151 static int
152 stat_success_attempt_cb (void *cls, const char *subsystem, const char *name,
153     uint64_t value, int is_persistent)
154 {
155   if (cls == p1)
156   {
157     p1_switch_success++;
158     FPRINTF (stderr, "Peer 1 switched successfully.");
159   }
160   if (cls == p2)
161   {
162     p2_switch_success++;
163     FPRINTF (stderr, "Peer 2 switched successfully.");
164   }
165
166   return GNUNET_OK;
167 }
168
169
170 static int
171 stat_fail_attempt_cb (void *cls, const char *subsystem, const char *name,
172     uint64_t value, int is_persistent)
173 {
174   if (value == 0)
175     return GNUNET_OK;
176
177   if (cls == p1)
178   {
179     p1_switch_fail++;
180     FPRINTF (stderr, "Peer 1 failed to switch.");
181   }
182   if (cls == p2)
183   {
184     p2_switch_fail++;
185     FPRINTF (stderr, "Peer 2 failed to switch.");
186   }
187
188   return GNUNET_OK;
189 }
190
191 static int
192 stat_addresses_available (void *cls, const char *subsystem, const char *name,
193     uint64_t value, int is_persistent)
194 {
195   if (cls == p1)
196   {
197     p1_addresses_avail++;
198   }
199   if (cls == p2)
200   {
201     p2_addresses_avail++;
202   }
203
204   return GNUNET_OK;
205 }
206
207 static void
208 clean_up ()
209 {
210   if (measure_task != GNUNET_SCHEDULER_NO_TASK )
211   {
212     GNUNET_SCHEDULER_cancel (measure_task);
213     measure_task = GNUNET_SCHEDULER_NO_TASK;
214   }
215
216   if (delayed_end_task != GNUNET_SCHEDULER_NO_TASK )
217   {
218     GNUNET_SCHEDULER_cancel (delayed_end_task);
219     delayed_end_task = GNUNET_SCHEDULER_NO_TASK;
220   }
221
222   if (die_task != GNUNET_SCHEDULER_NO_TASK )
223   {
224     GNUNET_SCHEDULER_cancel (die_task);
225     die_task = GNUNET_SCHEDULER_NO_TASK;
226   }
227
228   if (NULL != p1_stat)
229   {
230     GNUNET_STATISTICS_watch_cancel (p1_stat, "transport",
231         "# Attempts to switch addresses", stat_start_attempt_cb, p1);
232     GNUNET_STATISTICS_watch_cancel (p1_stat, "transport",
233         "# Successful attempts to switch addresses", stat_success_attempt_cb, p1);
234     GNUNET_STATISTICS_watch_cancel (p1_stat, "transport",
235         "# Failed attempts to switch addresses (failed to send CONNECT CONT)",
236         stat_fail_attempt_cb, p1);
237     GNUNET_STATISTICS_watch_cancel (p1_stat, "transport",
238         "# Failed attempts to switch addresses (failed to send CONNECT)",
239         stat_fail_attempt_cb, p1);
240     GNUNET_STATISTICS_watch_cancel (p1_stat, "transport",
241         "# Failed attempts to switch addresses (no response)",
242         stat_fail_attempt_cb, p1);
243     GNUNET_STATISTICS_watch (p1_stat, "transport",
244         "# transport addresses",
245         stat_addresses_available, p1);
246     GNUNET_STATISTICS_destroy (p1_stat, GNUNET_NO);
247     p1_stat = NULL;
248   }
249   if (NULL != p2_stat)
250   {
251     GNUNET_STATISTICS_watch_cancel (p2_stat, "transport",
252         "# Attempts to switch addresses", stat_start_attempt_cb, p2);
253     GNUNET_STATISTICS_watch_cancel (p2_stat, "transport",
254         "# Successful attempts to switch addresses", stat_success_attempt_cb, p2);
255     GNUNET_STATISTICS_watch_cancel (p2_stat, "transport",
256         "# Failed attempts to switch addresses (failed to send CONNECT CONT)",
257         stat_fail_attempt_cb, p2);
258     GNUNET_STATISTICS_watch_cancel (p2_stat, "transport",
259         "# Failed attempts to switch addresses (failed to send CONNECT)",
260         stat_fail_attempt_cb, p2);
261     GNUNET_STATISTICS_watch_cancel (p2_stat, "transport",
262         "# Failed attempts to switch addresses (no response)",
263         stat_fail_attempt_cb, p2);
264     GNUNET_STATISTICS_watch (p1_stat, "transport",
265         "# transport addresses",
266         stat_addresses_available, p1);
267     GNUNET_STATISTICS_destroy (p2_stat, GNUNET_NO);
268     p2_stat = NULL;
269   }
270
271   if (die_task != GNUNET_SCHEDULER_NO_TASK )
272   {
273     GNUNET_SCHEDULER_cancel (die_task);
274     die_task = GNUNET_SCHEDULER_NO_TASK;
275   }
276
277   if (th != NULL )
278   {
279     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
280     th = NULL;
281   }
282
283   if (cc != NULL )
284   {
285     GNUNET_TRANSPORT_TESTING_connect_peers_cancel (tth, cc);
286     cc = NULL;
287   }
288
289   if (p1 != NULL )
290   {
291     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
292     p1 = NULL;
293   }
294   if (p2 != NULL )
295   {
296     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
297     p2 = NULL;
298   }
299
300 }
301
302
303 static void
304 end ()
305 {
306   int result = 0;
307   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Stopping peers\n");
308
309   delayed_end_task = GNUNET_SCHEDULER_NO_TASK;
310   FPRINTF (stderr, "\n");
311   if (p1_switch_attempts > 0)
312   {
313     FPRINTF (stderr, "Peer 1 tried %u times to switch and succeeded %u times, failed %u times\n",
314         p1_switch_attempts, p1_switch_success, p1_switch_fail);
315     if (p1_switch_success != p1_switch_attempts)
316       result ++;
317   }
318   else
319   {
320     FPRINTF (stderr, "Peer 1 had %u addresses available, but did not try to switch\n",
321         p1_addresses_avail);
322   }
323   if (p2_switch_attempts > 0)
324   {
325     FPRINTF (stderr, "Peer 2 tried %u times to switch and succeeded %u times, failed %u times\n",
326         p2_switch_attempts, p2_switch_success, p2_switch_fail);
327     if (p2_switch_success != p2_switch_attempts)
328       result ++;
329   }
330   else
331   {
332     FPRINTF (stderr, "Peer 2 had %u addresses available, but did not try to switch\n",
333         p2_addresses_avail);
334   }
335
336   if ( ((p1_switch_attempts > 0) || (p2_switch_attempts > 0)) &&
337        (bytes_sent_after_switch == 0) )
338   {
339     FPRINTF (stderr, "No data sent after switching!\n");
340     res ++;
341   }
342   if ( ((p1_switch_attempts > 0) || (p2_switch_attempts > 0)) &&
343        (bytes_recv_after_switch == 0) )
344   {
345     FPRINTF (stderr, "No data received after switching!\n");
346     res ++;
347   }
348
349   clean_up();
350
351   res = result;
352 }
353
354
355 static void
356 end_badly ()
357 {
358   die_task = GNUNET_SCHEDULER_NO_TASK;
359   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Fail! Stopping peers\n");
360
361   FPRINTF (stderr, "Peer 1 had %u addresses available, but did not try to switch\n",
362       p1_addresses_avail);
363   FPRINTF (stderr, "Peer 2 had %u addresses available, but did not try to switch\n",
364       p2_addresses_avail);
365
366   if (test_connected == GNUNET_YES)
367     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Peers got connected\n");
368   else
369     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Peers got NOT connected\n");
370
371   clean_up();
372
373   res = GNUNET_YES;
374 }
375
376
377 static unsigned int
378 get_size (unsigned int iter)
379 {
380   unsigned int ret;
381   ret = (iter * iter * iter);
382   return sizeof(struct TestMessage) + (ret % 60000);
383 }
384
385
386 static void
387 notify_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
388     const struct GNUNET_MessageHeader *message)
389 {
390   const struct TestMessage *hdr;
391
392   hdr = (const struct TestMessage *) message;
393   if (MTYPE != ntohs (message->type))
394     return;
395
396   struct PeerContext *p = cls;
397   char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
398
399   GNUNET_log(GNUNET_ERROR_TYPE_INFO,
400       "Peer %u (`%s') got message %u of size %u from peer (`%s')\n", p->no, ps,
401       ntohl (hdr->num), ntohs (message->size), GNUNET_i2s (peer));
402
403   bytes_recv_total += ntohs(hdr->header.size);
404   if ((p1_switch_attempts > 0) || (p2_switch_attempts > 0))
405     bytes_recv_after_switch += ntohs(hdr->header.size);
406
407   GNUNET_free(ps);
408 }
409
410
411 static size_t
412 notify_ready (void *cls, size_t size, void *buf)
413 {
414   static int n;
415   char *cbuf = buf;
416   struct TestMessage hdr;
417   unsigned int s;
418   unsigned int ret;
419
420   th = NULL;
421   if (buf == NULL )
422   {
423     GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
424         "Timeout occurred while waiting for transmit_ready for message\n");
425     if (GNUNET_SCHEDULER_NO_TASK != die_task)
426       GNUNET_SCHEDULER_cancel (die_task);
427     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL );
428     res = 1;
429     return 0;
430   }
431
432   ret = 0;
433   s = get_size (n);
434   GNUNET_assert(size >= s);
435   GNUNET_assert(buf != NULL);
436   cbuf = buf;
437   do
438   {
439     hdr.header.size = htons (s);
440     hdr.header.type = htons (MTYPE);
441     hdr.num = htonl (n);
442     memcpy (&cbuf[ret], &hdr, sizeof(struct TestMessage));
443     ret += sizeof(struct TestMessage);
444     memset (&cbuf[ret], n, s - sizeof(struct TestMessage));
445     ret += s - sizeof(struct TestMessage);
446 #if VERBOSE
447     if (n % 5000 == 0)
448     {
449 #endif
450     char *receiver_s = GNUNET_strdup (GNUNET_i2s (&receiver->id));
451
452     GNUNET_log(GNUNET_ERROR_TYPE_INFO,
453         "Sending message %u of size %u from peer %u (`%4s') -> peer %u (`%s') !\n",
454         n, s, sender->no, GNUNET_i2s (&sender->id), receiver->no, receiver_s);
455     GNUNET_free(receiver_s);
456 #if 0
457   }
458 #endif
459     n++;
460     s = get_size (n);
461     if (0 == GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 16))
462       break; /* sometimes pack buffer full, sometimes not */
463   }
464   while (size - ret >= s);
465   if (n < TOTAL_MSGS)
466   {
467     if (th == NULL )
468       th = GNUNET_TRANSPORT_notify_transmit_ready (p2->th, &p1->id, s,
469           TIMEOUT_TRANSMIT, &notify_ready, NULL );
470   }
471   if (n % 5000 == 0)
472   {
473
474   }
475   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
476       "Returning total message block of size %u\n", ret);
477
478   bytes_sent_total += ret;
479   if ((p1_switch_attempts > 0) || (p2_switch_attempts > 0))
480     bytes_sent_after_switch += ret;
481
482   if (n == TOTAL_MSGS)
483   {
484     FPRINTF (stderr, "%s", "\n");
485     GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "All messages sent\n");
486   }
487   return ret;
488 }
489
490
491 static void
492 notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer)
493 {
494   struct PeerContext *p = cls;
495   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Peer %u (`%4s') connected to us!\n",
496       p->no, GNUNET_i2s (peer));
497 }
498
499
500 static void
501 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
502 {
503   struct PeerContext *p = cls;
504   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Peer %u (`%4s') disconnected!\n", p->no,
505       GNUNET_i2s (peer));
506   if (th != NULL )
507     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
508   th = NULL;
509
510 }
511
512
513 static void
514 sendtask ()
515 {
516   start_time = GNUNET_TIME_absolute_get ();
517   th = GNUNET_TRANSPORT_notify_transmit_ready (p2->th, &p1->id, get_size (0),
518       TIMEOUT_TRANSMIT, &notify_ready, NULL );
519 }
520
521
522 static void
523 measure (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
524 {
525   static int counter;
526
527   measure_task = GNUNET_SCHEDULER_NO_TASK;
528
529   counter++;
530   if ((DURATION.rel_value_us / 1000 / 1000LL) < counter)
531   {
532     FPRINTF (stderr, "%s", ".\n");
533   }
534   else
535   {
536     FPRINTF (stderr, "%s", ".");
537     measure_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
538         &measure, NULL );
539   }
540 }
541
542
543 static void
544 testing_connect_cb (struct PeerContext *p1, struct PeerContext *p2, void *cls)
545 {
546   char *p1_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
547
548   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Peers connected: %u (%s) <-> %u (%s)\n",
549       p1->no, p1_c, p2->no, GNUNET_i2s (&p2->id));
550   GNUNET_free(p1_c);
551
552   cc = NULL;
553   test_connected = GNUNET_YES;
554
555   measure_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
556       &measure, NULL );
557  GNUNET_SCHEDULER_add_now (&sendtask, NULL );
558 }
559
560
561 static void
562 start_cb (struct PeerContext *p, void *cls)
563 {
564   static int started;
565   started++;
566
567   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Peer %u (`%s') started\n", p->no,
568       GNUNET_i2s (&p->id));
569   if (started != 2)
570     return;
571
572   test_connected = GNUNET_NO;
573   sender = p2;
574   receiver = p1;
575
576   char *sender_c = GNUNET_strdup (GNUNET_i2s (&sender->id));
577   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
578       "Test tries to send from %u (%s) -> peer %u (%s)\n", sender->no, sender_c,
579       receiver->no, GNUNET_i2s (&receiver->id));
580   GNUNET_free(sender_c);
581   cc = GNUNET_TRANSPORT_TESTING_connect_peers (tth, p1, p2, &testing_connect_cb,
582       NULL );
583 }
584
585
586 static void
587 run (void *cls, char * const *args, const char *cfgfile,
588     const struct GNUNET_CONFIGURATION_Handle *cfg)
589 {
590   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL );
591
592   p1 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p1, 1,
593       &notify_receive, &notify_connect, &notify_disconnect, &start_cb, NULL );
594
595   p2 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p2, 2,
596       &notify_receive, &notify_connect, &notify_disconnect, &start_cb, NULL );
597
598   if ((p1 == NULL )|| (p2 == NULL))
599   {
600     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Fail! Could not start peers!\n");
601     if (die_task != GNUNET_SCHEDULER_NO_TASK)
602     GNUNET_SCHEDULER_cancel (die_task);
603     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
604     return;
605   }
606
607   p1_stat = GNUNET_STATISTICS_create ("transport", p1->cfg);
608   GNUNET_STATISTICS_watch (p1_stat, "transport",
609       "# Attempts to switch addresses",
610       stat_start_attempt_cb, p1);
611   GNUNET_STATISTICS_watch (p1_stat, "transport",
612       "# Successful attempts to switch addresses",
613       stat_success_attempt_cb, p1);
614   GNUNET_STATISTICS_watch (p1_stat, "transport",
615       "# Failed attempts to switch addresses (failed to send CONNECT CONT)",
616       stat_fail_attempt_cb, p1);
617   GNUNET_STATISTICS_watch (p1_stat, "transport",
618       "# Failed attempts to switch addresses (failed to send CONNECT)",
619       stat_fail_attempt_cb, p1);
620   GNUNET_STATISTICS_watch (p1_stat, "transport",
621       "# Failed attempts to switch addresses (no response)",
622       stat_fail_attempt_cb, p1);
623   GNUNET_STATISTICS_watch (p1_stat, "transport",
624       "# transport addresses",
625       stat_addresses_available, p1);
626
627   p2_stat = GNUNET_STATISTICS_create ("transport", p2->cfg);
628   GNUNET_STATISTICS_watch (p2_stat, "transport",
629       "# Attempts to switch addresses",
630       stat_start_attempt_cb, p2);
631   GNUNET_STATISTICS_watch (p2_stat, "transport",
632       "# Successful attempts to switch addresses",
633       stat_success_attempt_cb, p2);
634   GNUNET_STATISTICS_watch (p2_stat, "transport",
635       "# Failed attempts to switch addresses (failed to send CONNECT CONT)",
636       stat_fail_attempt_cb, p2);
637   GNUNET_STATISTICS_watch (p2_stat, "transport",
638       "# Failed attempts to switch addresses (failed to send CONNECT)",
639       stat_fail_attempt_cb, p2);
640   GNUNET_STATISTICS_watch (p2_stat, "transport",
641       "# Failed attempts to switch addresses (no response)",
642       stat_fail_attempt_cb, p2);
643   GNUNET_STATISTICS_watch (p2_stat, "transport",
644       "# transport addresses",
645       stat_addresses_available, p2);
646
647   if ((p1_stat == NULL )|| (p2_stat == NULL))
648   {
649     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Fail! Could not create statistics for peers!\n");
650     if (die_task != GNUNET_SCHEDULER_NO_TASK)
651     GNUNET_SCHEDULER_cancel (die_task);
652     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
653     return;
654   }
655 }
656
657 int
658 main (int argc, char *argv[])
659 {
660   char *test_plugin;
661   char *test_source;
662   char *test_name;
663
664   static char *argv_new[] = { "test-transport-address-switch", "-c",
665       "test_transport_startonly.conf", NULL };
666
667   static struct GNUNET_GETOPT_CommandLineOption options[] = {
668       GNUNET_GETOPT_OPTION_END };
669
670   GNUNET_TRANSPORT_TESTING_get_test_name (argv[0], &test_name);
671
672   GNUNET_log_setup (test_name, "WARNING", NULL );
673
674   GNUNET_TRANSPORT_TESTING_get_test_source_name (__FILE__, &test_source);
675   GNUNET_TRANSPORT_TESTING_get_test_plugin_name (argv[0], test_source,
676       &test_plugin);
677
678   tth = GNUNET_TRANSPORT_TESTING_init ();
679
680   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p1, 1);
681   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Using cfg [%u] : %s \n", 1, cfg_file_p1);
682   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p2, 2);
683   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Using cfg [%u] : %s \n", 2, cfg_file_p2);
684
685   GNUNET_PROGRAM_run ((sizeof(argv_new) / sizeof(char *)) - 1, argv_new,
686       test_name, "nohelp", options, &run, NULL );
687
688   GNUNET_free(cfg_file_p1);
689   GNUNET_free(cfg_file_p2);
690
691   GNUNET_free(test_source);
692   GNUNET_free(test_plugin);
693   GNUNET_free(test_name);
694
695   GNUNET_TRANSPORT_TESTING_done (tth);
696
697   return res;
698 }
699
700 /* end of test_transport_address_switch.c */