498b3a360d21a4be90208d7c5a14b8bec57377cb
[oweals/gnunet.git] / src / namestore / test_namestore_api_remove.c
1 /*
2      This file is part of GNUnet.
3      (C) 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  * @file namestore/test_namestore_api.c
22  * @brief testcase for namestore_api.c
23  */
24 #include "platform.h"
25 #include "gnunet_common.h"
26 #include "gnunet_namestore_service.h"
27 #include "gnunet_testing_lib.h"
28 #include "namestore.h"
29 #include "gnunet_signatures.h"
30
31 #define RECORDS 5
32
33 #define TEST_RECORD_TYPE 1234
34
35 #define TEST_RECORD_DATALEN 123
36
37 #define TEST_RECORD_DATA 'a'
38
39 #define TEST_REMOVE_RECORD_TYPE 4321
40
41 #define TEST_REMOVE_RECORD_DATALEN 255
42
43 #define TEST_REMOVE_RECORD_DATA 'b'
44
45 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
46
47
48 static struct GNUNET_NAMESTORE_Handle * nsh;
49
50 static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
51
52 static struct GNUNET_CRYPTO_EccPrivateKey * privkey;
53
54 static struct GNUNET_CRYPTO_EccPublicKeyBinaryEncoded pubkey;
55
56 static struct GNUNET_CRYPTO_EccSignature *s_signature;
57
58 static struct GNUNET_CRYPTO_ShortHashCode s_zone;
59
60 static struct GNUNET_NAMESTORE_RecordData *s_rd;
61
62 static char *s_name;
63
64 static int res;
65
66
67 /**
68  * Re-establish the connection to the service.
69  *
70  * @param cls handle to use to re-connect.
71  * @param tc scheduler context
72  */
73 static void
74 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
75 {
76   if (nsh != NULL)
77     GNUNET_NAMESTORE_disconnect (nsh);
78   nsh = NULL;
79   if (privkey != NULL)
80     GNUNET_CRYPTO_ecc_key_free (privkey);
81   privkey = NULL;
82   GNUNET_free_non_null (s_name);
83   res = 1;
84 }
85
86
87 static void
88 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
89 {
90   int c;
91
92   if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
93   {
94     GNUNET_SCHEDULER_cancel (endbadly_task);
95     endbadly_task = GNUNET_SCHEDULER_NO_TASK;
96   }
97   for (c = 0; c < RECORDS; c++)
98     GNUNET_free_non_null((void *) s_rd[c].data);
99   GNUNET_free (s_rd);
100   if (privkey != NULL)
101     GNUNET_CRYPTO_ecc_key_free (privkey);
102   privkey = NULL;
103   if (nsh != NULL)
104     GNUNET_NAMESTORE_disconnect (nsh);
105   nsh = NULL;
106   GNUNET_free_non_null (s_name);
107 }
108
109
110 static void
111 name_lookup_proc (void *cls,
112                   const struct GNUNET_CRYPTO_EccPublicKeyBinaryEncoded *zone_key,
113                   struct GNUNET_TIME_Absolute expire,
114                   const char *n,
115                   unsigned int rd_count,
116                   const struct GNUNET_NAMESTORE_RecordData *rd,
117                   const struct GNUNET_CRYPTO_EccSignature *signature)
118 {
119   static int found = GNUNET_NO;
120   int failed = GNUNET_NO;
121
122   if (NULL != n)
123   {
124     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
125                 "Lookup for name `%s' returned %u records\n", n, rd_count);
126     if (0 != memcmp (zone_key, 
127                      &pubkey,
128                      sizeof (struct GNUNET_CRYPTO_EccPublicKeyBinaryEncoded)))
129     {
130       GNUNET_break (0);
131       failed = GNUNET_YES;
132     }
133
134     if (0 != strcmp(n, s_name))
135     {
136       GNUNET_break (0);
137       failed = GNUNET_YES;
138     }
139
140     if (0 != rd_count)
141     {
142       GNUNET_break (0);
143       failed = GNUNET_YES;
144     }
145     if (failed == GNUNET_NO)
146       res = 0;
147     else
148       res = 1;
149   }
150   else
151   {
152     if (found != GNUNET_YES)
153     {
154       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to lookup records for name `%s'\n", s_name);
155       res = 1;
156     }
157     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Lookup done for name %s'\n", s_name);
158   }
159   GNUNET_SCHEDULER_add_now(&end, NULL);
160 }
161
162
163 static void
164 remove_cont (void *cls, int32_t success, const char *emsg)
165 {
166   char *name = cls;
167   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Remove record for `%s': %s\n", name, (success == GNUNET_YES) ? "SUCCESS" : "FAIL", emsg);
168   if (success == GNUNET_OK)
169   {
170     res = 0;
171     GNUNET_NAMESTORE_lookup_record (nsh, &s_zone, name, 0, &name_lookup_proc, name);
172   }
173   else
174   {
175     res = 1;
176     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to remove record for name `%s'\n", name);
177     GNUNET_SCHEDULER_add_now(&end, NULL);
178   }
179
180 }
181
182
183 static void
184 put_cont (void *cls, int32_t success, const char *emsg)
185 {
186   char *name = cls;
187   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Name store added record for `%s': %s\n", name, (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
188   if (success == GNUNET_OK)
189   {
190     res = 0;
191     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Removing record for `%s'\n", name);
192
193     GNUNET_NAMESTORE_record_put_by_authority (nsh, privkey, name, 
194                                               0, NULL,
195                                               &remove_cont, name);
196   }
197   else
198   {
199     res = 1;
200     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to put records for name `%s'\n", name);
201     GNUNET_SCHEDULER_add_now(&end, NULL);
202   }
203 }
204
205
206 static struct GNUNET_NAMESTORE_RecordData *
207 create_record (unsigned int count)
208 {
209   unsigned int c;
210   struct GNUNET_NAMESTORE_RecordData * rd;
211
212   rd = GNUNET_malloc (count * sizeof (struct GNUNET_NAMESTORE_RecordData));
213   rd[0].expiration_time = GNUNET_TIME_relative_to_absolute (GNUNET_TIME_UNIT_HOURS).abs_value;
214   rd[0].record_type = 0;
215   rd[0].data_size = TEST_REMOVE_RECORD_DATALEN;
216   rd[0].data = GNUNET_malloc(TEST_REMOVE_RECORD_DATALEN);
217   memset ((char *) rd[0].data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
218   for (c = 1; c < count; c++)
219   {
220     rd[c].expiration_time = GNUNET_TIME_relative_to_absolute (GNUNET_TIME_UNIT_HOURS).abs_value;
221     rd[c].record_type = TEST_RECORD_TYPE;
222     rd[c].data_size = TEST_RECORD_DATALEN;
223     rd[c].data = GNUNET_malloc(TEST_RECORD_DATALEN);
224     memset ((char *) rd[c].data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
225   }
226
227   return rd;
228 }
229
230
231 static void
232 run (void *cls, 
233      const struct GNUNET_CONFIGURATION_Handle *cfg,
234      struct GNUNET_TESTING_Peer *peer)
235 {
236   size_t rd_ser_len;
237   char *hostkey_file;
238   struct GNUNET_TIME_Absolute et;
239
240   endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT,endbadly, NULL);
241   /* load privat key */
242   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR,
243       "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
244   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
245   privkey = GNUNET_CRYPTO_ecc_key_create_from_file(hostkey_file);
246   GNUNET_free (hostkey_file);
247   GNUNET_assert (privkey != NULL);
248   /* get public key */
249   GNUNET_CRYPTO_ecc_key_get_public(privkey, &pubkey);
250
251   /* create record */
252   s_name = GNUNET_NAMESTORE_normalize_string ("DUMMY.dummy.gnunet");
253   s_rd = create_record (RECORDS);
254
255   rd_ser_len = GNUNET_NAMESTORE_records_get_size(RECORDS, s_rd);
256   char rd_ser[rd_ser_len];
257   GNUNET_NAMESTORE_records_serialize(RECORDS, s_rd, rd_ser_len, rd_ser);
258
259   /* sign */
260   et.abs_value = s_rd[0].expiration_time;
261   s_signature = GNUNET_NAMESTORE_create_signature(privkey, et, s_name, s_rd, RECORDS);
262
263   /* create random zone hash */
264   GNUNET_CRYPTO_short_hash (&pubkey, sizeof (struct GNUNET_CRYPTO_EccPublicKeyBinaryEncoded), &s_zone);
265
266   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Name: `%s' Zone: `%s' \n", s_name, GNUNET_NAMESTORE_short_h2s (&s_zone));
267   nsh = GNUNET_NAMESTORE_connect (cfg);
268   GNUNET_break (NULL != nsh);
269   GNUNET_break (s_rd != NULL);
270   GNUNET_break (s_name != NULL);
271   GNUNET_NAMESTORE_record_put (nsh, &pubkey, s_name,
272                               GNUNET_TIME_UNIT_FOREVER_ABS,
273                               RECORDS, s_rd, s_signature, put_cont, s_name);
274 }
275
276
277 int
278 main (int argc, char *argv[])
279 {
280   res = 1;
281   if (0 != 
282       GNUNET_TESTING_service_run ("test-namestore-api-remove",
283                                   "namestore",
284                                   "test_namestore_api.conf",
285                                   &run,
286                                   NULL))
287     return 1;
288   GNUNET_free_non_null (s_signature);
289   return res;
290 }
291
292 /* end of test_namestore_api.c */