(no commit message)
[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
150   return rd;
151 }
152
153 void
154 delete_existing_db (const struct GNUNET_CONFIGURATION_Handle *cfg)
155 {
156   char *afsdir;
157
158   if (GNUNET_OK ==
159       GNUNET_CONFIGURATION_get_value_filename (cfg, "namestore-sqlite",
160                                                "FILENAME", &afsdir))
161   {
162     if (GNUNET_OK == GNUNET_DISK_file_test (afsdir))
163       if (GNUNET_OK == GNUNET_DISK_file_test (afsdir))
164         if (GNUNET_OK == GNUNET_DISK_directory_remove(afsdir))
165           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Deleted existing database `%s' \n", afsdir);
166    GNUNET_free (afsdir);
167   }
168 }
169
170 static void
171 run (void *cls, char *const *args, const char *cfgfile,
172      const struct GNUNET_CONFIGURATION_Handle *cfg)
173 {
174   delete_existing_db(cfg);
175   endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT,endbadly, NULL);
176
177   /* load privat key */
178   privkey = GNUNET_CRYPTO_rsa_key_create_from_file("hostkey");
179   GNUNET_assert (privkey != NULL);
180   /* get public key */
181   GNUNET_CRYPTO_rsa_key_get_public(privkey, &pubkey);
182
183   struct GNUNET_CRYPTO_RsaSignature *signature;
184
185   start_arm (cfgfile);
186   GNUNET_assert (arm != NULL);
187
188   nsh = GNUNET_NAMESTORE_connect (cfg);
189   GNUNET_break (NULL != nsh);
190
191   /* create record */
192   char * s_name = "dummy.dummy.gnunet";
193   s_rd = create_record (RECORDS);
194
195   signature = GNUNET_NAMESTORE_create_signature(privkey, s_name, s_rd, RECORDS);
196
197   GNUNET_break (s_rd != NULL);
198   GNUNET_break (s_name != NULL);
199
200   GNUNET_NAMESTORE_record_put (nsh, &pubkey, s_name,
201                               GNUNET_TIME_absolute_get_forever(),
202                               RECORDS, s_rd, signature, put_cont, s_name);
203
204   GNUNET_free (signature);
205
206   int c;
207   for (c = 0; c < RECORDS; c++)
208     GNUNET_free_non_null((void *) s_rd[c].data);
209   GNUNET_free (s_rd);
210
211 }
212
213 static int
214 check ()
215 {
216   static char *const argv[] = { "test-namestore-api",
217     "-c",
218     "test_namestore_api.conf",
219 #if VERBOSE
220     "-L", "DEBUG",
221 #endif
222     NULL
223   };
224   static struct GNUNET_GETOPT_CommandLineOption options[] = {
225     GNUNET_GETOPT_OPTION_END
226   };
227
228   res = 1;
229   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, "test-namestore-api",
230                       "nohelp", options, &run, &res);
231   return res;
232 }
233
234 int
235 main (int argc, char *argv[])
236 {
237   int ret;
238
239   ret = check ();
240
241   return ret;
242 }
243
244 /* end of test_namestore_api.c */