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