aboutsummaryrefslogtreecommitdiff
path: root/src/namestore/test_namestore_api_lookup.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2012-02-29 09:53:33 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2012-02-29 09:53:33 +0000
commite9efa127718d5300feed6bf13c106a3521db081a (patch)
tree5c47259aef47b3c618bbd34a596c65279040949c /src/namestore/test_namestore_api_lookup.c
parent168fbc4bd922076424a8585d2a2e0e3a896b40a4 (diff)
downloadgnunet-e9efa127718d5300feed6bf13c106a3521db081a.tar.gz
gnunet-e9efa127718d5300feed6bf13c106a3521db081a.zip
- lookup test
Diffstat (limited to 'src/namestore/test_namestore_api_lookup.c')
-rw-r--r--src/namestore/test_namestore_api_lookup.c250
1 files changed, 250 insertions, 0 deletions
diff --git a/src/namestore/test_namestore_api_lookup.c b/src/namestore/test_namestore_api_lookup.c
new file mode 100644
index 000000000..2ec589a20
--- /dev/null
+++ b/src/namestore/test_namestore_api_lookup.c
@@ -0,0 +1,250 @@
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
28#define VERBOSE GNUNET_NO
29
30#define RECORDS 5
31#define TEST_RECORD_TYPE 1234
32#define TEST_RECORD_DATALEN 123
33#define TEST_RECORD_DATA 'a'
34
35#define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
36
37static struct GNUNET_NAMESTORE_Handle * nsh;
38
39static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
40static struct GNUNET_OS_Process *arm;
41
42static struct GNUNET_CRYPTO_RsaPrivateKey * privkey;
43static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pubkey;
44static GNUNET_HashCode zone;
45static char *name;
46
47struct GNUNET_NAMESTORE_RecordData *rd;
48
49static int res;
50
51static void
52start_arm (const char *cfgname)
53{
54 arm = GNUNET_OS_start_process (GNUNET_YES, NULL, NULL, "gnunet-service-arm",
55 "gnunet-service-arm", "-c", cfgname,
56#if VERBOSE_PEERS
57 "-L", "DEBUG",
58#else
59 "-L", "ERROR",
60#endif
61 NULL);
62}
63
64static void
65stop_arm ()
66{
67 if (NULL != arm)
68 {
69 if (0 != GNUNET_OS_process_kill (arm, SIGTERM))
70 GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
71 GNUNET_OS_process_wait (arm);
72 GNUNET_OS_process_close (arm);
73 arm = NULL;
74 }
75}
76
77/**
78 * Re-establish the connection to the service.
79 *
80 * @param cls handle to use to re-connect.
81 * @param tc scheduler context
82 */
83static void
84endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
85{
86 if (nsh != NULL)
87 GNUNET_NAMESTORE_disconnect (nsh, GNUNET_YES);
88 nsh = NULL;
89
90 if (privkey != NULL)
91 GNUNET_CRYPTO_rsa_key_free (privkey);
92 privkey = NULL;
93
94 if (NULL != arm)
95 stop_arm();
96
97 res = 1;
98}
99
100
101static void
102end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
103{
104 if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
105 {
106 GNUNET_SCHEDULER_cancel (endbadly_task);
107 endbadly_task = GNUNET_SCHEDULER_NO_TASK;
108 }
109
110 if (privkey != NULL)
111 GNUNET_CRYPTO_rsa_key_free (privkey);
112 privkey = NULL;
113
114 if (nsh != NULL)
115 GNUNET_NAMESTORE_disconnect (nsh, GNUNET_YES);
116 nsh = NULL;
117
118 if (NULL != arm)
119 stop_arm();
120}
121
122void name_lookup_proc (void *cls,
123 const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *zone_key,
124 struct GNUNET_TIME_Absolute expire,
125 const char *name,
126 unsigned int rd_count,
127 const struct GNUNET_NAMESTORE_RecordData *rd,
128 const struct GNUNET_CRYPTO_RsaSignature *signature)
129{
130 if (name != NULL)
131 res = 0;
132 else
133 {
134 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Failed to lookup records for name `%s'\n", zone_key, name, rd_count, rd, signature);
135 res = 1;
136 }
137
138 GNUNET_SCHEDULER_add_now(&end, NULL);
139}
140
141void
142put_cont (void *cls, int32_t success, const char *emsg)
143{
144 char * name = cls;
145
146 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Name store added record for `%s': %s\n", name, (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
147 if (success == GNUNET_OK)
148 {
149 res = 0;
150 GNUNET_NAMESTORE_lookup_record (nsh, &zone, name, 0, &name_lookup_proc, NULL);
151 }
152 else
153 {
154 res = 1;
155 GNUNET_SCHEDULER_add_now(&end, NULL);
156 }
157}
158
159static struct GNUNET_NAMESTORE_RecordData *
160create_record (int count)
161{
162 int c;
163 struct GNUNET_NAMESTORE_RecordData * rd;
164 rd = GNUNET_malloc (count * sizeof (struct GNUNET_NAMESTORE_RecordData));
165
166 for (c = 0; c < RECORDS; c++)
167 {
168 rd[c].expiration = GNUNET_TIME_absolute_get();
169 rd[c].record_type = TEST_RECORD_TYPE;
170 rd[c].data_size = TEST_RECORD_DATALEN;
171 rd[c].data = GNUNET_malloc(TEST_RECORD_DATALEN);
172 memset ((char *) rd[c].data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
173 }
174
175 return rd;
176}
177
178static void
179run (void *cls, char *const *args, const char *cfgfile,
180 const struct GNUNET_CONFIGURATION_Handle *cfg)
181{
182 endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT,endbadly, NULL);
183
184 /* load privat key */
185 privkey = GNUNET_CRYPTO_rsa_key_create_from_file("hostkey");
186 GNUNET_assert (privkey != NULL);
187 /* get public key */
188 GNUNET_CRYPTO_rsa_key_get_public(privkey, &pubkey);
189
190 /* create random zone hash */
191 GNUNET_CRYPTO_hash_create_random (GNUNET_CRYPTO_QUALITY_WEAK, &zone);
192
193 struct GNUNET_CRYPTO_RsaSignature signature;
194
195 start_arm (cfgfile);
196 GNUNET_assert (arm != NULL);
197
198 nsh = GNUNET_NAMESTORE_connect (cfg);
199 GNUNET_break (NULL != nsh);
200
201 /* create record */
202 name = "dummy.dummy.gnunet";
203 rd = create_record (RECORDS);
204
205 GNUNET_break (rd != NULL);
206 GNUNET_break (name != NULL);
207
208 GNUNET_NAMESTORE_record_put (nsh, &pubkey, name,
209 GNUNET_TIME_absolute_get_forever(),
210 RECORDS, rd, &signature, put_cont, name);
211
212 int c;
213 for (c = 0; c < RECORDS; c++)
214 GNUNET_free_non_null((void *) rd[c].data);
215 GNUNET_free (rd);
216
217}
218
219static int
220check ()
221{
222 static char *const argv[] = { "test-namestore-api",
223 "-c",
224 "test_namestore_api.conf",
225#if VERBOSE
226 "-L", "DEBUG",
227#endif
228 NULL
229 };
230 static struct GNUNET_GETOPT_CommandLineOption options[] = {
231 GNUNET_GETOPT_OPTION_END
232 };
233
234 res = 1;
235 GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, "test-namestore-api",
236 "nohelp", options, &run, &res);
237 return res;
238}
239
240int
241main (int argc, char *argv[])
242{
243 int ret;
244
245 ret = check ();
246
247 return ret;
248}
249
250/* end of test_namestore_api.c */