e740f1fc912330d82f75d9695bc0b01481c1f664
[oweals/gnunet.git] / src / peerinfo / test_peerinfo_api.c
1 /*
2      This file is part of GNUnet.
3      (C) 2004, 2009 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 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
30 #include "platform.h"
31 #include "gnunet_hello_lib.h"
32 #include "gnunet_getopt_lib.h"
33 #include "gnunet_os_lib.h"
34 #include "gnunet_peerinfo_service.h"
35 #include "gnunet_program_lib.h"
36 #include "gnunet_time_lib.h"
37 #include "peerinfo.h"
38
39 static const struct GNUNET_CONFIGURATION_Handle *cfg;
40
41 static struct GNUNET_PEERINFO_IteratorContext *ic;
42
43 static struct GNUNET_PEERINFO_Handle *h;
44
45 static unsigned int retries;
46
47 static int
48 check_it (void *cls,
49           const char *tname,
50           struct GNUNET_TIME_Absolute expiration,
51           const void *addr, uint16_t addrlen)
52 {
53   unsigned int *agc = cls;
54
55   if (addrlen > 0)
56   {
57     GNUNET_assert (0 == strcmp ("peerinfotest", tname));
58     GNUNET_assert (0 == strncmp ("Address", addr, addrlen));
59     (*agc) -= (1 << (addrlen - 1));
60   }
61   return GNUNET_OK;
62 }
63
64
65 static size_t
66 address_generator (void *cls, size_t max, void *buf)
67 {
68   size_t *agc = cls;
69   size_t ret;
70
71   if (0 == *agc)
72     return 0;
73   ret = GNUNET_HELLO_add_address ("peerinfotest",
74                                   GNUNET_TIME_relative_to_absolute
75                                   (GNUNET_TIME_UNIT_HOURS), "Address", *agc,
76                                   buf, max);
77   (*agc)--;
78   return ret;
79 }
80
81
82 static void
83 add_peer ()
84 {
85   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pkey;
86   struct GNUNET_PeerIdentity pid;
87   struct GNUNET_HELLO_Message *h2;
88   size_t agc;
89
90   agc = 2;
91   memset (&pkey, 32, sizeof (pkey));
92   GNUNET_CRYPTO_hash (&pkey, sizeof (pkey), &pid.hashPubKey);
93   h2 = GNUNET_HELLO_create (&pkey, &address_generator, &agc);
94   GNUNET_PEERINFO_add_peer (h, h2);
95   GNUNET_free (h2);
96
97 }
98
99
100 static void
101 process (void *cls,
102          const struct GNUNET_PeerIdentity *peer,
103          const struct GNUNET_HELLO_Message *hello, const char *err_msg)
104 {
105   int *ok = cls;
106   unsigned int agc;
107
108   if (err_msg != NULL)
109   {
110     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
111                 _("Error in communication with PEERINFO service\n"));
112   }
113
114   if (peer == NULL)
115   {
116     ic = NULL;
117     if ((3 == *ok) && (retries < 50))
118     {
119       /* try again */
120       retries++;
121       add_peer ();
122       ic = GNUNET_PEERINFO_iterate (h,
123                                     NULL,
124                                     GNUNET_TIME_relative_multiply
125                                     (GNUNET_TIME_UNIT_SECONDS, 15),
126                                     &process, cls);
127       return;
128     }
129     GNUNET_assert (peer == NULL);
130     GNUNET_assert (2 == *ok);
131     GNUNET_PEERINFO_disconnect (h);
132     h = NULL;
133     *ok = 0;
134     return;
135   }
136   if (hello != NULL)
137   {
138     GNUNET_assert (3 == *ok);
139     agc = 3;
140     GNUNET_HELLO_iterate_addresses (hello, GNUNET_NO, &check_it, &agc);
141     GNUNET_assert (agc == 0);
142     *ok = 2;
143   }
144 }
145
146
147 static void
148 run (void *cls,
149      char *const *args,
150      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *c)
151 {
152   cfg = c;
153   h = GNUNET_PEERINFO_connect (cfg);
154   GNUNET_assert (h != NULL);
155   add_peer ();
156   ic = GNUNET_PEERINFO_iterate (h,
157                                 NULL,
158                                 GNUNET_TIME_relative_multiply
159                                 (GNUNET_TIME_UNIT_SECONDS, 15), &process, cls);
160 }
161
162
163 static int
164 check ()
165 {
166   int ok = 3;
167   struct GNUNET_OS_Process *proc;
168
169   char *const argv[] = { "test-peerinfo-api",
170     "-c",
171     "test_peerinfo_api_data.conf",
172 #if DEBUG_PEERINFO
173     "-L", "DEBUG",
174 #endif
175     NULL
176   };
177   struct GNUNET_GETOPT_CommandLineOption options[] = {
178     GNUNET_GETOPT_OPTION_END
179   };
180   proc = GNUNET_OS_start_process (NULL, NULL, "gnunet-service-peerinfo",
181                                   "gnunet-service-peerinfo",
182 #if DEBUG_PEERINFO
183                                   "-L", "DEBUG",
184 #endif
185                                   "-c", "test_peerinfo_api_data.conf", NULL);
186   GNUNET_assert (NULL != proc);
187   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
188                       argv, "test-peerinfo-api", "nohelp", options, &run, &ok);
189   if (0 != GNUNET_OS_process_kill (proc, SIGTERM))
190   {
191     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
192     ok = 1;
193   }
194   GNUNET_OS_process_wait (proc);
195   GNUNET_OS_process_close (proc);
196   proc = NULL;
197   return ok;
198 }
199
200
201 int
202 main (int argc, char *argv[])
203 {
204   int ret = 0;
205
206   GNUNET_log_setup ("test_peerinfo_api",
207 #if DEBUG_PEERINFO
208                     "DEBUG",
209 #else
210                     "WARNING",
211 #endif
212                     NULL);
213   ret = check ();
214   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-peerinfo");
215   return ret;
216 }
217
218 /* end of test_peerinfo_api.c */