-fixing #2405
[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_destroy (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,
179       "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
180   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
181   privkey = GNUNET_CRYPTO_rsa_key_create_from_file(hostkey_file);
182   GNUNET_free (hostkey_file);
183
184   GNUNET_assert (privkey != NULL);
185   /* get public key */
186   GNUNET_CRYPTO_rsa_key_get_public(privkey, &pubkey);
187
188   struct GNUNET_CRYPTO_RsaSignature *signature;
189
190   start_arm (cfgfile);
191   GNUNET_assert (arm != NULL);
192
193   nsh = GNUNET_NAMESTORE_connect (cfg);
194   GNUNET_break (NULL != nsh);
195
196   /* create record */
197   char * s_name = "dummy.dummy.gnunet";
198   s_rd = create_record (RECORDS);
199
200   signature = GNUNET_NAMESTORE_create_signature(privkey, s_rd[0].expiration, s_name, s_rd, RECORDS);
201
202   GNUNET_break (s_rd != NULL);
203   GNUNET_break (s_name != NULL);
204
205   GNUNET_NAMESTORE_record_put (nsh, &pubkey, s_name,
206                               GNUNET_TIME_UNIT_FOREVER_ABS,
207                               RECORDS, s_rd, signature, put_cont, s_name);
208
209   GNUNET_free (signature);
210
211   int c;
212   for (c = 0; c < RECORDS; c++)
213     GNUNET_free_non_null((void *) s_rd[c].data);
214   GNUNET_free (s_rd);
215
216 }
217
218 static int
219 check ()
220 {
221   static char *const argv[] = { "test-namestore-api",
222     "-c",
223     "test_namestore_api.conf",
224 #if VERBOSE
225     "-L", "DEBUG",
226 #endif
227     NULL
228   };
229   static struct GNUNET_GETOPT_CommandLineOption options[] = {
230     GNUNET_GETOPT_OPTION_END
231   };
232
233   res = 1;
234   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, "test-namestore-api",
235                       "nohelp", options, &run, &res);
236   return res;
237 }
238
239 int
240 main (int argc, char *argv[])
241 {
242   int ret;
243
244   ret = check ();
245
246   return ret;
247 }
248
249 /* end of test_namestore_api.c */