not needed
[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)
104 {
105   int *ok = cls;
106   unsigned int agc;
107
108   if (peer == NULL)
109     {
110       ic = NULL;
111       if ( (3 == *ok) &&
112            (retries < 50) )
113         {
114           /* try again */
115           retries++;      
116           add_peer ();
117           ic = GNUNET_PEERINFO_iterate (h,
118                                         NULL,
119                                         GNUNET_TIME_relative_multiply
120                                         (GNUNET_TIME_UNIT_SECONDS, 15), 
121                                         &process, cls);
122           return;
123         }
124       GNUNET_assert (peer == NULL);
125       GNUNET_assert (2 == *ok);
126       GNUNET_PEERINFO_disconnect (h);
127       h = NULL;
128       *ok = 0;
129       return;
130     }
131   if (hello != NULL)
132     {
133       GNUNET_assert (3 == *ok);
134       agc = 3;
135       GNUNET_HELLO_iterate_addresses (hello, GNUNET_NO, &check_it, &agc);
136       GNUNET_assert (agc == 0);
137       *ok = 2;
138     }
139 }
140
141
142 static void
143 run (void *cls,
144      char *const *args,
145      const char *cfgfile, 
146      const struct GNUNET_CONFIGURATION_Handle *c)
147 {
148   cfg = c;
149   h = GNUNET_PEERINFO_connect (cfg);
150   GNUNET_assert (h != NULL);
151   add_peer ();
152   ic = GNUNET_PEERINFO_iterate (h,
153                                 NULL,
154                                 GNUNET_TIME_relative_multiply
155                                 (GNUNET_TIME_UNIT_SECONDS, 15),
156                                 &process, cls);
157 }
158
159
160 static int
161 check ()
162 {
163   int ok = 3;
164   struct GNUNET_OS_Process *proc;
165   char *const argv[] = { "test-peerinfo-api",
166     "-c",
167     "test_peerinfo_api_data.conf",
168 #if DEBUG_PEERINFO
169     "-L", "DEBUG",
170 #endif
171     NULL
172   };
173   struct GNUNET_GETOPT_CommandLineOption options[] = {
174     GNUNET_GETOPT_OPTION_END
175   };
176   proc = GNUNET_OS_start_process (NULL, NULL, "gnunet-service-peerinfo",
177                                  "gnunet-service-peerinfo",
178 #if DEBUG_PEERINFO
179                                  "-L", "DEBUG",
180 #endif
181                                  "-c", "test_peerinfo_api_data.conf", NULL);
182   GNUNET_assert (NULL != proc);
183   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
184                       argv, "test-peerinfo-api", "nohelp",
185                       options, &run, &ok);
186   if (0 != GNUNET_OS_process_kill (proc, SIGTERM))
187     {
188       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
189       ok = 1;
190     }
191   GNUNET_OS_process_wait (proc);
192   GNUNET_OS_process_close (proc);
193   proc = NULL;
194   return ok;
195 }
196
197
198 int
199 main (int argc, char *argv[])
200 {
201   int ret = 0;
202
203   GNUNET_log_setup ("test_peerinfo_api",
204 #if DEBUG_PEERINFO
205                     "DEBUG",
206 #else
207                     "WARNING",
208 #endif
209                     NULL);
210   ret = check ();
211   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-peerinfo");
212   return ret;
213 }
214
215 /* end of test_peerinfo_api.c */