-fixing testcases with new expiration code
[oweals/gnunet.git] / src / namestore / test_namestore_api_lookup.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-new.h"
28 #include "namestore.h"
29 #include "gnunet_signatures.h"
30
31 #define VERBOSE GNUNET_NO
32
33 #define RECORDS 5
34
35 #define TEST_RECORD_TYPE 1234
36
37 #define TEST_RECORD_DATALEN 123
38
39 #define TEST_RECORD_DATA 'a'
40
41 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
42
43
44 static struct GNUNET_NAMESTORE_Handle * nsh;
45
46 static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
47
48 static struct GNUNET_CRYPTO_RsaPrivateKey * privkey;
49
50 static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pubkey;
51
52 static struct GNUNET_CRYPTO_RsaSignature *s_signature;
53
54 static struct GNUNET_CRYPTO_ShortHashCode s_zone;
55
56 static struct GNUNET_NAMESTORE_RecordData *s_rd;
57
58 static char *s_name;
59
60 static int res;
61
62
63 /**
64  * Re-establish the connection to the service.
65  *
66  * @param cls handle to use to re-connect.
67  * @param tc scheduler context
68  */
69 static void
70 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
71 {
72   if (nsh != NULL)
73     GNUNET_NAMESTORE_disconnect (nsh, GNUNET_YES);
74   nsh = NULL;
75   if (privkey != NULL)
76     GNUNET_CRYPTO_rsa_key_free (privkey);
77   privkey = NULL;
78   res = 1;
79 }
80
81
82 static void
83 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
84 {
85   int c;
86
87   if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
88   {
89     GNUNET_SCHEDULER_cancel (endbadly_task);
90     endbadly_task = GNUNET_SCHEDULER_NO_TASK;
91   }
92   for (c = 0; c < RECORDS; c++)
93     GNUNET_free_non_null((void *) s_rd[c].data);
94   GNUNET_free (s_rd);
95   if (privkey != NULL)
96     GNUNET_CRYPTO_rsa_key_free (privkey);
97   privkey = NULL;
98   if (nsh != NULL)
99     GNUNET_NAMESTORE_disconnect (nsh, GNUNET_YES);
100   nsh = NULL;
101 }
102
103
104 static void
105 name_lookup_proc (void *cls,
106                   const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *zone_key,
107                   struct GNUNET_TIME_Absolute expire,
108                   const char *n,
109                   unsigned int rd_count,
110                   const struct GNUNET_NAMESTORE_RecordData *rd,
111                   const struct GNUNET_CRYPTO_RsaSignature *signature)
112 {
113   static int found = GNUNET_NO;
114   int c;
115
116   if (n != NULL)
117   {
118     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Checking returned results\n");
119     if (0 != memcmp (zone_key, &pubkey, sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded)))
120     {
121       GNUNET_break (0);
122     }
123     if (0 != memcmp (signature, s_signature, sizeof (struct GNUNET_CRYPTO_RsaSignature)))
124     {
125       GNUNET_break (0);
126     }
127     if (0 != strcmp(n, s_name))
128     {
129       GNUNET_break (0);
130     }
131     if (RECORDS != rd_count)
132     {
133       GNUNET_break (0);
134     }
135     for (c = 0; c < RECORDS; c++)
136     {
137       if (GNUNET_NO == GNUNET_NAMESTORE_records_cmp (&rd[c], &s_rd[c]))
138       {
139         GNUNET_break (0);
140       }
141     }
142     found = GNUNET_YES;
143     res = 0;
144   }
145   else
146   {
147     if (found != GNUNET_YES)
148     {
149       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to lookup records for name `%s'\n", s_name);
150       res = 1;
151     }
152     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Lookup done for name %s'\n", s_name);
153   }
154   GNUNET_SCHEDULER_add_now(&end, NULL);
155 }
156
157
158 static void
159 put_cont (void *cls, int32_t success, const char *emsg)
160 {
161   char * name = cls;
162
163   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Name store added record for `%s': %s\n", name, (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
164   if (success == GNUNET_OK)
165   {
166     res = 0;
167     GNUNET_NAMESTORE_lookup_record (nsh, &s_zone, name, 0, &name_lookup_proc, NULL);
168   }
169   else
170   {
171     res = 1;
172     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to put records for name `%s'\n", name);
173     GNUNET_SCHEDULER_add_now(&end, NULL);
174   }
175 }
176
177
178 static struct GNUNET_NAMESTORE_RecordData *
179 create_record (unsigned int count)
180 {
181   unsigned int c;
182   struct GNUNET_NAMESTORE_RecordData * rd;
183
184   rd = GNUNET_malloc (count * sizeof (struct GNUNET_NAMESTORE_RecordData));
185   for (c = 0; c < count; c++)
186   {
187     rd[c].expiration_time = GNUNET_TIME_absolute_get().abs_value;
188     rd[c].record_type = TEST_RECORD_TYPE;
189     rd[c].data_size = TEST_RECORD_DATALEN;
190     rd[c].data = GNUNET_malloc(TEST_RECORD_DATALEN);
191     memset ((char *) rd[c].data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
192   }
193   return rd;
194 }
195
196
197 static void
198 run (void *cls, 
199      const struct GNUNET_CONFIGURATION_Handle *cfg)
200 {
201   size_t rd_ser_len;
202   struct GNUNET_TIME_Absolute et;
203
204   endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT,endbadly, NULL);
205
206   /* load privat key from file not included in zonekey dir */
207   privkey = GNUNET_CRYPTO_rsa_key_create_from_file("test_hostkey");
208   GNUNET_assert (privkey != NULL);
209   /* get public key */
210   GNUNET_CRYPTO_rsa_key_get_public(privkey, &pubkey);
211
212   /* create record */
213   s_name = "dummy.dummy.gnunet";
214   s_rd = create_record (RECORDS);
215
216   rd_ser_len = GNUNET_NAMESTORE_records_get_size(RECORDS, s_rd);
217   char rd_ser[rd_ser_len];
218   GNUNET_NAMESTORE_records_serialize(RECORDS, s_rd, rd_ser_len, rd_ser);
219
220   /* sign */
221   et.abs_value = s_rd[0].expiration_time;
222   s_signature = GNUNET_NAMESTORE_create_signature(privkey, et, s_name, s_rd, RECORDS);
223   
224   /* create random zone hash */
225   GNUNET_CRYPTO_short_hash (&pubkey, sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded), &s_zone);
226   nsh = GNUNET_NAMESTORE_connect (cfg);
227   GNUNET_break (NULL != nsh);
228
229   GNUNET_break (s_rd != NULL);
230   GNUNET_break (s_name != NULL);
231
232   GNUNET_NAMESTORE_record_put (nsh, &pubkey, s_name,
233                                GNUNET_TIME_UNIT_FOREVER_ABS,
234                                RECORDS, s_rd, s_signature, put_cont, s_name);
235 }
236
237
238 int
239 main (int argc, char *argv[])
240 {
241   res = 1;
242   if (0 != 
243       GNUNET_TESTING_service_run ("test-namestore-api-lookup",
244                                   "namestore",
245                                   "test_namestore_api.conf",
246                                   &run,
247                                   NULL))
248     return 1;
249   GNUNET_free_non_null (s_signature);
250   return res;
251 }
252
253
254 /* end of test_namestore_api.c */