aboutsummaryrefslogtreecommitdiff
path: root/src/namestore/test_namestore_api_store.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/namestore/test_namestore_api_store.c')
-rw-r--r--src/namestore/test_namestore_api_store.c172
1 files changed, 0 insertions, 172 deletions
diff --git a/src/namestore/test_namestore_api_store.c b/src/namestore/test_namestore_api_store.c
deleted file mode 100644
index e0b7daa5d..000000000
--- a/src/namestore/test_namestore_api_store.c
+++ /dev/null
@@ -1,172 +0,0 @@
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#include "gnunet_dnsparser_lib.h"
28
29#define TEST_RECORD_TYPE GNUNET_DNSPARSER_TYPE_TXT
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_SCHEDULER_Task *endbadly_task;
41
42static struct GNUNET_IDENTITY_PrivateKey privkey;
43
44static struct GNUNET_IDENTITY_PublicKey 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 GNUNET_SCHEDULER_shutdown ();
60}
61
62
63/**
64 * Re-establish the connection to the service.
65 *
66 * @param cls handle to use to re-connect.
67 */
68static void
69endbadly (void *cls)
70{
71 if (NULL != nsqe)
72 {
73 GNUNET_NAMESTORE_cancel (nsqe);
74 nsqe = NULL;
75 }
76 cleanup ();
77 res = 1;
78}
79
80
81static void
82end (void *cls)
83{
84 cleanup ();
85 res = 0;
86}
87
88
89static void
90put_cont (void *cls, int32_t success, const char *emsg)
91{
92 const char *name = cls;
93
94 nsqe = NULL;
95 GNUNET_assert (NULL != cls);
96 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
97 "Name store added record for `%s': %s\n",
98 name,
99 (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
100 GNUNET_SCHEDULER_cancel (endbadly_task);
101 endbadly_task = NULL;
102 GNUNET_SCHEDULER_add_now (&end, NULL);
103}
104
105
106static void
107run (void *cls,
108 const struct GNUNET_CONFIGURATION_Handle *cfg,
109 struct GNUNET_TESTING_Peer *peer)
110{
111 struct GNUNET_GNSRECORD_Data rd;
112 const char *name = "dummy.dummy.gnunet";
113
114 endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
115 &endbadly, NULL);
116 privkey.type = htonl (GNUNET_GNSRECORD_TYPE_PKEY);
117 GNUNET_CRYPTO_ecdsa_key_create (&privkey.ecdsa_key);
118 GNUNET_IDENTITY_key_get_public (&privkey, &pubkey);
119
120
121 rd.expiration_time = GNUNET_TIME_absolute_get ().abs_value_us;
122 rd.record_type = TEST_RECORD_TYPE;
123 rd.data_size = TEST_RECORD_DATALEN;
124 rd.data = GNUNET_malloc (TEST_RECORD_DATALEN);
125 rd.flags = 0;
126 memset ((char *) rd.data, 'a', TEST_RECORD_DATALEN);
127
128 nsh = GNUNET_NAMESTORE_connect (cfg);
129 GNUNET_break (NULL != nsh);
130 nsqe = GNUNET_NAMESTORE_records_store (nsh,
131 &privkey,
132 name,
133 1,
134 &rd,
135 &put_cont,
136 (void *) name);
137 if (NULL == nsqe)
138 {
139 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
140 _ ("Namestore cannot store no block\n"));
141 }
142 GNUNET_free_nz ((void *) rd.data);
143}
144
145
146#include "test_common.c"
147
148
149int
150main (int argc, char *argv[])
151{
152 const char *plugin_name;
153 char *cfg_name;
154
155 SETUP_CFG (plugin_name, cfg_name);
156 res = 1;
157 if (0 !=
158 GNUNET_TESTING_peer_run ("test-namestore-api",
159 cfg_name,
160 &run,
161 NULL))
162 {
163 res = 1;
164 }
165 GNUNET_DISK_purge_cfg_dir (cfg_name,
166 "GNUNET_TEST_HOME");
167 GNUNET_free (cfg_name);
168 return res;
169}
170
171
172/* end of test_namestore_api_store.c */