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