More fixes for #3522
[oweals/gnunet.git] / src / namestore / test_namestore_api_lookup_private.c
1 /*
2      This file is part of GNUnet.
3      (C) 2012 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  * @file namestore/test_namestore_api_store.c
22  * @brief testcase for namestore_api.c: store a record
23  */
24 #include "platform.h"
25 #include "gnunet_namestore_service.h"
26 #include "gnunet_testing_lib.h"
27
28 #define TEST_RECORD_TYPE 1234
29
30 #define TEST_RECORD_DATALEN 123
31
32 #define TEST_RECORD_DATA 'a'
33
34 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
35
36 static struct GNUNET_NAMESTORE_Handle *nsh;
37
38 static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
39
40 static struct GNUNET_CRYPTO_EcdsaPrivateKey *privkey;
41
42 static struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
43
44 static int res;
45
46 static struct GNUNET_NAMESTORE_QueueEntry *nsqe;
47
48 //static const char * name = "dummy.dummy.gnunet";
49 static const char * name = "d";
50
51 static char *directory;
52
53 static void
54 cleanup ()
55 {
56   if (NULL != nsh)
57   {
58     GNUNET_NAMESTORE_disconnect (nsh);
59     nsh = NULL;
60   }
61   if (NULL != privkey)
62   {
63     GNUNET_free (privkey);
64     privkey = NULL;
65   }
66   GNUNET_SCHEDULER_shutdown ();
67 }
68
69
70 /**
71  * Re-establish the connection to the service.
72  *
73  * @param cls handle to use to re-connect.
74  * @param tc scheduler context
75  */
76 static void
77 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
78 {
79   if (NULL != nsqe)
80   {
81     GNUNET_NAMESTORE_cancel (nsqe);
82     nsqe = NULL;
83   }
84   cleanup ();
85   res = 1;
86 }
87
88
89 static void
90 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
91 {
92   cleanup ();
93   res = 0;
94 }
95
96 void lookup_it (void *cls,
97                 const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
98                 const char *label,
99                 unsigned int rd_count,
100                 const struct GNUNET_GNSRECORD_Data *rd)
101 {
102   nsqe = NULL;
103
104   if (0 != memcmp(privkey, zone, sizeof (struct GNUNET_CRYPTO_EcdsaPrivateKey)))
105   {
106     GNUNET_break(0);
107     GNUNET_SCHEDULER_cancel (endbadly_task);
108     endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL );
109     return;
110   }
111
112
113   if (NULL == label)
114   {
115     GNUNET_break(0);
116     GNUNET_SCHEDULER_cancel (endbadly_task);
117     endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL );
118     return;
119   }
120
121   if (0 != strcmp (label, name))
122   {
123     GNUNET_break(0);
124     GNUNET_SCHEDULER_cancel (endbadly_task);
125     endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL );
126     return;
127   }
128
129   if (1 != rd_count)
130   {
131     GNUNET_break(0);
132     GNUNET_SCHEDULER_cancel (endbadly_task);
133     endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL );
134     return;
135   }
136
137   /* Done */
138   GNUNET_SCHEDULER_cancel (endbadly_task);
139   endbadly_task = GNUNET_SCHEDULER_NO_TASK;
140   GNUNET_SCHEDULER_add_now (&end, NULL );
141 }
142
143
144 static void
145 put_cont (void *cls, int32_t success, const char *emsg)
146 {
147   const char *name = cls;
148
149   nsqe = NULL;
150   GNUNET_assert (NULL != cls);
151   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
152               "Name store added record for `%s': %s\n",
153               name,
154               (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
155
156   if (GNUNET_OK != success)
157   {
158     GNUNET_SCHEDULER_cancel (endbadly_task);
159     endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
160     return;
161   }
162   /* Lookup */
163   nsqe = GNUNET_NAMESTORE_records_lookup (nsh, privkey, name, lookup_it, NULL);
164 }
165
166
167 static void
168 run (void *cls,
169      const struct GNUNET_CONFIGURATION_Handle *cfg,
170      struct GNUNET_TESTING_Peer *peer)
171 {
172   struct GNUNET_GNSRECORD_Data rd;
173   char *hostkey_file;
174
175   directory = NULL;
176   GNUNET_CONFIGURATION_get_value_string(cfg, "PATHS", "GNUNET_TEST_HOME", &directory);
177   GNUNET_DISK_directory_remove (directory);
178
179   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
180                                                 &endbadly, NULL);
181   GNUNET_asprintf (&hostkey_file,
182                    "zonefiles%s%s",
183                    DIR_SEPARATOR_STR,
184                    "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
185   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
186   privkey = GNUNET_CRYPTO_ecdsa_key_create_from_file (hostkey_file);
187   GNUNET_free (hostkey_file);
188   GNUNET_assert (privkey != NULL);
189   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
190
191   rd.expiration_time = GNUNET_TIME_absolute_get().abs_value_us;
192   rd.record_type = TEST_RECORD_TYPE;
193   rd.data_size = TEST_RECORD_DATALEN;
194   rd.data = GNUNET_malloc (TEST_RECORD_DATALEN);
195   rd.flags = 0;
196   memset ((char *) rd.data, 'a', TEST_RECORD_DATALEN);
197
198   nsh = GNUNET_NAMESTORE_connect (cfg);
199   GNUNET_break (NULL != nsh);
200   nsqe = GNUNET_NAMESTORE_records_store (nsh, privkey, name,
201                                       1, &rd, &put_cont, (void *) name);
202   if (NULL == nsqe)
203   {
204     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
205               _("Namestore cannot store no block\n"));
206   }
207
208   GNUNET_free ((void *)rd.data);
209 }
210
211
212 int
213 main (int argc, char *argv[])
214 {
215   res = 1;
216   if (0 !=
217       GNUNET_TESTING_peer_run ("test-namestore-api",
218                                "test_namestore_api.conf",
219                                &run,
220                                NULL))
221   {
222     res = 1;
223   }
224   if (NULL != directory)
225   {
226       GNUNET_DISK_directory_remove (directory);
227       GNUNET_free (directory);
228   }
229   return res;
230 }
231
232
233 /* end of test_namestore_api_store.c */