no-verb
[oweals/gnunet.git] / src / util / test_connection.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009 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 2, 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 util/test_connection.c
22  * @brief tests for connection.c
23  */
24 #include "platform.h"
25 #include "gnunet_common.h"
26 #include "gnunet_connection_lib.h"
27 #include "gnunet_scheduler_lib.h"
28 #include "gnunet_time_lib.h"
29
30 #define VERBOSE GNUNET_NO
31
32 #define PORT 12435
33
34
35 static struct GNUNET_CONNECTION_Handle *csock;
36
37 static struct GNUNET_CONNECTION_Handle *asock;
38
39 static struct GNUNET_CONNECTION_Handle *lsock;
40
41 static size_t sofar;
42
43 static struct GNUNET_NETWORK_Handle *ls;
44
45 static struct GNUNET_CONFIGURATION_Handle *cfg;
46
47 /**
48  * Create and initialize a listen socket for the server.
49  *
50  * @return -1 on error, otherwise the listen socket
51  */
52 static struct GNUNET_NETWORK_Handle *
53 open_listen_socket ()
54 {
55   const static int on = 1;
56   struct sockaddr_in sa;
57   struct GNUNET_NETWORK_Handle *desc;
58
59   memset (&sa, 0, sizeof (sa));
60 #if HAVE_SOCKADDR_IN_SIN_LEN
61   sa.sin_len = sizeof (sa);
62 #endif
63   sa.sin_port = htons (PORT);
64   sa.sin_family = AF_INET;
65   desc = GNUNET_NETWORK_socket_socket (AF_INET, SOCK_STREAM, 0);
66   GNUNET_assert (desc != NULL);
67   if (GNUNET_NETWORK_socket_setsockopt (desc, SOL_SOCKET, SO_REUSEADDR, &on, sizeof (on)) != GNUNET_OK)
68     GNUNET_log (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
69                 "setsockopt");
70   GNUNET_assert (GNUNET_NETWORK_socket_bind (desc, 
71                                              (const struct sockaddr*) &sa,
72                                              sizeof (sa)) == GNUNET_OK);
73   GNUNET_NETWORK_socket_listen (desc, 5);
74   return desc;
75 }
76
77 static void
78 receive_check (void *cls,
79                const void *buf,
80                size_t available,
81                const struct sockaddr *addr, socklen_t addrlen, int errCode)
82 {
83   int *ok = cls;
84
85 #if VERBOSE
86   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Receive validates incoming data\n");
87 #endif
88   GNUNET_assert (buf != NULL);  /* no timeout */
89   if (0 == memcmp (&"Hello World"[sofar], buf, available))
90     sofar += available;
91   if (sofar < 12)
92     {
93 #if VERBOSE
94       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Receive needs more data\n");
95 #endif
96       GNUNET_CONNECTION_receive (asock,
97                               1024,
98                               GNUNET_TIME_relative_multiply
99                               (GNUNET_TIME_UNIT_SECONDS, 5), &receive_check,
100                               cls);
101     }
102   else
103     {
104 #if VERBOSE
105       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
106                   "Receive closes accepted socket\n");
107 #endif
108       *ok = 0;
109       GNUNET_CONNECTION_destroy (asock);
110     }
111 }
112
113
114 static void
115 run_accept (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
116 {
117 #if VERBOSE
118   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Test accepts connection\n");
119 #endif
120   asock = GNUNET_CONNECTION_create_from_accept (tc->sched,
121                                                 NULL, NULL, ls, 1024);
122   GNUNET_assert (asock != NULL);
123   GNUNET_assert (GNUNET_YES == GNUNET_CONNECTION_check (asock));
124 #if VERBOSE
125   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Test destroys listen socket\n");
126 #endif
127   GNUNET_CONNECTION_destroy (lsock);
128 #if VERBOSE
129   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
130               "Test asks to receive on accepted socket\n");
131 #endif
132   GNUNET_CONNECTION_receive (asock,
133                           1024,
134                           GNUNET_TIME_relative_multiply
135                           (GNUNET_TIME_UNIT_SECONDS, 5), &receive_check, cls);
136 }
137
138 static size_t
139 make_hello (void *cls, size_t size, void *buf)
140 {
141 #if VERBOSE
142   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
143               "Test prepares to transmit on connect socket\n");
144 #endif
145   GNUNET_assert (size >= 12);
146   strcpy ((char *) buf, "Hello World");
147   return 12;
148 }
149
150 static void
151 task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
152 {
153   ls = open_listen_socket ();
154   lsock = GNUNET_CONNECTION_create_from_existing (tc->sched, ls, 0);
155   GNUNET_assert (lsock != NULL);
156   csock = GNUNET_CONNECTION_create_from_connect (tc->sched,
157                                                  cfg,
158                                                  "localhost", PORT, 1024);
159   GNUNET_assert (csock != NULL);
160 #if VERBOSE
161   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Test asks for write notification\n");
162 #endif
163   GNUNET_assert (NULL !=
164                  GNUNET_CONNECTION_notify_transmit_ready (csock,
165                                                        12,
166                                                        GNUNET_TIME_UNIT_SECONDS,
167                                                        &make_hello, NULL));
168 #if VERBOSE
169   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Test destroys client socket\n");
170 #endif
171   GNUNET_CONNECTION_destroy (csock);
172 #if VERBOSE
173   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Test prepares to accept\n");
174 #endif
175   GNUNET_SCHEDULER_add_read_net (tc->sched,
176                              GNUNET_NO,
177                              GNUNET_SCHEDULER_PRIORITY_HIGH,
178                              GNUNET_SCHEDULER_NO_TASK,
179                              GNUNET_TIME_UNIT_FOREVER_REL,
180                              ls, &run_accept, cls);
181 }
182
183
184 /**
185  * Main method, starts scheduler with task ,
186  * checks that "ok" is correct at the end.
187  */
188 static int
189 check ()
190 {
191   int ok;
192
193   ok = 1;
194   cfg = GNUNET_CONFIGURATION_create ();
195   GNUNET_CONFIGURATION_set_value_string (cfg,
196                                          "resolver", "HOSTNAME", "localhost");
197   GNUNET_SCHEDULER_run (&task, &ok);
198   GNUNET_CONFIGURATION_destroy (cfg);
199   return ok;
200 }
201
202
203
204 int
205 main (int argc, char *argv[])
206 {
207   int ret = 0;
208
209   GNUNET_log_setup ("test_connection",
210 #if VERBOSE
211                     "DEBUG",
212 #else
213                     "WARNING",
214 #endif
215                     NULL);
216   ret += check ();
217   return ret;
218 }
219
220 /* end of test_connection.c */