guix-env: some update.
[oweals/gnunet.git] / src / peerinfo / test_peerinfo_api.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2004, 2009 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 /**
22  * @file peerinfo/test_peerinfo_api.c
23  * @brief testcase for peerinfo_api.c
24  * @author Christian Grothoff
25  *
26  * TODO:
27  * - test merging of HELLOs (add same peer twice...)
28  */
29 #include "platform.h"
30 #include "gnunet_hello_lib.h"
31 #include "gnunet_util_lib.h"
32 #include "gnunet_peerinfo_service.h"
33 #include "gnunet_testing_lib.h"
34 #include "peerinfo.h"
35
36 static struct GNUNET_PEERINFO_IteratorContext *ic;
37
38 static struct GNUNET_PEERINFO_Handle *h;
39
40 static unsigned int retries;
41
42 static int global_ret;
43
44
45 static int
46 check_it (void *cls, const struct GNUNET_HELLO_Address *address,
47           struct GNUNET_TIME_Absolute expiration)
48 {
49   unsigned int *agc = cls;
50
51   if (address != NULL)
52   {
53     GNUNET_assert (0 == strcmp ("peerinfotest", address->transport_name));
54     GNUNET_assert (0 ==
55                    strncmp ("Address", address->address,
56                             address->address_length));
57     (*agc) -= (1 << (address->address_length - 1));
58   }
59   return GNUNET_OK;
60 }
61
62
63 static ssize_t
64 address_generator (void *cls, size_t max, void *buf)
65 {
66   size_t *agc = cls;
67   ssize_t ret;
68   struct GNUNET_HELLO_Address address;
69
70   if (0 == *agc)
71     return GNUNET_SYSERR; /* Done */
72   memset (&address.peer, 0, sizeof (struct GNUNET_PeerIdentity));
73   address.address = "Address";
74   address.transport_name = "peerinfotest";
75   address.address_length = *agc;
76   ret =
77       GNUNET_HELLO_add_address (&address,
78                                 GNUNET_TIME_relative_to_absolute
79                                 (GNUNET_TIME_UNIT_HOURS), buf, max);
80   (*agc)--;
81   return ret;
82 }
83
84 struct GNUNET_PeerIdentity pid;
85
86 static void
87 add_peer ()
88 {
89   struct GNUNET_HELLO_Message *h2;
90   size_t agc;
91
92   agc = 2;
93   memset (&pid, 32, sizeof (pid));
94   h2 = GNUNET_HELLO_create (&pid.public_key, &address_generator, &agc, GNUNET_NO);
95   GNUNET_PEERINFO_add_peer (h, h2, NULL, NULL);
96   GNUNET_free (h2);
97
98 }
99
100
101 static void
102 process (void *cls, const struct GNUNET_PeerIdentity *peer,
103          const struct GNUNET_HELLO_Message *hello, const char *err_msg)
104 {
105   unsigned int agc;
106
107   if (err_msg != NULL)
108   {
109     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
110                 _("Error in communication with PEERINFO service\n"));
111   }
112
113   if (peer == NULL)
114   {
115     ic = NULL;
116     if ((3 == global_ret) && (retries < 50))
117     {
118       /* try again */
119       retries++;
120       add_peer ();
121       ic = GNUNET_PEERINFO_iterate (h, GNUNET_NO, NULL,
122                                     &process,
123                                     cls);
124       return;
125     }
126     GNUNET_assert (peer == NULL);
127     GNUNET_assert (2 == global_ret);
128     GNUNET_PEERINFO_disconnect (h);
129     h = NULL;
130     global_ret = 0;
131     return;
132   }
133   if (hello != NULL)
134   {
135     GNUNET_assert (3 == global_ret);
136     agc = 3;
137     GNUNET_HELLO_iterate_addresses (hello, GNUNET_NO,
138                                     &check_it, &agc);
139     GNUNET_assert (agc == 0);
140     global_ret = 2;
141   }
142 }
143
144
145 static void
146 run (void *cls,
147      const struct GNUNET_CONFIGURATION_Handle *cfg,
148      struct GNUNET_TESTING_Peer *peer)
149 {
150   h = GNUNET_PEERINFO_connect (cfg);
151   GNUNET_assert (NULL != h);
152   add_peer ();
153   ic = GNUNET_PEERINFO_iterate (h, GNUNET_NO, &pid,
154                                 &process, cls);
155 }
156
157
158 int
159 main (int argc, char *argv[])
160 {
161   global_ret = 3;
162   if (0 != GNUNET_TESTING_service_run ("test-gnunet-peerinfo",
163                                        "peerinfo",
164                                        "test_peerinfo_api_data.conf",
165                                        &run, NULL))
166     return 1;
167   return global_ret;
168 }
169
170 /* end of test_peerinfo_api.c */