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