error handling
[oweals/gnunet.git] / src / namestore / test_namestore_api_remove_not_existing_record.c
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
37 static struct GNUNET_NAMESTORE_Handle *nsh;
38
39 static struct GNUNET_SCHEDULER_Task *endbadly_task;
40
41 static struct GNUNET_CRYPTO_EcdsaPrivateKey *privkey;
42
43 static struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
44
45 static int res;
46
47 static struct GNUNET_NAMESTORE_QueueEntry *nsqe;
48
49
50 static void
51 cleanup ()
52 {
53   if (NULL != nsh)
54   {
55     GNUNET_NAMESTORE_disconnect (nsh);
56     nsh = NULL;
57   }
58   if (NULL != privkey)
59   {
60     GNUNET_free (privkey);
61     privkey = NULL;
62   }
63   GNUNET_SCHEDULER_shutdown ();
64 }
65
66
67 /**
68  * Re-establish the connection to the service.
69  *
70  * @param cls handle to use to re-connect.
71  */
72 static void
73 endbadly (void *cls)
74 {
75   if (NULL != nsqe)
76   {
77     GNUNET_NAMESTORE_cancel (nsqe);
78     nsqe = NULL;
79   }
80   cleanup ();
81   res = 1;
82 }
83
84
85 static void
86 end (void *cls)
87 {
88   cleanup ();
89   res = 0;
90 }
91
92
93 static void
94 put_cont (void *cls,
95           int32_t success,
96           const char *emsg)
97 {
98   GNUNET_assert (NULL != cls);
99   nsqe = NULL;
100   if (endbadly_task != NULL)
101   {
102     GNUNET_SCHEDULER_cancel (endbadly_task);
103     endbadly_task = NULL;
104   }
105   switch (success)
106   {
107   case GNUNET_NO:
108     /* We expected GNUNET_NO, since record was not found */
109     GNUNET_SCHEDULER_add_now (&end, NULL);
110     break;
111
112   case GNUNET_OK:
113     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
114                 "Namestore could remove non-existing record: `%s'\n",
115                 (NULL != emsg) ? emsg : "");
116     GNUNET_SCHEDULER_add_now (&endbadly, NULL);
117     break;
118
119   case GNUNET_SYSERR:
120   default:
121     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
122                 "Namestore failed: `%s'\n",
123                 (NULL != emsg) ? emsg : "");
124     GNUNET_SCHEDULER_add_now (&endbadly, NULL);
125     break;
126   }
127 }
128
129
130 static void
131 run (void *cls,
132      const struct GNUNET_CONFIGURATION_Handle *cfg,
133      struct GNUNET_TESTING_Peer *peer)
134 {
135   const char *name = "dummy.dummy.gnunet";
136
137   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
138                                                 &endbadly,
139                                                 NULL);
140   privkey = GNUNET_CRYPTO_ecdsa_key_create ();
141   GNUNET_assert (privkey != NULL);
142   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
143
144   nsh = GNUNET_NAMESTORE_connect (cfg);
145   GNUNET_break (NULL != nsh);
146   nsqe = GNUNET_NAMESTORE_records_store (nsh, privkey, name,
147                                          0, NULL,
148                                          &put_cont, (void *) name);
149   if (NULL == nsqe)
150   {
151     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
152                 _ ("Namestore cannot store no block\n"));
153   }
154 }
155
156
157 #include "test_common.c"
158
159
160 int
161 main (int argc, char *argv[])
162 {
163   const char *plugin_name;
164   char *cfg_name;
165
166   SETUP_CFG (plugin_name, cfg_name);
167   res = 1;
168   if (0 !=
169       GNUNET_TESTING_peer_run ("test-namestore-api-remove-non-existing-record",
170                                cfg_name,
171                                &run,
172                                NULL))
173   {
174     res = 1;
175   }
176   GNUNET_DISK_purge_cfg_dir (cfg_name,
177                              "GNUNET_TEST_HOME");
178   GNUNET_free (cfg_name);
179   return res;
180 }
181
182
183 /* end of test_namestore_api_remove_not_existing_record.c */