-fixes
[oweals/gnunet.git] / src / util / test_mq_client.c
1 /*
2      This file is part of GNUnet.
3      (C) 2012 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 /**
22  * @file util/test_mq_client.c
23  * @brief tests for mq with connection client
24  */
25 #include "platform.h"
26 #include "gnunet_util_lib.h"
27
28 #define PORT 23336
29
30 #define MY_TYPE 128
31
32
33 static struct GNUNET_SERVER_Handle *server;
34
35 static struct GNUNET_CLIENT_Connection *client;
36
37 static struct GNUNET_CONFIGURATION_Handle *cfg;
38
39 static int ok;
40
41 static int notify = GNUNET_NO;
42
43 static int received = 0;
44
45
46 static void
47 recv_cb (void *cls, struct GNUNET_SERVER_Client *argclient,
48          const struct GNUNET_MessageHeader *message)
49 {
50   received++;
51   if ((received == 2) && (GNUNET_YES == notify))
52   {
53     GNUNET_SERVER_receive_done (argclient, GNUNET_NO);
54     return;
55   }
56
57   /* can happen if notify does not work */
58   GNUNET_assert (received < 2);
59
60   GNUNET_SERVER_receive_done (argclient, GNUNET_YES);
61 }
62
63
64 static void
65 clean_up (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
66 {
67   GNUNET_SERVER_destroy (server);
68   server = NULL;
69   GNUNET_CONFIGURATION_destroy (cfg);
70   cfg = NULL;
71 }
72
73
74 /**
75  * Functions with this signature are called whenever a client
76  * is disconnected on the network level.
77  *
78  * @param cls closure
79  * @param client identification of the client
80  */
81 static void
82 notify_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
83 {
84   if (client == NULL)
85     return;
86   ok = 0;
87   GNUNET_SCHEDULER_add_now (&clean_up, NULL);
88 }
89
90
91 static struct GNUNET_SERVER_MessageHandler handlers[] = {
92   {&recv_cb, NULL, MY_TYPE, sizeof (struct GNUNET_MessageHeader)},
93   {NULL, NULL, 0, 0}
94 };
95
96 void send_cb (void *cls)
97 {
98   /* the notify should only be called once */
99   GNUNET_assert (GNUNET_NO == notify);
100   notify = GNUNET_YES;
101 }
102
103 void test_mq (struct GNUNET_CLIENT_Connection *client)
104 {
105   struct GNUNET_MQ_Handle *mq;
106   struct GNUNET_MQ_Envelope *mqm;
107
108   /* FIXME: test handling responses */
109   mq = GNUNET_MQ_queue_for_connection_client (client, NULL, NULL, NULL);
110
111   mqm = GNUNET_MQ_msg_header (MY_TYPE);
112   GNUNET_MQ_send (mq, mqm);
113
114   mqm = GNUNET_MQ_msg_header (MY_TYPE);
115   GNUNET_MQ_notify_sent (mqm, send_cb, NULL);
116   GNUNET_MQ_send (mq, mqm);
117
118   /* FIXME: add a message that will be canceled */
119 }
120
121
122 static void
123 task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
124 {
125   struct sockaddr_in sa;
126   struct sockaddr *sap[2];
127   socklen_t slens[2];
128
129   sap[0] = (struct sockaddr *) &sa;
130   slens[0] = sizeof (sa);
131   sap[1] = NULL;
132   slens[1] = 0;
133   memset (&sa, 0, sizeof (sa));
134 #if HAVE_SOCKADDR_IN_SIN_LEN
135   sa.sin_len = sizeof (sa);
136 #endif
137   sa.sin_family = AF_INET;
138   sa.sin_port = htons (PORT);
139   server =
140       GNUNET_SERVER_create (NULL, NULL, sap, slens,
141                             GNUNET_TIME_relative_multiply
142                             (GNUNET_TIME_UNIT_MILLISECONDS, 250), GNUNET_NO);
143   GNUNET_assert (server != NULL);
144   handlers[0].callback_cls = cls;
145   GNUNET_SERVER_add_handlers (server, handlers);
146   GNUNET_SERVER_disconnect_notify (server, &notify_disconnect, cls);
147   cfg = GNUNET_CONFIGURATION_create ();
148   GNUNET_CONFIGURATION_set_value_number (cfg, "test", "PORT", PORT);
149   GNUNET_CONFIGURATION_set_value_string (cfg, "test", "HOSTNAME", "localhost");
150   GNUNET_CONFIGURATION_set_value_string (cfg, "resolver", "HOSTNAME",
151                                          "localhost");
152   client = GNUNET_CLIENT_connect ("test", cfg);
153   GNUNET_assert (client != NULL);
154
155   test_mq (client);
156 }
157
158
159 int
160 main (int argc, char *argv[])
161 {
162   GNUNET_log_setup ("test-mq-client",
163                     "INFO",
164                     NULL);
165   ok = 1;
166   GNUNET_SCHEDULER_run (&task, NULL);
167   return ok;
168 }
169