aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/namestore/test_namestore_api_create.c367
1 files changed, 367 insertions, 0 deletions
diff --git a/src/namestore/test_namestore_api_create.c b/src/namestore/test_namestore_api_create.c
new file mode 100644
index 000000000..5caf877c2
--- /dev/null
+++ b/src/namestore/test_namestore_api_create.c
@@ -0,0 +1,367 @@
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_CREATE_RECORD_TYPE 4321
38#define TEST_CREATE_RECORD_DATALEN 255
39#define TEST_CREATE_RECORD_DATA 'b'
40
41#define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
42
43static struct GNUNET_NAMESTORE_Handle * nsh;
44
45static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
46static struct GNUNET_OS_Process *arm;
47
48static struct GNUNET_CRYPTO_RsaPrivateKey * privkey;
49static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pubkey;
50struct GNUNET_CRYPTO_RsaSignature s_signature;
51static GNUNET_HashCode s_zone;
52struct GNUNET_NAMESTORE_RecordData *s_rd;
53struct GNUNET_NAMESTORE_RecordData *s_create_rd;
54static char *s_name;
55
56
57
58static int res;
59
60static void
61start_arm (const char *cfgname)
62{
63 arm = GNUNET_OS_start_process (GNUNET_YES, NULL, NULL, "gnunet-service-arm",
64 "gnunet-service-arm", "-c", cfgname,
65#if VERBOSE_PEERS
66 "-L", "DEBUG",
67#else
68 "-L", "ERROR",
69#endif
70 NULL);
71}
72
73static void
74stop_arm ()
75{
76 if (NULL != arm)
77 {
78 if (0 != GNUNET_OS_process_kill (arm, SIGTERM))
79 GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
80 GNUNET_OS_process_wait (arm);
81 GNUNET_OS_process_close (arm);
82 arm = NULL;
83 }
84}
85
86/**
87 * Re-establish the connection to the service.
88 *
89 * @param cls handle to use to re-connect.
90 * @param tc scheduler context
91 */
92static void
93endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
94{
95 if (nsh != NULL)
96 GNUNET_NAMESTORE_disconnect (nsh, GNUNET_YES);
97 nsh = NULL;
98
99 if (privkey != NULL)
100 GNUNET_CRYPTO_rsa_key_free (privkey);
101 privkey = NULL;
102
103 if (NULL != arm)
104 stop_arm();
105
106 res = 1;
107}
108
109
110static void
111end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
112{
113 if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
114 {
115 GNUNET_SCHEDULER_cancel (endbadly_task);
116 endbadly_task = GNUNET_SCHEDULER_NO_TASK;
117 }
118
119 int c;
120 for (c = 0; c < RECORDS; c++)
121 GNUNET_free_non_null((void *) s_rd[c].data);
122 GNUNET_free (s_rd);
123 GNUNET_free (s_create_rd);
124
125 if (privkey != NULL)
126 GNUNET_CRYPTO_rsa_key_free (privkey);
127 privkey = NULL;
128
129 if (nsh != NULL)
130 GNUNET_NAMESTORE_disconnect (nsh, GNUNET_YES);
131 nsh = NULL;
132
133 if (NULL != arm)
134 stop_arm();
135}
136
137void name_lookup_proc (void *cls,
138 const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *zone_key,
139 struct GNUNET_TIME_Absolute expire,
140 const char *n,
141 unsigned int rd_count,
142 const struct GNUNET_NAMESTORE_RecordData *rd,
143 const struct GNUNET_CRYPTO_RsaSignature *signature)
144{
145 static int found = GNUNET_NO;
146 int failed = GNUNET_NO;
147 int c;
148
149 if (n != NULL)
150 {
151 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Checking returned results\n");
152 if (0 != memcmp (zone_key, &pubkey, sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded)))
153 {
154 GNUNET_break (0);
155 failed = GNUNET_YES;
156 }
157
158 if (0 != strcmp(n, s_name))
159 {
160 GNUNET_break (0);
161 failed = GNUNET_YES;
162 }
163
164 if (RECORDS+1 != rd_count)
165 {
166 GNUNET_break (0);
167 failed = GNUNET_YES;
168 }
169
170 for (c = 0; c < RECORDS; c++)
171 {
172 GNUNET_break (rd[c].expiration.abs_value == s_rd[c].expiration.abs_value);
173 GNUNET_break (rd[c].record_type == TEST_RECORD_TYPE);
174 GNUNET_break (rd[c].data_size == TEST_RECORD_DATALEN);
175 GNUNET_break (0 == memcmp (rd[c].data, s_rd[c].data, TEST_RECORD_DATALEN));
176 }
177
178 if (rd[c].record_type != TEST_CREATE_RECORD_TYPE)
179 {
180 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "record_type %u %u\n", rd[c].record_type , TEST_CREATE_RECORD_TYPE);
181 GNUNET_break (0);
182 failed = GNUNET_YES;
183 }
184 if (rd[c].data_size != TEST_CREATE_RECORD_DATALEN)
185 {
186 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "data_size %u %u\n", rd[c].data_size , TEST_CREATE_RECORD_DATALEN);
187 GNUNET_break (0);
188 failed = GNUNET_YES;
189 }
190 else
191 {
192 char *dummy[TEST_CREATE_RECORD_DATALEN];
193 memset (&dummy, TEST_CREATE_RECORD_DATA, TEST_CREATE_RECORD_DATALEN);
194 if (0 != memcmp (&dummy, s_create_rd->data, TEST_CREATE_RECORD_DATALEN))
195 {
196 GNUNET_break (0);
197 failed = GNUNET_YES;
198 }
199 }
200
201 found = GNUNET_YES;
202 if (failed == GNUNET_NO)
203 res = 0;
204 else
205 res = 1;
206 }
207 else
208 {
209 if (found != GNUNET_YES)
210 {
211 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to lookup records for name `%s'\n", s_name);
212 res = 1;
213 }
214 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Lookup done for name %s'\n", s_name);
215 }
216 GNUNET_SCHEDULER_add_now(&end, NULL);
217}
218
219void
220create_cont (void *cls, int32_t success, const char *emsg)
221{
222 char *name = cls;
223 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Create record for `%s': %s\n", name, (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
224 if (success == GNUNET_OK)
225 {
226 res = 0;
227
228 GNUNET_NAMESTORE_lookup_record (nsh, &s_zone, name, 0, &name_lookup_proc, name);
229 }
230 else
231 {
232 res = 1;
233 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to put records for name `%s'\n", name);
234 GNUNET_SCHEDULER_add_now(&end, NULL);
235 }
236
237}
238
239void
240put_cont (void *cls, int32_t success, const char *emsg)
241{
242 char *name = cls;
243 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Name store added record for `%s': %s\n", name, (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
244 if (success == GNUNET_OK)
245 {
246 res = 0;
247 s_create_rd = GNUNET_malloc(sizeof (struct GNUNET_NAMESTORE_RecordData) + TEST_CREATE_RECORD_DATALEN);
248 s_create_rd->expiration = GNUNET_TIME_absolute_get_forever();
249 s_create_rd->record_type = TEST_CREATE_RECORD_TYPE;
250 s_create_rd->flags = GNUNET_NAMESTORE_RF_AUTHORITY;
251 s_create_rd->data = &s_create_rd[1];
252 s_create_rd->data_size = TEST_CREATE_RECORD_DATALEN;
253 memset ((char *) s_create_rd->data, TEST_CREATE_RECORD_DATA, TEST_CREATE_RECORD_DATALEN);
254
255 GNUNET_NAMESTORE_record_create (nsh, privkey, name, s_create_rd, &create_cont, name);
256 }
257 else
258 {
259 res = 1;
260 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to put records for name `%s'\n", name);
261 GNUNET_SCHEDULER_add_now(&end, NULL);
262 }
263}
264
265static struct GNUNET_NAMESTORE_RecordData *
266create_record (int count)
267{
268 int c;
269 struct GNUNET_NAMESTORE_RecordData * rd;
270 rd = GNUNET_malloc (count * sizeof (struct GNUNET_NAMESTORE_RecordData));
271
272 for (c = 0; c < RECORDS; c++)
273 {
274 rd[c].expiration = GNUNET_TIME_absolute_get();
275 rd[c].record_type = TEST_RECORD_TYPE;
276 rd[c].data_size = TEST_RECORD_DATALEN;
277 rd[c].data = GNUNET_malloc(TEST_RECORD_DATALEN);
278 memset ((char *) rd[c].data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
279 }
280
281 return rd;
282}
283
284static void
285run (void *cls, char *const *args, const char *cfgfile,
286 const struct GNUNET_CONFIGURATION_Handle *cfg)
287{
288 endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT,endbadly, NULL);
289 char * rd_ser;
290 size_t rd_ser_len;
291
292 /* load privat key */
293 privkey = GNUNET_CRYPTO_rsa_key_create_from_file("hostkey");
294 GNUNET_assert (privkey != NULL);
295 /* get public key */
296 GNUNET_CRYPTO_rsa_key_get_public(privkey, &pubkey);
297
298 /* create record */
299 s_name = "dummy.dummy.gnunet";
300 s_rd = create_record (RECORDS);
301 rd_ser_len = GNUNET_NAMESTORE_records_serialize(&rd_ser, RECORDS, s_rd);
302
303 /* sign */
304 struct GNUNET_CRYPTO_RsaSignaturePurpose *sig_purpose = GNUNET_malloc(sizeof (struct GNUNET_CRYPTO_RsaSignaturePurpose) + rd_ser_len);
305 sig_purpose->size = htonl (sizeof (struct GNUNET_CRYPTO_RsaSignaturePurpose)+ rd_ser_len);
306 sig_purpose->purpose = htonl (GNUNET_SIGNATURE_PURPOSE_GNS_RECORD_SIGN);
307 memcpy (&sig_purpose[1], rd_ser, rd_ser_len);
308 GNUNET_CRYPTO_rsa_sign (privkey, sig_purpose, &s_signature);
309
310 GNUNET_free (rd_ser);
311 GNUNET_free (sig_purpose);
312
313 /* create random zone hash */
314 GNUNET_CRYPTO_hash (&pubkey, sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded), &s_zone);
315
316 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Name: `%s' Zone: `%s' \n", s_name, GNUNET_h2s_full(&s_zone));
317
318
319 start_arm (cfgfile);
320 GNUNET_assert (arm != NULL);
321
322 nsh = GNUNET_NAMESTORE_connect (cfg);
323 GNUNET_break (NULL != nsh);
324
325
326
327 GNUNET_break (s_rd != NULL);
328 GNUNET_break (s_name != NULL);
329
330 GNUNET_NAMESTORE_record_put (nsh, &pubkey, s_name,
331 GNUNET_TIME_absolute_get_forever(),
332 RECORDS, s_rd, &s_signature, put_cont, s_name);
333
334}
335
336static int
337check ()
338{
339 static char *const argv[] = { "test-namestore-api",
340 "-c",
341 "test_namestore_api.conf",
342#if VERBOSE
343 "-L", "DEBUG",
344#endif
345 NULL
346 };
347 static struct GNUNET_GETOPT_CommandLineOption options[] = {
348 GNUNET_GETOPT_OPTION_END
349 };
350
351 res = 1;
352 GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, "test-namestore-api",
353 "nohelp", options, &run, &res);
354 return res;
355}
356
357int
358main (int argc, char *argv[])
359{
360 int ret;
361
362 ret = check ();
363
364 return ret;
365}
366
367/* end of test_namestore_api.c */