aboutsummaryrefslogtreecommitdiff
path: root/src/namestore
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-11-04 14:32:05 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-11-04 14:32:05 +0000
commit60e24213901d8b7948067e7100706d1efdac28b6 (patch)
tree3d1b0a3b5594d3aad51cb27dc0fa47800ebca734 /src/namestore
parent26593ac2b9aaaae80b86fb07a64289fde1de8410 (diff)
downloadgnunet-60e24213901d8b7948067e7100706d1efdac28b6.tar.gz
gnunet-60e24213901d8b7948067e7100706d1efdac28b6.zip
new test to lookup shadow record
Diffstat (limited to 'src/namestore')
-rw-r--r--src/namestore/Makefile.am10
-rw-r--r--src/namestore/test_namestore_api_lookup_shadow.c247
2 files changed, 257 insertions, 0 deletions
diff --git a/src/namestore/Makefile.am b/src/namestore/Makefile.am
index bd0754fc3..45d51a0b5 100644
--- a/src/namestore/Makefile.am
+++ b/src/namestore/Makefile.am
@@ -41,6 +41,7 @@ TESTING_TESTS = \
41 test_namestore_api_store_update \ 41 test_namestore_api_store_update \
42 test_namestore_api_lookup_public \ 42 test_namestore_api_lookup_public \
43 test_namestore_api_lookup_private \ 43 test_namestore_api_lookup_private \
44 test_namestore_api_lookup_shadow \
44 test_namestore_api_remove \ 45 test_namestore_api_remove \
45 test_namestore_api_remove_not_existing_record \ 46 test_namestore_api_remove_not_existing_record \
46 test_namestore_api_zone_iteration \ 47 test_namestore_api_zone_iteration \
@@ -206,6 +207,15 @@ test_namestore_api_lookup_private_LDADD = \
206 $(top_builddir)/src/namecache/libgnunetnamecache.la \ 207 $(top_builddir)/src/namecache/libgnunetnamecache.la \
207 $(top_builddir)/src/namestore/libgnunetnamestore.la 208 $(top_builddir)/src/namestore/libgnunetnamestore.la
208 209
210test_namestore_api_lookup_shadow_SOURCES = \
211 test_namestore_api_lookup_shadow.c
212test_namestore_api_lookup_shadow_LDADD = \
213 $(top_builddir)/src/testing/libgnunettesting.la \
214 $(top_builddir)/src/util/libgnunetutil.la \
215 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
216 $(top_builddir)/src/namecache/libgnunetnamecache.la \
217 $(top_builddir)/src/namestore/libgnunetnamestore.la
218
209test_namestore_api_put_SOURCES = \ 219test_namestore_api_put_SOURCES = \
210 test_namestore_api_put.c 220 test_namestore_api_put.c
211test_namestore_api_put_LDADD = \ 221test_namestore_api_put_LDADD = \
diff --git a/src/namestore/test_namestore_api_lookup_shadow.c b/src/namestore/test_namestore_api_lookup_shadow.c
new file mode 100644
index 000000000..6f9fd5638
--- /dev/null
+++ b/src/namestore/test_namestore_api_lookup_shadow.c
@@ -0,0 +1,247 @@
1/*
2 This file is part of GNUnet.
3 (C) 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: store a record and perform a lookup
23 */
24#include "platform.h"
25#include "gnunet_namecache_service.h"
26#include "gnunet_namestore_service.h"
27#include "gnunet_testing_lib.h"
28
29#define TEST_RECORD_TYPE 1234
30
31#define TEST_RECORD_DATALEN 123
32
33#define TEST_RECORD_DATA 'a'
34
35#define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
36
37
38static struct GNUNET_NAMESTORE_Handle *nsh;
39
40static struct GNUNET_NAMECACHE_Handle *nch;
41
42static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
43
44static struct GNUNET_CRYPTO_EcdsaPrivateKey *privkey;
45
46static struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
47
48static int res;
49
50static struct GNUNET_NAMESTORE_QueueEntry *nsqe;
51
52static struct GNUNET_NAMECACHE_QueueEntry *ncqe;
53
54
55static void
56cleanup ()
57{
58 if (NULL != nsh)
59 {
60 GNUNET_NAMESTORE_disconnect (nsh);
61 nsh = NULL;
62 }
63 if (NULL != nch)
64 {
65 GNUNET_NAMECACHE_disconnect (nch);
66 nch = NULL;
67 }
68 if (NULL != privkey)
69 {
70 GNUNET_free (privkey);
71 privkey = NULL;
72 }
73 GNUNET_SCHEDULER_shutdown ();
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 (NULL != nsqe)
87 {
88 GNUNET_NAMESTORE_cancel (nsqe);
89 nsqe = NULL;
90 }
91 if (NULL != ncqe)
92 {
93 GNUNET_NAMECACHE_cancel (ncqe);
94 ncqe = NULL;
95 }
96 cleanup ();
97 res = 1;
98}
99
100
101static void
102end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
103{
104 cleanup ();
105 res = 0;
106}
107
108
109static void
110rd_decrypt_cb (void *cls,
111 unsigned int rd_count,
112 const struct GNUNET_GNSRECORD_Data *rd)
113{
114 char rd_cmp_data[TEST_RECORD_DATALEN];
115
116 GNUNET_assert (1 == rd_count);
117 GNUNET_assert (NULL != rd);
118
119 memset (rd_cmp_data, 'a', TEST_RECORD_DATALEN);
120
121 GNUNET_assert (TEST_RECORD_TYPE == rd[0].record_type);
122 GNUNET_assert (TEST_RECORD_DATALEN == rd[0].data_size);
123 GNUNET_assert (0 == memcmp (&rd_cmp_data, rd[0].data, TEST_RECORD_DATALEN));
124 GNUNET_assert (GNUNET_GNSRECORD_RF_SHADOW_RECORD == rd[0].flags);
125
126 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
127 "Block was decrypted successfully \n");
128
129 GNUNET_SCHEDULER_add_now (&end, NULL);
130}
131
132
133static void
134name_lookup_proc (void *cls,
135 const struct GNUNET_GNSRECORD_Block *block)
136{
137 const char *name = cls;
138
139 ncqe = NULL;
140 GNUNET_assert (NULL != cls);
141
142 if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
143 {
144 GNUNET_SCHEDULER_cancel (endbadly_task);
145 endbadly_task = GNUNET_SCHEDULER_NO_TASK;
146 }
147
148 if (NULL == block)
149 {
150 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
151 _("Namestore returned no block\n"));
152 if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
153 GNUNET_SCHEDULER_cancel (endbadly_task);
154 endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
155 return;
156 }
157
158 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
159 "Namestore returned block, decrypting \n");
160 GNUNET_assert (GNUNET_OK == GNUNET_GNSRECORD_block_decrypt(block,
161 &pubkey, name, &rd_decrypt_cb, (void *) name));
162}
163
164
165static void
166put_cont (void *cls, int32_t success, const char *emsg)
167{
168 const char *name = cls;
169 struct GNUNET_HashCode derived_hash;
170 struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
171
172 nsqe = NULL;
173 GNUNET_assert (NULL != cls);
174 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
175 "Name store added record for `%s': %s\n",
176 name,
177 (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
178
179 /* Create derived hash */
180 GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
181 GNUNET_GNSRECORD_query_from_public_key (&pubkey, name, &derived_hash);
182
183 ncqe = GNUNET_NAMECACHE_lookup_block (nch, &derived_hash,
184 &name_lookup_proc, (void *) name);
185}
186
187
188static void
189run (void *cls,
190 const struct GNUNET_CONFIGURATION_Handle *cfg,
191 struct GNUNET_TESTING_Peer *peer)
192{
193 struct GNUNET_GNSRECORD_Data rd;
194 char *hostkey_file;
195 const char * name = "dummy.dummy.gnunet";
196
197 endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
198 &endbadly, NULL);
199 GNUNET_asprintf (&hostkey_file,
200 "zonefiles%s%s",
201 DIR_SEPARATOR_STR,
202 "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
203 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
204 privkey = GNUNET_CRYPTO_ecdsa_key_create_from_file (hostkey_file);
205 GNUNET_free (hostkey_file);
206 GNUNET_assert (privkey != NULL);
207 GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
208
209
210 rd.expiration_time = GNUNET_TIME_absolute_get().abs_value_us + 1000000000;
211 rd.record_type = TEST_RECORD_TYPE;
212 rd.data_size = TEST_RECORD_DATALEN;
213 rd.data = GNUNET_malloc (TEST_RECORD_DATALEN);
214 rd.flags = GNUNET_GNSRECORD_RF_SHADOW_RECORD;
215 memset ((char *) rd.data, 'a', TEST_RECORD_DATALEN);
216
217 nsh = GNUNET_NAMESTORE_connect (cfg);
218 nch = GNUNET_NAMECACHE_connect (cfg);
219 GNUNET_break (NULL != nsh);
220 GNUNET_break (NULL != nch);
221 nsqe = GNUNET_NAMESTORE_records_store (nsh, privkey, name,
222 1, &rd, &put_cont, (void *) name);
223 if (NULL == nsqe)
224 {
225 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
226 _("Namestore cannot store no block\n"));
227 }
228
229 GNUNET_free ((void *)rd.data);
230}
231
232
233int
234main (int argc, char *argv[])
235{
236 res = 1;
237 if (0 !=
238 GNUNET_TESTING_peer_run ("test-namestore-api",
239 "test_namestore_api.conf",
240 &run,
241 NULL))
242 return 1;
243 return res;
244}
245
246
247/* end of test_namestore_api_lookup_public.c */