small API change: do no longer pass rarely needed GNUNET_SCHEDULER_TaskContext to...
[oweals/gnunet.git] / src / transport / test_transport_startonly.c
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.c
22  * @brief base test case for transport implementations
23  *
24  * This test case serves as a base for tcp, udp, and udp-nat
25  * transport test cases.  Based on the executable being run
26  * the correct test case will be performed.  Conservation of
27  * C code apparently.
28  */
29 #include "platform.h"
30 #include "gnunet_transport_service.h"
31 #include "transport-testing.h"
32
33 /**
34  * How long until we give up on transmitting the message?
35  */
36 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 90)
37
38 #define ITERATIONS 10
39
40 struct GNUNET_SCHEDULER_Task * timeout_task;
41
42 static struct PeerContext *p1;
43
44 struct GNUNET_TRANSPORT_TESTING_handle *tth;
45
46 static int connected = GNUNET_NO;
47
48 static int ret = 0;
49
50 static int i;
51
52 static void
53 end ()
54 {
55   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stopping peers\n");
56
57   if (timeout_task != NULL)
58   {
59     GNUNET_SCHEDULER_cancel (timeout_task);
60     timeout_task = NULL;
61   }
62   GNUNET_TRANSPORT_TESTING_done (tth);
63   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Exiting\n");
64 }
65
66
67 static void
68 end_badly (void *cls)
69 {
70   const struct GNUNET_SCHEDULER_TaskContext *tc;
71
72   tc = GNUNET_SCHEDULER_get_task_context ();
73   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Fail! Stopping peers\n");
74
75   timeout_task = NULL;
76   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
77     return;
78
79   if (p1 != NULL)
80     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
81   if (NULL != tth)
82     GNUNET_TRANSPORT_TESTING_done (tth);
83   ret = GNUNET_SYSERR;
84 }
85
86 static void
87 notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer)
88 {
89   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%s' connected \n",
90               GNUNET_i2s (peer));
91   connected++;
92 }
93
94 static void
95 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
96 {
97   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%s' disconnected \n",
98               GNUNET_i2s (peer));
99 }
100
101 static void
102 notify_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
103                 const struct GNUNET_MessageHeader *message)
104 {
105   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Receiving\n");
106 }
107
108
109 static void
110 run (void *cls, char *const *args, const char *cfgfile,
111      const struct GNUNET_CONFIGURATION_Handle *cfg)
112 {
113   tth = GNUNET_TRANSPORT_TESTING_init ();
114
115   timeout_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
116
117   i = 1;
118   FPRINTF (stderr, "%i", i);
119   while (i <= ITERATIONS)
120   {
121     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting peer\n");
122     p1 = GNUNET_TRANSPORT_TESTING_start_peer (tth,
123                                               "test_transport_startonly.conf",
124                                               1, &notify_receive,
125                                               &notify_connect,
126                                               &notify_disconnect, NULL, p1);
127
128
129     if (p1 != NULL)
130       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer was successfully started\n");
131     else
132       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
133                   "Peer1 was not started successfully\n");
134     GNUNET_assert (p1 != NULL);
135     GNUNET_assert (p1->th != NULL);
136
137     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
138
139     i++;
140     if (i <= ITERATIONS)
141       FPRINTF (stderr, "..%i", i);
142   }
143
144   FPRINTF (stderr, "%s",  "\n");
145   end ();
146 }
147
148 int
149 main (int argc, char *argv[])
150 {
151   GNUNET_log_setup ("test_transport_testing",
152                     "WARNING",
153
154                     NULL);
155
156   char *const argv_1[] = { "test_transport_testing",
157     "-c",
158     "test_transport_api_data.conf",
159     NULL
160   };
161
162   struct GNUNET_GETOPT_CommandLineOption options[] = {
163     GNUNET_GETOPT_OPTION_END
164   };
165
166   GNUNET_PROGRAM_run ((sizeof (argv_1) / sizeof (char *)) - 1, argv_1,
167                       "test_transport_testing", "nohelp", options, &run, &ret);
168
169   return ret;
170 }
171
172 /* end of test_transport_api.c */