-fix, handle case where there is no update
[oweals/gnunet.git] / src / fs / test_pseudonym.c
1 /*
2      This file is part of GNUnet.
3      (C) 2005--2013 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 fs/test_pseudonym.c
23  * @brief testcase for fs_pseudonym.c
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_common.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_fs_service.h"
30 #include "gnunet_signatures.h"
31
32 #define CHECK(a) do { if (!(a)) { ok = GNUNET_NO; GNUNET_break(0); goto FAILURE; } } while (0)
33
34 static struct GNUNET_CONTAINER_MetaData *meta;
35
36 static struct GNUNET_CRYPTO_EccPublicKey id1;
37
38
39 static int
40 iter (void *cls,
41       const struct GNUNET_CRYPTO_EccPublicKey *pseudonym,
42       const char *name, const char *unique_name,
43       const struct GNUNET_CONTAINER_MetaData *md, int32_t rating)
44 {
45   int *ok = cls;
46
47   if ((0 == memcmp (pseudonym, &id1, sizeof (struct GNUNET_CRYPTO_EccPublicKey))) &&
48       (!GNUNET_CONTAINER_meta_data_test_equal (md, meta)))
49   {
50     *ok = GNUNET_NO;
51     GNUNET_break (0);
52   }
53   return GNUNET_OK;
54 }
55
56
57 static int
58 noti_callback (void *cls, const struct GNUNET_CRYPTO_EccPublicKey *pseudonym,
59                const char *name, const char *unique_name,
60                const struct GNUNET_CONTAINER_MetaData *md, int32_t rating)
61 {
62   int *ret = cls;
63
64   (*ret)++;
65   return GNUNET_OK;
66 }
67
68
69 static int
70 fake_noti_callback (void *cls,
71                     const struct GNUNET_CRYPTO_EccPublicKey * pseudonym,
72                     const char *name, const char *unique_name,
73                     const struct GNUNET_CONTAINER_MetaData *md, int32_t rating)
74 {
75   int *ret = cls;
76
77   (*ret)++;
78   return GNUNET_OK;
79 }
80
81
82 static void
83 create_pseu (struct GNUNET_CRYPTO_EccPublicKey *pseu)
84 {
85   struct GNUNET_CRYPTO_EccPrivateKey *ph;
86
87   ph = GNUNET_CRYPTO_ecc_key_create ();
88   GNUNET_CRYPTO_ecc_key_get_public (ph, pseu);
89   GNUNET_CRYPTO_ecc_key_free (ph);
90 }
91
92
93 /**
94  * Testcase for meta data / ranking IO routines.
95  */
96 static int
97 test_io ()
98 {
99   int ok;
100   struct GNUNET_CRYPTO_EccPublicKey rid1;
101   struct GNUNET_CRYPTO_EccPublicKey id2;
102   struct GNUNET_CRYPTO_EccPublicKey rid2;
103   struct GNUNET_CRYPTO_EccPublicKey fid;
104   struct GNUNET_CRYPTO_EccPublicKey id3;
105   int old;
106   int newVal;
107   struct GNUNET_CONFIGURATION_Handle *cfg;
108   char *name1;
109   char *name2;
110   char *name3;
111   char *name1_unique;
112   char *name2_unique;
113   char *noname;
114   int noname_is_a_dup;
115   int notiCount, fakenotiCount;
116   static char m[1024 * 1024 * 10];
117   struct GNUNET_FS_Pseudonym_DiscoveryHandle *dh1;
118   struct GNUNET_FS_Pseudonym_DiscoveryHandle *dh2;
119
120   memset (m, 'b', sizeof (m));
121   m[sizeof (m) - 1] = '\0';
122   GNUNET_log_setup ("test-pseudonym", "WARNING", NULL);
123   ok = GNUNET_YES;
124   (void) GNUNET_DISK_directory_remove ("/tmp/gnunet-pseudonym-test");
125   cfg = GNUNET_CONFIGURATION_create ();
126   if (-1 == GNUNET_CONFIGURATION_parse (cfg, "test_pseudonym_data.conf"))
127   {
128     GNUNET_CONFIGURATION_destroy (cfg);
129     GNUNET_break (0);
130     return -1;
131   }
132   notiCount = 0;
133   fakenotiCount = 0;
134   dh1 = GNUNET_FS_pseudonym_discovery_callback_register (cfg, &fake_noti_callback,
135                                                       &fakenotiCount);
136   dh2 = GNUNET_FS_pseudonym_discovery_callback_register (cfg, &noti_callback,
137                                                       &notiCount);
138   GNUNET_FS_pseudonym_discovery_callback_unregister (dh1);
139
140   /* ACTUAL TEST CODE */
141   old = GNUNET_FS_pseudonym_list_all (cfg, NULL, NULL);
142   meta = GNUNET_CONTAINER_meta_data_create ();
143   GNUNET_CONTAINER_meta_data_insert (meta, "<test>", EXTRACTOR_METATYPE_TITLE,
144                                      EXTRACTOR_METAFORMAT_UTF8, "text/plain",
145                                      "test", strlen ("test") + 1);
146   create_pseu (&id1);
147   GNUNET_FS_pseudonym_add (cfg, &id1, meta);
148   CHECK (notiCount == 1);
149   GNUNET_FS_pseudonym_add (cfg, &id1, meta);
150   CHECK (notiCount == 2);
151   newVal = GNUNET_FS_pseudonym_list_all (cfg, &iter, &ok);
152   CHECK (old < newVal);
153   old = newVal;
154   create_pseu (&id2);
155   GNUNET_FS_pseudonym_add (cfg, &id2, meta);
156   CHECK (notiCount == 3);
157   newVal = GNUNET_FS_pseudonym_list_all (cfg, &iter, &ok);
158   CHECK (old < newVal);
159   GNUNET_assert (GNUNET_OK ==
160                  GNUNET_CONTAINER_meta_data_insert (meta, "<test>",
161                                                     EXTRACTOR_METATYPE_COMMENT,
162                                                     EXTRACTOR_METAFORMAT_UTF8,
163                                                     "text/plain", m,
164                                                     strlen (m) + 1));
165   create_pseu (&id3);
166   GNUNET_FS_pseudonym_add (cfg, &id3, meta);
167   GNUNET_FS_pseudonym_get_info (cfg, &id3, NULL, NULL, &name3, NULL);
168   CHECK (name3 != NULL);
169   GNUNET_FS_pseudonym_get_info (cfg, &id2, NULL, NULL, &name2, NULL);
170   CHECK (name2 != NULL);
171   GNUNET_FS_pseudonym_get_info (cfg, &id1, NULL, NULL, &name1, NULL);
172   CHECK (name1 != NULL);
173   CHECK (0 == strcmp (name1, name2));
174   name1_unique = GNUNET_FS_pseudonym_name_uniquify (cfg, &id1, name1, NULL);
175   name2_unique = GNUNET_FS_pseudonym_name_uniquify (cfg, &id2, name2, NULL);
176   CHECK (0 != strcmp (name1_unique, name2_unique));
177   CHECK (GNUNET_SYSERR == GNUNET_FS_pseudonym_name_to_id (cfg, "fake", &rid2));
178   CHECK (GNUNET_SYSERR == GNUNET_FS_pseudonym_name_to_id (cfg, name2, &rid2));
179   CHECK (GNUNET_SYSERR == GNUNET_FS_pseudonym_name_to_id (cfg, name1, &rid1));
180   CHECK (GNUNET_OK == GNUNET_FS_pseudonym_name_to_id (cfg, name2_unique, &rid2));
181   CHECK (GNUNET_OK == GNUNET_FS_pseudonym_name_to_id (cfg, name1_unique, &rid1));
182   CHECK (0 == memcmp (&id1, &rid1, sizeof (struct GNUNET_CRYPTO_EccPublicKey)));
183   CHECK (0 == memcmp (&id2, &rid2, sizeof (struct GNUNET_CRYPTO_EccPublicKey)));
184
185   create_pseu (&fid);
186   GNUNET_log_skip (1, GNUNET_NO);
187   CHECK (0 == GNUNET_FS_pseudonym_rank (cfg, &fid, 0));
188   GNUNET_log_skip (0, GNUNET_NO);
189   CHECK (GNUNET_OK == GNUNET_FS_pseudonym_get_info (cfg, &fid, NULL, NULL, &noname, &noname_is_a_dup));
190   CHECK (noname != NULL);
191   CHECK (noname_is_a_dup == GNUNET_YES);
192   CHECK (0 == GNUNET_FS_pseudonym_rank (cfg, &id1, 0));
193   CHECK (5 == GNUNET_FS_pseudonym_rank (cfg, &id1, 5));
194   CHECK (-5 == GNUNET_FS_pseudonym_rank (cfg, &id1, -10));
195   CHECK (0 == GNUNET_FS_pseudonym_rank (cfg, &id1, 5));
196   GNUNET_free (name1);
197   GNUNET_free (name2);
198   GNUNET_free (name1_unique);
199   GNUNET_free (name2_unique);
200   GNUNET_free (name3);
201   GNUNET_free (noname);
202   /* END OF TEST CODE */
203 FAILURE:
204   GNUNET_FS_pseudonym_discovery_callback_unregister (dh2);
205   GNUNET_CONTAINER_meta_data_destroy (meta);
206   GNUNET_CONFIGURATION_destroy (cfg);
207   return (ok == GNUNET_YES) ? 0 : 1;
208 }
209
210
211 int
212 main (int argc, char *argv[])
213 {
214   GNUNET_log_setup ("test-pseudonym", "WARNING", NULL);
215   if (0 != test_io ())
216     return 1;
217   GNUNET_break (GNUNET_OK ==
218                 GNUNET_DISK_directory_remove ("/tmp/gnunet-pseudonym-test"));  
219   return 0;
220 }
221
222
223 /* end of test_pseudoynm.c */