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