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