- changes to signing verfifying: includes block expiration
[oweals/gnunet.git] / src / namestore / test_namestore_api_put.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 "namestore.h"
28
29 #define VERBOSE GNUNET_NO
30
31 #define RECORDS 5
32 #define TEST_RECORD_TYPE 1234
33 #define TEST_RECORD_DATALEN 123
34 #define TEST_RECORD_DATA 'a'
35
36 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
37
38 static struct GNUNET_NAMESTORE_Handle * nsh;
39
40 static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
41 static struct GNUNET_OS_Process *arm;
42
43 static struct GNUNET_CRYPTO_RsaPrivateKey * privkey;
44 static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pubkey;
45
46 struct GNUNET_NAMESTORE_RecordData *s_rd;
47
48 static int res;
49
50 static void
51 start_arm (const char *cfgname)
52 {
53   arm = GNUNET_OS_start_process (GNUNET_YES, NULL, NULL, "gnunet-service-arm",
54                                "gnunet-service-arm", "-c", cfgname,
55 #if VERBOSE_PEERS
56                                "-L", "DEBUG",
57 #else
58                                "-L", "ERROR",
59 #endif
60                                NULL);
61 }
62
63 static void
64 stop_arm ()
65 {
66   if (NULL != arm)
67   {
68     if (0 != GNUNET_OS_process_kill (arm, SIGTERM))
69       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
70     GNUNET_OS_process_wait (arm);
71     GNUNET_OS_process_close (arm);
72     arm = NULL;
73   }
74 }
75
76 /**
77  * Re-establish the connection to the service.
78  *
79  * @param cls handle to use to re-connect.
80  * @param tc scheduler context
81  */
82 static void
83 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
84 {
85   if (nsh != NULL)
86     GNUNET_NAMESTORE_disconnect (nsh, GNUNET_YES);
87   nsh = NULL;
88
89   if (privkey != NULL)
90     GNUNET_CRYPTO_rsa_key_free (privkey);
91   privkey = NULL;
92
93   if (NULL != arm)
94     stop_arm();
95   res = 1;
96 }
97
98
99 static void
100 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
101 {
102   if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
103   {
104     GNUNET_SCHEDULER_cancel (endbadly_task);
105     endbadly_task = GNUNET_SCHEDULER_NO_TASK;
106   }
107
108   if (privkey != NULL)
109     GNUNET_CRYPTO_rsa_key_free (privkey);
110   privkey = NULL;
111
112   if (nsh != NULL)
113     GNUNET_NAMESTORE_disconnect (nsh, GNUNET_YES);
114   nsh = NULL;
115
116  if (NULL != arm)
117     stop_arm();
118 }
119
120 void
121 put_cont (void *cls, int32_t success, const char *emsg)
122 {
123   char * name = cls;
124
125   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Name store added record for `%s': %s\n", name, (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
126   if (success == GNUNET_OK)
127     res = 0;
128   else
129     res = 1;
130
131   GNUNET_SCHEDULER_add_now(&end, NULL);
132 }
133
134 static struct GNUNET_NAMESTORE_RecordData *
135 create_record (int count)
136 {
137   int c;
138   struct GNUNET_NAMESTORE_RecordData * rd;
139   rd = GNUNET_malloc (count * sizeof (struct GNUNET_NAMESTORE_RecordData));
140
141   for (c = 0; c < RECORDS; c++)
142   {
143   rd[c].expiration = GNUNET_TIME_absolute_get();
144   rd[c].record_type = TEST_RECORD_TYPE;
145   rd[c].data_size = TEST_RECORD_DATALEN;
146   rd[c].data = GNUNET_malloc(TEST_RECORD_DATALEN);
147   memset ((char *) rd[c].data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
148   }
149   return rd;
150 }
151
152 void
153 delete_existing_db (const struct GNUNET_CONFIGURATION_Handle *cfg)
154 {
155   char *afsdir;
156
157   if (GNUNET_OK ==
158       GNUNET_CONFIGURATION_get_value_filename (cfg, "namestore-sqlite",
159                                                "FILENAME", &afsdir))
160   {
161     if (GNUNET_OK == GNUNET_DISK_file_test (afsdir))
162       if (GNUNET_OK == GNUNET_DISK_file_test (afsdir))
163         if (GNUNET_OK == GNUNET_DISK_directory_remove(afsdir))
164           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Deleted existing database `%s' \n", afsdir);
165    GNUNET_free (afsdir);
166   }
167 }
168
169 static void
170 run (void *cls, char *const *args, const char *cfgfile,
171      const struct GNUNET_CONFIGURATION_Handle *cfg)
172 {
173   delete_existing_db(cfg);
174   endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT,endbadly, NULL);
175
176   /* load privat key */
177   char *hostkey_file;
178   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR, "4UCICULTINKC87UO4326KEEDQ9MTEP2AJT88MJFVGTGNK12QNGMQI2S41VI07UUU6EO19BTB06PDL0HE6VP1OM50HOJEI75RHP4JP80.zone");
179   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
180   privkey = GNUNET_CRYPTO_rsa_key_create_from_file(hostkey_file);
181   GNUNET_free (hostkey_file);
182
183   GNUNET_assert (privkey != NULL);
184   /* get public key */
185   GNUNET_CRYPTO_rsa_key_get_public(privkey, &pubkey);
186
187   struct GNUNET_CRYPTO_RsaSignature *signature;
188
189   start_arm (cfgfile);
190   GNUNET_assert (arm != NULL);
191
192   nsh = GNUNET_NAMESTORE_connect (cfg);
193   GNUNET_break (NULL != nsh);
194
195   /* create record */
196   char * s_name = "dummy.dummy.gnunet";
197   s_rd = create_record (RECORDS);
198
199   signature = GNUNET_NAMESTORE_create_signature(privkey, s_rd[0].expiration, s_name, s_rd, RECORDS);
200
201   GNUNET_break (s_rd != NULL);
202   GNUNET_break (s_name != NULL);
203
204   GNUNET_NAMESTORE_record_put (nsh, &pubkey, s_name,
205                               GNUNET_TIME_absolute_get_forever(),
206                               RECORDS, s_rd, signature, put_cont, s_name);
207
208   GNUNET_free (signature);
209
210   int c;
211   for (c = 0; c < RECORDS; c++)
212     GNUNET_free_non_null((void *) s_rd[c].data);
213   GNUNET_free (s_rd);
214
215 }
216
217 static int
218 check ()
219 {
220   static char *const argv[] = { "test-namestore-api",
221     "-c",
222     "test_namestore_api.conf",
223 #if VERBOSE
224     "-L", "DEBUG",
225 #endif
226     NULL
227   };
228   static struct GNUNET_GETOPT_CommandLineOption options[] = {
229     GNUNET_GETOPT_OPTION_END
230   };
231
232   res = 1;
233   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, "test-namestore-api",
234                       "nohelp", options, &run, &res);
235   return res;
236 }
237
238 int
239 main (int argc, char *argv[])
240 {
241   int ret;
242
243   ret = check ();
244
245   return ret;
246 }
247
248 /* end of test_namestore_api.c */