aboutsummaryrefslogtreecommitdiff
path: root/src/service/namestore/test_namestore_api_store.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/service/namestore/test_namestore_api_store.c')
-rw-r--r--src/service/namestore/test_namestore_api_store.c172
1 files changed, 172 insertions, 0 deletions
diff --git a/src/service/namestore/test_namestore_api_store.c b/src/service/namestore/test_namestore_api_store.c
new file mode 100644
index 000000000..e7b87c28b
--- /dev/null
+++ b/src/service/namestore/test_namestore_api_store.c
@@ -0,0 +1,172 @@
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2012 GNUnet e.V.
4
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your 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 Affero General Public License for more details.
14
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 SPDX-License-Identifier: AGPL3.0-or-later
19 */
20/**
21 * @file namestore/test_namestore_api_store.c
22 * @brief testcase for namestore_api.c: store a record
23 */
24#include "platform.h"
25#include "gnunet_namestore_service.h"
26#include "gnunet_testing_lib.h"
27
28#define TEST_RECORD_TYPE GNUNET_DNSPARSER_TYPE_TXT
29
30#define TEST_RECORD_DATALEN 123
31
32#define TEST_RECORD_DATA 'a'
33
34#define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
35
36
37static struct GNUNET_NAMESTORE_Handle *nsh;
38
39static struct GNUNET_SCHEDULER_Task *endbadly_task;
40
41static struct GNUNET_CRYPTO_PrivateKey privkey;
42
43static struct GNUNET_CRYPTO_PublicKey pubkey;
44
45static int res;
46
47static struct GNUNET_NAMESTORE_QueueEntry *nsqe;
48
49
50static void
51cleanup ()
52{
53 if (NULL != nsh)
54 {
55 GNUNET_NAMESTORE_disconnect (nsh);
56 nsh = NULL;
57 }
58 GNUNET_SCHEDULER_shutdown ();
59}
60
61
62/**
63 * Re-establish the connection to the service.
64 *
65 * @param cls handle to use to re-connect.
66 */
67static void
68endbadly (void *cls)
69{
70 if (NULL != nsqe)
71 {
72 GNUNET_NAMESTORE_cancel (nsqe);
73 nsqe = NULL;
74 }
75 cleanup ();
76 res = 1;
77}
78
79
80static void
81end (void *cls)
82{
83 cleanup ();
84 res = 0;
85}
86
87
88static void
89put_cont (void *cls, enum GNUNET_ErrorCode ec)
90{
91 const char *name = cls;
92
93 nsqe = NULL;
94 GNUNET_assert (NULL != cls);
95 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
96 "Name store added record for `%s': %s\n",
97 name,
98 (GNUNET_EC_NONE == ec) ? "SUCCESS" : "FAIL");
99 GNUNET_SCHEDULER_cancel (endbadly_task);
100 endbadly_task = NULL;
101 GNUNET_SCHEDULER_add_now (&end, NULL);
102}
103
104
105static void
106run (void *cls,
107 const struct GNUNET_CONFIGURATION_Handle *cfg,
108 struct GNUNET_TESTING_Peer *peer)
109{
110 struct GNUNET_GNSRECORD_Data rd;
111 const char *name = "dummy.dummy.gnunet";
112
113 endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
114 &endbadly, NULL);
115 privkey.type = htonl (GNUNET_GNSRECORD_TYPE_PKEY);
116 GNUNET_CRYPTO_ecdsa_key_create (&privkey.ecdsa_key);
117 GNUNET_CRYPTO_key_get_public (&privkey, &pubkey);
118
119
120 rd.expiration_time = GNUNET_TIME_absolute_get ().abs_value_us;
121 rd.record_type = TEST_RECORD_TYPE;
122 rd.data_size = TEST_RECORD_DATALEN;
123 rd.data = GNUNET_malloc (TEST_RECORD_DATALEN);
124 rd.flags = 0;
125 memset ((char *) rd.data, 'a', TEST_RECORD_DATALEN);
126
127 nsh = GNUNET_NAMESTORE_connect (cfg);
128 GNUNET_break (NULL != nsh);
129 nsqe = GNUNET_NAMESTORE_records_store (nsh,
130 &privkey,
131 name,
132 1,
133 &rd,
134 &put_cont,
135 (void *) name);
136 if (NULL == nsqe)
137 {
138 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
139 _ ("Namestore cannot store no block\n"));
140 }
141 GNUNET_free_nz ((void *) rd.data);
142}
143
144
145#include "test_common.c"
146
147
148int
149main (int argc, char *argv[])
150{
151 char *plugin_name;
152 char *cfg_name;
153
154 SETUP_CFG (plugin_name, cfg_name);
155 res = 1;
156 if (0 !=
157 GNUNET_TESTING_peer_run ("test-namestore-api",
158 cfg_name,
159 &run,
160 NULL))
161 {
162 res = 1;
163 }
164 GNUNET_DISK_purge_cfg_dir (cfg_name,
165 "GNUNET_TEST_HOME");
166 GNUNET_free (plugin_name);
167 GNUNET_free (cfg_name);
168 return res;
169}
170
171
172/* end of test_namestore_api_store.c */