Link libgnunetblockgroup to libgnunetblock
[oweals/gnunet.git] / src / util / test_connection_receive_cancel.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2009 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 util/test_connection_receive_cancel.c
22  * @brief tests for connection.c
23  */
24 #include "platform.h"
25 #include "gnunet_util_lib.h"
26
27 #define PORT 12435
28
29
30 static struct GNUNET_CONNECTION_Handle *csock;
31
32 static struct GNUNET_CONNECTION_Handle *asock;
33
34 static struct GNUNET_CONNECTION_Handle *lsock;
35
36 static struct GNUNET_NETWORK_Handle *ls;
37
38 static struct GNUNET_CONFIGURATION_Handle *cfg;
39
40
41 /**
42  * Create and initialize a listen socket for the server.
43  *
44  * @return NULL on error, otherwise the listen socket
45  */
46 static struct GNUNET_NETWORK_Handle *
47 open_listen_socket ()
48 {
49   const static int on = 1;
50   struct sockaddr_in sa;
51   struct GNUNET_NETWORK_Handle *desc;
52
53   memset (&sa, 0, sizeof (sa));
54 #if HAVE_SOCKADDR_IN_SIN_LEN
55   sa.sin_len = sizeof (sa);
56 #endif
57   sa.sin_family = AF_INET;
58   sa.sin_port = htons (PORT);
59   desc = GNUNET_NETWORK_socket_create (AF_INET, SOCK_STREAM, 0);
60   GNUNET_assert (desc != NULL);
61   if (GNUNET_NETWORK_socket_setsockopt
62       (desc, SOL_SOCKET, SO_REUSEADDR, &on, sizeof (on)) != GNUNET_OK)
63     GNUNET_log (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
64                 "setsockopt");
65   GNUNET_assert (GNUNET_OK ==
66                  GNUNET_NETWORK_socket_bind (desc, (const struct sockaddr *) &sa,
67                                              sizeof (sa)));
68   GNUNET_NETWORK_socket_listen (desc, 5);
69   return desc;
70 }
71
72
73 static void
74 dead_receive (void *cls,
75               const void *buf,
76               size_t available,
77               const struct sockaddr *addr,
78               socklen_t addrlen,
79               int errCode)
80 {
81   GNUNET_assert (0);
82 }
83
84
85 static void
86 run_accept_cancel (void *cls)
87 {
88   asock = GNUNET_CONNECTION_create_from_accept (NULL, NULL, ls);
89   GNUNET_assert (asock != NULL);
90   GNUNET_assert (GNUNET_YES == GNUNET_CONNECTION_check (asock));
91   GNUNET_CONNECTION_destroy (lsock);
92   GNUNET_CONNECTION_receive (asock, 1024,
93                              GNUNET_TIME_relative_multiply
94                              (GNUNET_TIME_UNIT_SECONDS, 5),
95                              &dead_receive, cls);
96 }
97
98
99 static void
100 receive_cancel_task (void *cls)
101 {
102   int *ok = cls;
103
104   GNUNET_CONNECTION_receive_cancel (asock);
105   GNUNET_CONNECTION_destroy (csock);
106   GNUNET_CONNECTION_destroy (asock);
107   *ok = 0;
108 }
109
110
111 static void
112 task_receive_cancel (void *cls)
113 {
114   ls = open_listen_socket ();
115   lsock = GNUNET_CONNECTION_create_from_existing (ls);
116   GNUNET_assert (lsock != NULL);
117   csock = GNUNET_CONNECTION_create_from_connect (cfg, "localhost", PORT);
118   GNUNET_assert (csock != NULL);
119   GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
120                                  ls,
121                                  &run_accept_cancel,
122                                  cls);
123   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
124                                 &receive_cancel_task,
125                                 cls);
126 }
127
128
129 /**
130  * Main method, starts scheduler with task_timeout.
131  */
132 static int
133 check_receive_cancel ()
134 {
135   int ok;
136
137   ok = 1;
138   cfg = GNUNET_CONFIGURATION_create ();
139   GNUNET_CONFIGURATION_set_value_string (cfg,
140                                          "resolver",
141                                          "HOSTNAME",
142                                          "localhost");
143   GNUNET_SCHEDULER_run (&task_receive_cancel, &ok);
144   GNUNET_CONFIGURATION_destroy (cfg);
145   return ok;
146 }
147
148
149 int
150 main (int argc, char *argv[])
151 {
152   int ret = 0;
153
154   GNUNET_log_setup ("test_connection_receive_cancel", "WARNING", NULL);
155   ret += check_receive_cancel ();
156
157   return ret;
158 }
159
160 /* end of test_connection_receive_cancel.c */