use enum
[oweals/gnunet.git] / src / util / test_pseudonym.c
1 /*
2      This file is part of GNUnet.
3      (C) 2005, 2006, 2008, 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 2, 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_pseudonym.c
23  * @brief testcase for pseudonym.c
24  * @author Christian Grothoff
25  */
26
27 #include "platform.h"
28 #include "gnunet_common.h"
29 #include "gnunet_container_lib.h"
30 #include "gnunet_crypto_lib.h"
31 #include "gnunet_disk_lib.h"
32 #include "gnunet_pseudonym_lib.h"
33
34 #define CHECK(a) if (!(a)) { ok = GNUNET_NO; GNUNET_break(0); goto FAILURE; }
35
36 static struct GNUNET_CONTAINER_MetaData *meta;
37
38 static GNUNET_HashCode id1;
39
40 static int
41 iter (void *cls,
42       const GNUNET_HashCode *
43       pseudonym, const struct GNUNET_CONTAINER_MetaData *md, int rating)
44 {
45   int *ok = cls;
46
47   if ((0 == memcmp (pseudonym,
48                     &id1,
49                     sizeof (GNUNET_HashCode))) &&
50       (!GNUNET_CONTAINER_meta_data_test_equal (md, meta)))
51     {
52       *ok = GNUNET_NO;
53       GNUNET_break (0);
54     }
55   return GNUNET_OK;
56 }
57
58 static int
59 noti_callback (void *cls,
60                const GNUNET_HashCode *
61                pseudonym,
62                const struct GNUNET_CONTAINER_MetaData *md, int rating)
63 {
64   int *ret = cls;
65   (*ret)++;
66   return GNUNET_OK;
67 }
68
69
70 int
71 main (int argc, char *argv[])
72 {
73   int ok;
74   GNUNET_HashCode rid1;
75   GNUNET_HashCode id2;
76   GNUNET_HashCode rid2;
77   int old;
78   int newVal;
79   struct GNUNET_CONFIGURATION_Handle *cfg;
80   char *name1;
81   char *name2;
82   int notiCount;
83
84   GNUNET_log_setup ("test-pseudonym", "WARNING", NULL);
85   ok = GNUNET_YES;
86   GNUNET_CRYPTO_random_disable_entropy_gathering ();
87   GNUNET_DISK_directory_remove ("/tmp/gnunet-pseudonym-test");
88   cfg = GNUNET_CONFIGURATION_create ();
89   if (-1 == GNUNET_CONFIGURATION_parse (cfg, "test_pseudonym_data.conf"))
90     {
91       GNUNET_CONFIGURATION_destroy (cfg);
92       GNUNET_break (0);
93       return -1;
94     }
95   notiCount = 0;
96   GNUNET_PSEUDONYM_discovery_callback_register (cfg,
97                                                 &noti_callback, &notiCount);
98   /* ACTUAL TEST CODE */
99   old = GNUNET_PSEUDONYM_list_all (cfg, NULL, NULL);
100   meta = GNUNET_CONTAINER_meta_data_create ();
101   GNUNET_CONTAINER_meta_data_insert (meta, EXTRACTOR_TITLE, "test");
102   GNUNET_CRYPTO_hash_create_random (GNUNET_CRYPTO_QUALITY_WEAK, &id1);
103   GNUNET_PSEUDONYM_add (cfg, &id1, meta);
104   CHECK (notiCount == 1);
105   GNUNET_PSEUDONYM_add (cfg, &id1, meta);
106   CHECK (notiCount == 2);
107   newVal = GNUNET_PSEUDONYM_list_all (cfg, &iter, &ok);
108   CHECK (old < newVal);
109   old = newVal;
110   GNUNET_CRYPTO_hash_create_random (GNUNET_CRYPTO_QUALITY_WEAK, &id2);
111   GNUNET_PSEUDONYM_add (cfg, &id2, meta);
112   CHECK (notiCount == 3);
113   newVal = GNUNET_PSEUDONYM_list_all (cfg, &iter, &ok);
114   CHECK (old < newVal);
115   name2 = GNUNET_PSEUDONYM_id_to_name (cfg, &id2);
116   CHECK (name2 != NULL);
117   name1 = GNUNET_PSEUDONYM_id_to_name (cfg, &id1);
118   CHECK (name1 != NULL);
119   CHECK (0 != strcmp (name1, name2));
120   CHECK (GNUNET_OK == GNUNET_PSEUDONYM_name_to_id (cfg, name2, &rid2));
121   CHECK (GNUNET_OK == GNUNET_PSEUDONYM_name_to_id (cfg, name1, &rid1));
122   CHECK (0 == memcmp (&id1, &rid1, sizeof (GNUNET_HashCode)));
123   CHECK (0 == memcmp (&id2, &rid2, sizeof (GNUNET_HashCode)));
124   CHECK (0 == GNUNET_PSEUDONYM_rank (cfg, &id1, 0));
125   CHECK (5 == GNUNET_PSEUDONYM_rank (cfg, &id1, 5));
126   CHECK (-5 == GNUNET_PSEUDONYM_rank (cfg, &id1, -10));
127   CHECK (0 == GNUNET_PSEUDONYM_rank (cfg, &id1, 5));
128   GNUNET_free (name1);
129   GNUNET_free (name2);
130   /* END OF TEST CODE */
131 FAILURE:
132   GNUNET_PSEUDONYM_discovery_callback_unregister (&noti_callback, &notiCount);
133   GNUNET_CONTAINER_meta_data_destroy (meta);
134   GNUNET_CONFIGURATION_destroy (cfg);
135   GNUNET_DISK_directory_remove ("/tmp/gnunet-pseudonym-test");
136   return (ok == GNUNET_YES) ? 0 : 1;
137 }
138
139 /* end of test_pseudoynm.c */