aboutsummaryrefslogtreecommitdiff
path: root/src/namestore
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-09-30 09:41:07 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-09-30 09:41:07 +0000
commitc455a4e73aa4a4dd76c018bcd6b9691fc8baabda (patch)
tree8de5c8ffff453920b8bd478a5a029ccbe5924914 /src/namestore
parent3056a8d79ddf74b3b3097455323fd5bb531bd87f (diff)
downloadgnunet-c455a4e73aa4a4dd76c018bcd6b9691fc8baabda.tar.gz
gnunet-c455a4e73aa4a4dd76c018bcd6b9691fc8baabda.zip
caching test
Diffstat (limited to 'src/namestore')
-rw-r--r--src/namestore/Makefile.am8
-rw-r--r--src/namestore/test_namestore_api_cache_block.c239
2 files changed, 247 insertions, 0 deletions
diff --git a/src/namestore/Makefile.am b/src/namestore/Makefile.am
index 0b225069d..07c1ce2f0 100644
--- a/src/namestore/Makefile.am
+++ b/src/namestore/Makefile.am
@@ -41,6 +41,7 @@ if HAVE_TESTING
41TESTING_TESTS = \ 41TESTING_TESTS = \
42 test_namestore_api_store \ 42 test_namestore_api_store \
43 test_namestore_api_store_update \ 43 test_namestore_api_store_update \
44 test_namestore_api_cache_block \
44 test_namestore_api_lookup_public \ 45 test_namestore_api_lookup_public \
45 test_namestore_api_remove \ 46 test_namestore_api_remove \
46 test_namestore_api_remove_not_existing_record \ 47 test_namestore_api_remove_not_existing_record \
@@ -191,6 +192,13 @@ test_namestore_api_store_update_LDADD = \
191 $(top_builddir)/src/util/libgnunetutil.la \ 192 $(top_builddir)/src/util/libgnunetutil.la \
192 $(top_builddir)/src/namestore/libgnunetnamestore.la 193 $(top_builddir)/src/namestore/libgnunetnamestore.la
193 194
195test_namestore_api_cache_block_SOURCES = \
196 test_namestore_api_cache_block.c
197test_namestore_api_cache_block_LDADD = \
198 $(top_builddir)/src/testing/libgnunettesting.la \
199 $(top_builddir)/src/util/libgnunetutil.la \
200 $(top_builddir)/src/namestore/libgnunetnamestore.la
201
194test_namestore_api_lookup_public_SOURCES = \ 202test_namestore_api_lookup_public_SOURCES = \
195 test_namestore_api_lookup_public.c 203 test_namestore_api_lookup_public.c
196test_namestore_api_lookup_public_LDADD = \ 204test_namestore_api_lookup_public_LDADD = \
diff --git a/src/namestore/test_namestore_api_cache_block.c b/src/namestore/test_namestore_api_cache_block.c
new file mode 100644
index 000000000..143dd56dc
--- /dev/null
+++ b/src/namestore/test_namestore_api_cache_block.c
@@ -0,0 +1,239 @@
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_common.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 GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
41
42static struct GNUNET_CRYPTO_EccPrivateKey *privkey;
43
44static struct GNUNET_CRYPTO_EccPublicSignKey pubkey;
45
46static int res;
47
48static struct GNUNET_NAMESTORE_QueueEntry *nsqe;
49
50
51static void
52cleanup ()
53{
54 if (NULL != nsh)
55 {
56 GNUNET_NAMESTORE_disconnect (nsh);
57 nsh = NULL;
58 }
59 if (NULL != privkey)
60 {
61 GNUNET_free (privkey);
62 privkey = NULL;
63 }
64 GNUNET_SCHEDULER_shutdown ();
65}
66
67
68/**
69 * Re-establish the connection to the service.
70 *
71 * @param cls handle to use to re-connect.
72 * @param tc scheduler context
73 */
74static void
75endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
76{
77 if (NULL != nsqe)
78 {
79 GNUNET_NAMESTORE_cancel (nsqe);
80 nsqe = NULL;
81 }
82 cleanup ();
83 res = 1;
84}
85
86
87static void
88end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
89{
90 cleanup ();
91 res = 0;
92}
93
94
95static void
96rd_decrypt_cb (void *cls,
97 unsigned int rd_count,
98 const struct GNUNET_NAMESTORE_RecordData *rd)
99{
100 char rd_cmp_data[TEST_RECORD_DATALEN];
101
102 GNUNET_assert (1 == rd_count);
103 GNUNET_assert (NULL != rd);
104
105 memset (rd_cmp_data, 'a', TEST_RECORD_DATALEN);
106
107 GNUNET_assert (TEST_RECORD_TYPE == rd[0].record_type);
108 GNUNET_assert (TEST_RECORD_DATALEN == rd[0].data_size);
109 GNUNET_assert (0 == memcmp (&rd_cmp_data, rd[0].data, TEST_RECORD_DATALEN));
110
111 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
112 "Block was decrypted successfully \n");
113
114 GNUNET_SCHEDULER_add_now (&end, NULL);
115}
116
117static void
118name_lookup_proc (void *cls,
119 const struct GNUNET_NAMESTORE_Block *block)
120{
121 const char *name = cls;
122 nsqe = NULL;
123
124 GNUNET_assert (NULL != cls);
125
126 if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
127 {
128 GNUNET_SCHEDULER_cancel (endbadly_task);
129 endbadly_task = GNUNET_SCHEDULER_NO_TASK;
130 }
131
132 if (NULL == block)
133 {
134 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
135 _("Namestore returned no block\n"));
136 if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
137 GNUNET_SCHEDULER_cancel (endbadly_task);
138 endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
139 return;
140 }
141
142 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
143 "Namestore returned block, decrypting \n");
144 GNUNET_assert (GNUNET_OK == GNUNET_NAMESTORE_block_decrypt(block,
145 &pubkey, name, &rd_decrypt_cb, (void *) name));
146}
147
148static void
149cache_cont (void *cls, int32_t success, const char *emsg)
150{
151 const char *name = cls;
152 struct GNUNET_HashCode derived_hash;
153
154 GNUNET_assert (NULL != cls);
155
156 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
157 "Name store cached record for `%s': %s\n",
158 name,
159 (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
160
161 /* Create derived hash */
162 GNUNET_NAMESTORE_query_from_public_key (&pubkey, name, &derived_hash);
163
164 nsqe = GNUNET_NAMESTORE_lookup_block (nsh, &derived_hash,
165 &name_lookup_proc, (void *) name);
166}
167
168
169static void
170run (void *cls,
171 const struct GNUNET_CONFIGURATION_Handle *cfg,
172 struct GNUNET_TESTING_Peer *peer)
173{
174 struct GNUNET_NAMESTORE_RecordData rd;
175 struct GNUNET_NAMESTORE_Block *block;
176 char *hostkey_file;
177 const char * name = "dummy.dummy.gnunet";
178
179 endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
180 &endbadly, NULL);
181 GNUNET_asprintf (&hostkey_file,
182 "zonefiles%s%s",
183 DIR_SEPARATOR_STR,
184 "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
185 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
186 privkey = GNUNET_CRYPTO_ecc_key_create_from_file (hostkey_file);
187 GNUNET_free (hostkey_file);
188 GNUNET_assert (privkey != NULL);
189 GNUNET_CRYPTO_ecc_key_get_public_for_signature (privkey, &pubkey);
190
191
192 rd.expiration_time = GNUNET_TIME_absolute_get().abs_value_us;
193 rd.record_type = TEST_RECORD_TYPE;
194 rd.data_size = TEST_RECORD_DATALEN;
195 rd.data = GNUNET_malloc (TEST_RECORD_DATALEN);
196 memset ((char *) rd.data, 'a', TEST_RECORD_DATALEN);
197 block = GNUNET_NAMESTORE_block_create (privkey,
198 GNUNET_TIME_UNIT_FOREVER_ABS, name, &rd, 1 );
199 if (NULL == block)
200 {
201 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
202 _("Namestore cannot cache no block\n"));
203 }
204
205 nsh = GNUNET_NAMESTORE_connect (cfg);
206 if (NULL == nsh)
207 {
208 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
209 _("Namestore cannot connect to namestore\n"));
210 }
211 GNUNET_break (NULL != nsh);
212
213 nsqe = GNUNET_NAMESTORE_block_cache (nsh, block , &cache_cont, (void *) name);
214 if (NULL == nsqe)
215 {
216 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
217 _("Namestore cannot cache no block\n"));
218 }
219
220 GNUNET_free ((void *)rd.data);
221}
222
223
224int
225main (int argc, char *argv[])
226{
227 res = 1;
228 if (0 !=
229 GNUNET_TESTING_service_run ("test-namestore-api",
230 "namestore",
231 "test_namestore_api.conf",
232 &run,
233 NULL))
234 return 1;
235 return res;
236}
237
238
239/* end of test_namestore_api.c */