sketch new service start/stop API as needed for testbed
[oweals/gnunet.git] / src / util / test_server_with_client_unix.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2009, 2016 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_server_with_client_unix.c
22  * @brief tests for server.c and client.c,
23  *       specifically disconnect_notify,
24  *       client_get_address and receive_done (resume processing)
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28
29 #define MY_TYPE 128
30
31
32 static struct GNUNET_SERVER_Handle *server;
33
34 static struct GNUNET_MQ_Handle *mq;
35
36 static struct GNUNET_CONFIGURATION_Handle *cfg;
37
38 static int ok;
39
40
41 static void
42 send_done (void *cls)
43 {
44   struct GNUNET_SERVER_Client *argclient = cls;
45
46   GNUNET_assert (ok == 3);
47   ok++;
48   GNUNET_SERVER_receive_done (argclient, GNUNET_OK);
49 }
50
51
52 static void
53 recv_cb (void *cls,
54          struct GNUNET_SERVER_Client *argclient,
55          const struct GNUNET_MessageHeader *message)
56 {
57   switch (ok)
58   {
59   case 2:
60     ok++;
61     (void) GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
62                                          (GNUNET_TIME_UNIT_MILLISECONDS, 50),
63                                          &send_done,
64                                          argclient);
65     break;
66   case 4:
67     ok++;
68     GNUNET_MQ_destroy (mq);
69     GNUNET_SERVER_receive_done (argclient, GNUNET_OK);
70     break;
71   default:
72     GNUNET_assert (0);
73   }
74
75 }
76
77
78 static void
79 clean_up (void *cls)
80 {
81   GNUNET_SERVER_destroy (server);
82   server = NULL;
83   GNUNET_CONFIGURATION_destroy (cfg);
84   cfg = NULL;
85 }
86
87
88 /**
89  * Functions with this signature are called whenever a client
90  * is disconnected on the network level.
91  *
92  * @param cls closure
93  * @param client identification of the client
94  */
95 static void
96 notify_disconnect (void *cls,
97                    struct GNUNET_SERVER_Client *client)
98 {
99   if (client == NULL)
100     return;
101   GNUNET_assert (ok == 5);
102   ok = 0;
103   (void) GNUNET_SCHEDULER_add_now (&clean_up, NULL);
104 }
105
106
107 static struct GNUNET_SERVER_MessageHandler handlers[] = {
108   {&recv_cb, NULL, MY_TYPE, sizeof (struct GNUNET_MessageHeader)},
109   {NULL, NULL, 0, 0}
110 };
111
112
113 static void
114 task (void *cls)
115 {
116   struct sockaddr_un un;
117   const char *unixpath = "/tmp/testsock";
118   struct sockaddr *sap[2];
119   socklen_t slens[2];
120   struct GNUNET_MQ_Envelope *env;
121   struct GNUNET_MessageHeader *msg;
122
123   memset (&un, 0, sizeof (un));
124   un.sun_family = AF_UNIX;
125   strncpy(un.sun_path, unixpath, sizeof (un.sun_path) - 1);
126 #if HAVE_SOCKADDR_IN_SIN_LEN
127   un.sun_len = (u_char) sizeof (un);
128 #endif
129
130   sap[0] = (struct sockaddr *) &un;
131   slens[0] = sizeof (un);
132   sap[1] = NULL;
133   slens[1] = 0;
134   server =
135       GNUNET_SERVER_create (NULL, NULL, sap, slens,
136                             GNUNET_TIME_relative_multiply
137                             (GNUNET_TIME_UNIT_MILLISECONDS, 250), GNUNET_NO);
138   GNUNET_assert (server != NULL);
139   handlers[0].callback_cls = cls;
140   GNUNET_SERVER_add_handlers (server, handlers);
141   GNUNET_SERVER_disconnect_notify (server, &notify_disconnect, cls);
142   cfg = GNUNET_CONFIGURATION_create ();
143
144   GNUNET_CONFIGURATION_set_value_string (cfg, "test", "UNIXPATH", unixpath);
145   GNUNET_CONFIGURATION_set_value_string (cfg, "resolver", "HOSTNAME",
146                                          "localhost");
147   mq = GNUNET_CLIENT_connecT (cfg,
148                               "test",
149                               NULL,
150                               NULL,
151                               NULL);
152   GNUNET_assert (NULL != mq);
153   ok = 2;
154   env = GNUNET_MQ_msg (msg,
155                        MY_TYPE);
156   GNUNET_MQ_send (mq,
157                   env);
158   env = GNUNET_MQ_msg (msg,
159                        MY_TYPE);
160   GNUNET_MQ_send (mq,
161                   env);
162 }
163
164
165 int
166 main (int argc, char *argv[])
167 {
168   GNUNET_log_setup ("test_server_with_client_unix",
169                     "WARNING",
170                     NULL);
171   ok = 1;
172   GNUNET_SCHEDULER_run (&task, NULL);
173   return ok;
174 }
175
176 /* end of test_server_with_client_unix.c */