aboutsummaryrefslogtreecommitdiff
path: root/src/service/namestore/test_namestore_api_remove_not_existing_record.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/service/namestore/test_namestore_api_remove_not_existing_record.c')
-rw-r--r--src/service/namestore/test_namestore_api_remove_not_existing_record.c179
1 files changed, 179 insertions, 0 deletions
diff --git a/src/service/namestore/test_namestore_api_remove_not_existing_record.c b/src/service/namestore/test_namestore_api_remove_not_existing_record.c
new file mode 100644
index 000000000..e6ddd8892
--- /dev/null
+++ b/src/service/namestore/test_namestore_api_remove_not_existing_record.c
@@ -0,0 +1,179 @@
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2013 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_remove_not_existing_record.c
22 * @brief testcase for namestore_api.c
23 */
24#include "platform.h"
25#include "gnunet_namestore_service.h"
26#include "gnunet_testing_lib.h"
27
28#define TEST_RECORD_TYPE 1234
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 (void)
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,
90 enum GNUNET_ErrorCode ec)
91{
92 GNUNET_assert (NULL != cls);
93 nsqe = NULL;
94 if (endbadly_task != NULL)
95 {
96 GNUNET_SCHEDULER_cancel (endbadly_task);
97 endbadly_task = NULL;
98 }
99 switch (ec)
100 {
101 case GNUNET_EC_NAMESTORE_RECORD_NOT_FOUND:
102 /* We expect that the record is not found */
103 GNUNET_SCHEDULER_add_now (&end, NULL);
104 break;
105
106 case GNUNET_EC_NONE:
107 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
108 "Namestore could remove non-existing record: `%s'\n",
109 GNUNET_ErrorCode_get_hint (ec));
110 GNUNET_SCHEDULER_add_now (&endbadly, NULL);
111 break;
112
113 default:
114 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
115 "Namestore failed: `%s'\n",
116 GNUNET_ErrorCode_get_hint (ec));
117 GNUNET_SCHEDULER_add_now (&endbadly, NULL);
118 break;
119 }
120}
121
122
123static void
124run (void *cls,
125 const struct GNUNET_CONFIGURATION_Handle *cfg,
126 struct GNUNET_TESTING_Peer *peer)
127{
128 const char *name = "dummy";
129
130 endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
131 &endbadly,
132 NULL);
133 privkey.type = htonl (GNUNET_GNSRECORD_TYPE_PKEY);
134 GNUNET_CRYPTO_ecdsa_key_create (&privkey.ecdsa_key);
135 GNUNET_CRYPTO_key_get_public (&privkey, &pubkey);
136
137 nsh = GNUNET_NAMESTORE_connect (cfg);
138 GNUNET_break (NULL != nsh);
139 nsqe = GNUNET_NAMESTORE_record_set_store (nsh,
140 &privkey,
141 name,
142 0, NULL,
143 &put_cont, (void *) name);
144 if (NULL == nsqe)
145 {
146 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
147 _ ("Namestore cannot store no block\n"));
148 }
149}
150
151
152#include "test_common.c"
153
154
155int
156main (int argc, char *argv[])
157{
158 char *plugin_name;
159 char *cfg_name;
160
161 SETUP_CFG (plugin_name, cfg_name);
162 res = 1;
163 if (0 !=
164 GNUNET_TESTING_peer_run ("test-namestore-api-remove-non-existing-record",
165 cfg_name,
166 &run,
167 NULL))
168 {
169 res = 1;
170 }
171 GNUNET_DISK_purge_cfg_dir (cfg_name,
172 "GNUNET_TEST_HOME");
173 GNUNET_free (plugin_name);
174 GNUNET_free (cfg_name);
175 return res;
176}
177
178
179/* end of test_namestore_api_remove_not_existing_record.c */