indentation
[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,
84          struct GNUNET_SERVER_Client *client,
85          const struct GNUNET_MessageHeader *message)
86 {
87   GNUNET_assert (ok == 2);
88   ok = 3;
89   GNUNET_SERVER_client_keep (client);
90   GNUNET_SCHEDULER_add_now (&server_disconnect, client);
91   GNUNET_assert (sizeof (struct GNUNET_MessageHeader) == ntohs (message->size));
92   GNUNET_assert (MY_TYPE == ntohs (message->type));
93   GNUNET_SERVER_receive_done (client, GNUNET_OK);
94 }
95
96
97 static struct GNUNET_SERVER_MessageHandler handlers[] = {
98   {&recv_cb, NULL, MY_TYPE, sizeof (struct GNUNET_MessageHeader)},
99   {NULL, NULL, 0, 0}
100 };
101
102
103 static size_t
104 transmit_initial_message (void *cls, size_t size, void *buf)
105 {
106   struct GNUNET_MessageHeader msg;
107
108   GNUNET_assert (ok == 1);
109   ok = 2;
110   GNUNET_assert (size >= sizeof (struct GNUNET_MessageHeader));
111   msg.type = htons (MY_TYPE);
112   msg.size = htons (sizeof (struct GNUNET_MessageHeader));
113   memcpy (buf, &msg, sizeof (struct GNUNET_MessageHeader));
114   return sizeof (struct GNUNET_MessageHeader);
115 }
116
117
118 static void
119 task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
120 {
121   struct sockaddr_in sa;
122   struct sockaddr *sap[2];
123   socklen_t slens[2];
124
125   sap[0] = (struct sockaddr *) &sa;
126   slens[0] = sizeof (sa);
127   sap[1] = NULL;
128   slens[1] = 0;
129   memset (&sa, 0, sizeof (sa));
130 #if HAVE_SOCKADDR_IN_SIN_LEN
131   sa.sin_len = sizeof (sa);
132 #endif
133   sa.sin_family = AF_INET;
134   sa.sin_port = htons (PORT);
135   server = GNUNET_SERVER_create (NULL, NULL, sap, slens, TIMEOUT, GNUNET_NO);
136   GNUNET_assert (server != NULL);
137   GNUNET_SERVER_add_handlers (server, handlers);
138   GNUNET_SERVER_disconnect_notify (server, &notify_disconnect, NULL);
139   cfg = GNUNET_CONFIGURATION_create ();
140   GNUNET_CONFIGURATION_set_value_number (cfg, "test-server", "PORT", PORT);
141   GNUNET_CONFIGURATION_set_value_string (cfg, "test-server", "HOSTNAME",
142                                          "localhost");
143   GNUNET_CONFIGURATION_set_value_string (cfg, "resolver", "HOSTNAME",
144                                          "localhost");
145   cc = GNUNET_CLIENT_connect ("test-server", cfg);
146   GNUNET_assert (cc != NULL);
147   GNUNET_assert (NULL !=
148                  GNUNET_CLIENT_notify_transmit_ready (cc,
149                                                       sizeof (struct
150                                                               GNUNET_MessageHeader),
151                                                       TIMEOUT, GNUNET_YES,
152                                                       &transmit_initial_message,
153                                                       NULL));
154 }
155
156
157 /**
158  * Main method, starts scheduler with task1,
159  * checks that "ok" is correct at the end.
160  */
161 static int
162 check ()
163 {
164   ok = 1;
165   GNUNET_SCHEDULER_run (&task, &ok);
166   return ok;
167 }
168
169
170 int
171 main (int argc, char *argv[])
172 {
173   int ret = 0;
174
175   GNUNET_log_setup ("test_server_disconnect", "WARNING", NULL);
176   ret += check ();
177
178   return ret;
179 }
180
181 /* end of test_server_disconnect.c */