-fixes
[oweals/gnunet.git] / src / util / test_server_disconnect.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010 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_server_disconnect.c
22  * @brief tests for server.c,  specifically GNUNET_SERVER_client_disconnect
23  */
24 #include "platform.h"
25 #include "gnunet_common.h"
26 #include "gnunet_client_lib.h"
27 #include "gnunet_scheduler_lib.h"
28 #include "gnunet_server_lib.h"
29 #include "gnunet_time_lib.h"
30
31 #define VERBOSE GNUNET_NO
32
33 #define PORT 12435
34
35 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, 250)
36
37 #define MY_TYPE 128
38
39 static struct GNUNET_SERVER_Handle *server;
40
41 static struct GNUNET_CLIENT_Connection *cc;
42
43 static struct GNUNET_CONFIGURATION_Handle *cfg;
44
45 static int ok;
46
47
48 static void
49 finish_up (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
50 {
51   GNUNET_assert (ok == 5);
52   ok = 0;
53   GNUNET_SERVER_destroy (server);
54   GNUNET_CLIENT_disconnect (cc, GNUNET_NO);
55   GNUNET_CONFIGURATION_destroy (cfg);
56 }
57
58
59 static void
60 notify_disconnect (void *cls, struct GNUNET_SERVER_Client *clientarg)
61 {
62   if (clientarg == NULL)
63     return;
64   GNUNET_assert (ok == 4);
65   ok = 5;
66   GNUNET_SCHEDULER_add_now (&finish_up, NULL);
67 }
68
69
70 static void
71 server_disconnect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
72 {
73   struct GNUNET_SERVER_Client *argclient = cls;
74
75   GNUNET_assert (ok == 3);
76   ok = 4;
77   GNUNET_SERVER_client_disconnect (argclient);
78   GNUNET_SERVER_client_drop (argclient);
79 }
80
81
82 static void
83 recv_cb (void *cls, struct GNUNET_SERVER_Client *client,
84          const struct GNUNET_MessageHeader *message)
85 {
86   GNUNET_assert (ok == 2);
87   ok = 3;
88   GNUNET_SERVER_client_keep (client);
89   GNUNET_SCHEDULER_add_now (&server_disconnect, client);
90   GNUNET_assert (sizeof (struct GNUNET_MessageHeader) == ntohs (message->size));
91   GNUNET_assert (MY_TYPE == ntohs (message->type));
92   GNUNET_SERVER_receive_done (client, GNUNET_OK);
93 }
94
95
96 static struct GNUNET_SERVER_MessageHandler handlers[] = {
97   {&recv_cb, NULL, MY_TYPE, sizeof (struct GNUNET_MessageHeader)},
98   {NULL, NULL, 0, 0}
99 };
100
101
102 static size_t
103 transmit_initial_message (void *cls, size_t size, void *buf)
104 {
105   struct GNUNET_MessageHeader msg;
106
107   GNUNET_assert (ok == 1);
108   ok = 2;
109   GNUNET_assert (size >= sizeof (struct GNUNET_MessageHeader));
110   msg.type = htons (MY_TYPE);
111   msg.size = htons (sizeof (struct GNUNET_MessageHeader));
112   memcpy (buf, &msg, sizeof (struct GNUNET_MessageHeader));
113   return sizeof (struct GNUNET_MessageHeader);
114 }
115
116
117 static void
118 task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
119 {
120   struct sockaddr_in sa;
121   struct sockaddr *sap[2];
122   socklen_t slens[2];
123
124   sap[0] = (struct sockaddr *) &sa;
125   slens[0] = sizeof (sa);
126   sap[1] = NULL;
127   slens[1] = 0;
128   memset (&sa, 0, sizeof (sa));
129 #if HAVE_SOCKADDR_IN_SIN_LEN
130   sa.sin_len = sizeof (sa);
131 #endif
132   sa.sin_family = AF_INET;
133   sa.sin_port = htons (PORT);
134   server = GNUNET_SERVER_create (NULL, NULL, sap, slens, TIMEOUT, GNUNET_NO);
135   GNUNET_assert (server != NULL);
136   GNUNET_SERVER_add_handlers (server, handlers);
137   GNUNET_SERVER_disconnect_notify (server, &notify_disconnect, NULL);
138   cfg = GNUNET_CONFIGURATION_create ();
139   GNUNET_CONFIGURATION_set_value_number (cfg, "test-server", "PORT", PORT);
140   GNUNET_CONFIGURATION_set_value_string (cfg, "test-server", "HOSTNAME",
141                                          "localhost");
142   GNUNET_CONFIGURATION_set_value_string (cfg, "resolver", "HOSTNAME",
143                                          "localhost");
144   cc = GNUNET_CLIENT_connect ("test-server", cfg);
145   GNUNET_assert (cc != NULL);
146   GNUNET_assert (NULL !=
147                  GNUNET_CLIENT_notify_transmit_ready (cc,
148                                                       sizeof (struct
149                                                               GNUNET_MessageHeader),
150                                                       TIMEOUT, GNUNET_YES,
151                                                       &transmit_initial_message,
152                                                       NULL));
153 }
154
155
156 /**
157  * Main method, starts scheduler with task1,
158  * checks that "ok" is correct at the end.
159  */
160 static int
161 check ()
162 {
163   ok = 1;
164   GNUNET_SCHEDULER_run (&task, &ok);
165   return ok;
166 }
167
168
169 int
170 main (int argc, char *argv[])
171 {
172   int ret = 0;
173
174   GNUNET_log_setup ("test_server_disconnect", "WARNING", NULL);
175   ret += check ();
176
177   return ret;
178 }
179
180 /* end of test_server_disconnect.c */