fixing warnings
[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
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   sa.sin_port = htons (PORT);
61   sa.sin_family = AF_INET;
62   desc = GNUNET_NETWORK_socket_socket (AF_INET, SOCK_STREAM, 0);
63   GNUNET_assert (desc != NULL);
64   if (GNUNET_NETWORK_socket_setsockopt (desc, SOL_SOCKET, SO_REUSEADDR, &on, sizeof (on)) != GNUNET_OK)
65     GNUNET_log (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
66                 "setsockopt");
67   GNUNET_assert (GNUNET_NETWORK_socket_bind (desc, 
68                                              (const struct sockaddr*) &sa,
69                                              sizeof (sa)) == GNUNET_OK);
70   GNUNET_NETWORK_socket_listen (desc, 5);
71   return desc;
72 }
73
74 static void
75 receive_check (void *cls,
76                const void *buf,
77                size_t available,
78                const struct sockaddr *addr, socklen_t addrlen, int errCode)
79 {
80   int *ok = cls;
81
82 #if VERBOSE
83   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Receive validates incoming data\n");
84 #endif
85   GNUNET_assert (buf != NULL);  /* no timeout */
86   if (0 == memcmp (&"Hello World"[sofar], buf, available))
87     sofar += available;
88   if (sofar < 12)
89     {
90 #if VERBOSE
91       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Receive needs more data\n");
92 #endif
93       GNUNET_CONNECTION_receive (asock,
94                               1024,
95                               GNUNET_TIME_relative_multiply
96                               (GNUNET_TIME_UNIT_SECONDS, 5), &receive_check,
97                               cls);
98     }
99   else
100     {
101 #if VERBOSE
102       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
103                   "Receive closes accepted socket\n");
104 #endif
105       *ok = 0;
106       GNUNET_CONNECTION_destroy (asock);
107     }
108 }
109
110
111 static void
112 run_accept (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
113 {
114 #if VERBOSE
115   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Test accepts connection\n");
116 #endif
117   asock = GNUNET_CONNECTION_create_from_accept (tc->sched,
118                                                 NULL, NULL, ls, 1024);
119   GNUNET_assert (asock != NULL);
120   GNUNET_assert (GNUNET_YES == GNUNET_CONNECTION_check (asock));
121 #if VERBOSE
122   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Test destroys listen socket\n");
123 #endif
124   GNUNET_CONNECTION_destroy (lsock);
125 #if VERBOSE
126   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
127               "Test asks to receive on accepted socket\n");
128 #endif
129   GNUNET_CONNECTION_receive (asock,
130                           1024,
131                           GNUNET_TIME_relative_multiply
132                           (GNUNET_TIME_UNIT_SECONDS, 5), &receive_check, cls);
133 }
134
135 static size_t
136 make_hello (void *cls, size_t size, void *buf)
137 {
138 #if VERBOSE
139   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
140               "Test prepares to transmit on connect socket\n");
141 #endif
142   GNUNET_assert (size >= 12);
143   strcpy ((char *) buf, "Hello World");
144   return 12;
145 }
146
147 static void
148 task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
149 {
150   ls = open_listen_socket ();
151   lsock = GNUNET_CONNECTION_create_from_existing (tc->sched, ls, 0);
152   GNUNET_assert (lsock != NULL);
153   csock = GNUNET_CONNECTION_create_from_connect (tc->sched,
154                                                      "localhost", PORT, 1024);
155   GNUNET_assert (csock != NULL);
156 #if VERBOSE
157   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Test asks for write notification\n");
158 #endif
159   GNUNET_assert (NULL !=
160                  GNUNET_CONNECTION_notify_transmit_ready (csock,
161                                                        12,
162                                                        GNUNET_TIME_UNIT_SECONDS,
163                                                        &make_hello, NULL));
164 #if VERBOSE
165   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Test destroys client socket\n");
166 #endif
167   GNUNET_CONNECTION_destroy (csock);
168 #if VERBOSE
169   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Test prepares to accept\n");
170 #endif
171   GNUNET_SCHEDULER_add_read_net (tc->sched,
172                              GNUNET_NO,
173                              GNUNET_SCHEDULER_PRIORITY_HIGH,
174                              GNUNET_SCHEDULER_NO_TASK,
175                              GNUNET_TIME_UNIT_FOREVER_REL,
176                              ls, &run_accept, cls);
177 }
178
179
180 /**
181  * Main method, starts scheduler with task ,
182  * checks that "ok" is correct at the end.
183  */
184 static int
185 check ()
186 {
187   int ok;
188
189   ok = 1;
190   GNUNET_SCHEDULER_run (&task, &ok);
191   return ok;
192 }
193
194
195
196 int
197 main (int argc, char *argv[])
198 {
199   int ret = 0;
200
201   GNUNET_log_setup ("test_connection",
202 #if VERBOSE
203                     "DEBUG",
204 #else
205                     "WARNING",
206 #endif
207                     NULL);
208   ret += check ();
209   return ret;
210 }
211
212 /* end of test_connection.c */