fix check for close
[oweals/gnunet.git] / src / util / test_connection_addressing.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_addressing.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_Descriptor *ls;
44
45
46
47 /**
48  * Create and initialize a listen socket for the server.
49  *
50  * @return NULL on error, otherwise the listen socket
51  */
52 static struct GNUNET_NETWORK_Descriptor *
53 open_listen_socket ()
54 {
55   const static int on = 1;
56   struct sockaddr_in sa;
57   struct GNUNET_NETWORK_Descriptor *desc;
58
59   memset (&sa, 0, sizeof (sa));
60   sa.sin_port = htons (PORT);
61   desc = GNUNET_NETWORK_socket_socket (AF_INET, SOCK_STREAM, 0);
62   GNUNET_assert (desc != 0);
63   if (GNUNET_NETWORK_socket_setsockopt (desc, SOL_SOCKET, SO_REUSEADDR, &on, sizeof (on)) < 0)
64     GNUNET_log (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
65                 "setsockopt");
66   GNUNET_assert (GNUNET_NETWORK_socket_bind (desc,
67                                              (const struct sockaddr*) &sa,
68                                              sizeof (sa)) >= 0);
69   GNUNET_NETWORK_socket_listen (desc, 5);
70   return desc;
71 }
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   GNUNET_assert (buf != NULL);  /* no timeout */
83   if (0 == memcmp (&"Hello World"[sofar], buf, available))
84     sofar += available;
85   if (sofar < 12)
86     {
87       GNUNET_CONNECTION_receive (asock,
88                               1024,
89                               GNUNET_TIME_relative_multiply
90                               (GNUNET_TIME_UNIT_SECONDS, 5), &receive_check,
91                               cls);
92     }
93   else
94     {
95       *ok = 0;
96       GNUNET_CONNECTION_destroy (asock);
97     }
98 }
99
100
101 static void
102 run_accept (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
103 {
104   void *addr;
105   size_t alen;
106   struct sockaddr_in *v4;
107   struct sockaddr_in expect;
108
109   asock = GNUNET_CONNECTION_create_from_accept (tc->sched,
110                                                     NULL, NULL, ls, 1024);
111   GNUNET_assert (asock != NULL);
112   GNUNET_assert (GNUNET_YES == GNUNET_CONNECTION_check (asock));
113   GNUNET_assert (GNUNET_OK ==
114                  GNUNET_CONNECTION_get_address (asock, &addr, &alen));
115   GNUNET_assert (alen == sizeof (struct sockaddr_in));
116   v4 = addr;
117   memset (&expect, 0, sizeof (expect));
118   expect.sin_family = AF_INET;
119   expect.sin_port = v4->sin_port;
120   expect.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
121   GNUNET_assert (0 == memcmp (&expect, v4, alen));
122   GNUNET_free (addr);
123   GNUNET_CONNECTION_destroy (lsock);
124   GNUNET_CONNECTION_receive (asock,
125                           1024,
126                           GNUNET_TIME_relative_multiply
127                           (GNUNET_TIME_UNIT_SECONDS, 5), &receive_check, cls);
128 }
129
130 static size_t
131 make_hello (void *cls, size_t size, void *buf)
132 {
133   GNUNET_assert (size >= 12);
134   strcpy ((char *) buf, "Hello World");
135   return 12;
136 }
137
138 static void
139 task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
140 {
141   struct sockaddr_in v4;
142   ls = open_listen_socket ();
143   lsock = GNUNET_CONNECTION_create_from_existing (tc->sched, ls, 0);
144   GNUNET_assert (lsock != NULL);
145
146   v4.sin_family = AF_INET;
147   v4.sin_port = htons (PORT);
148   v4.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
149   csock = GNUNET_CONNECTION_create_from_sockaddr (tc->sched,
150                                                       AF_INET,
151                                                       (const struct sockaddr
152                                                        *) &v4, sizeof (v4),
153                                                       1024);
154   GNUNET_assert (csock != NULL);
155   GNUNET_assert (NULL !=
156                  GNUNET_CONNECTION_notify_transmit_ready (csock,
157                                                        12,
158                                                        GNUNET_TIME_UNIT_SECONDS,
159                                                        &make_hello, NULL));
160   GNUNET_CONNECTION_destroy (csock);
161   GNUNET_SCHEDULER_add_read_net (tc->sched,
162                              GNUNET_NO,
163                              GNUNET_SCHEDULER_PRIORITY_HIGH,
164                              GNUNET_SCHEDULER_NO_TASK,
165                              GNUNET_TIME_UNIT_FOREVER_REL,
166                              ls, &run_accept, cls);
167 }
168
169
170 /**
171  * Main method, starts scheduler with task ,
172  * checks that "ok" is correct at the end.
173  */
174 static int
175 check ()
176 {
177   int ok;
178
179   ok = 1;
180   GNUNET_SCHEDULER_run (&task, &ok);
181   return ok;
182 }
183
184
185
186 int
187 main (int argc, char *argv[])
188 {
189   int ret = 0;
190
191   GNUNET_log_setup ("test_connection_addressing", 
192 #if VERBOSE
193                     "DEBUG",
194 #else
195                     "WARNING", 
196 #endif
197                     NULL);
198   ret += check ();
199   return ret;
200 }
201
202 /* end of test_connection_addressing.c */