error handling
[oweals/gnunet.git] / src / namestore / test_namestore_api_store.c
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
38 static struct GNUNET_NAMESTORE_Handle *nsh;
39
40 static struct GNUNET_SCHEDULER_Task *endbadly_task;
41
42 static struct GNUNET_CRYPTO_EcdsaPrivateKey *privkey;
43
44 static struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
45
46 static int res;
47
48 static struct GNUNET_NAMESTORE_QueueEntry *nsqe;
49
50
51 static void
52 cleanup ()
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  */
73 static void
74 endbadly (void *cls)
75 {
76   if (NULL != nsqe)
77   {
78     GNUNET_NAMESTORE_cancel (nsqe);
79     nsqe = NULL;
80   }
81   cleanup ();
82   res = 1;
83 }
84
85
86 static void
87 end (void *cls)
88 {
89   cleanup ();
90   res = 0;
91 }
92
93
94 static void
95 put_cont (void *cls, int32_t success, const char *emsg)
96 {
97   const char *name = cls;
98
99   nsqe = NULL;
100   GNUNET_assert (NULL != cls);
101   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
102               "Name store added record for `%s': %s\n",
103               name,
104               (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
105   GNUNET_SCHEDULER_cancel (endbadly_task);
106   endbadly_task = NULL;
107   GNUNET_SCHEDULER_add_now (&end, NULL);
108 }
109
110
111 static void
112 run (void *cls,
113      const struct GNUNET_CONFIGURATION_Handle *cfg,
114      struct GNUNET_TESTING_Peer *peer)
115 {
116   struct GNUNET_GNSRECORD_Data rd;
117   const char *name = "dummy.dummy.gnunet";
118
119   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
120                                                 &endbadly, NULL);
121   privkey = GNUNET_CRYPTO_ecdsa_key_create ();
122   GNUNET_assert (privkey != NULL);
123   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
124
125
126   rd.expiration_time = GNUNET_TIME_absolute_get ().abs_value_us;
127   rd.record_type = TEST_RECORD_TYPE;
128   rd.data_size = TEST_RECORD_DATALEN;
129   rd.data = GNUNET_malloc (TEST_RECORD_DATALEN);
130   rd.flags = 0;
131   memset ((char *) rd.data, 'a', TEST_RECORD_DATALEN);
132
133   nsh = GNUNET_NAMESTORE_connect (cfg);
134   GNUNET_break (NULL != nsh);
135   nsqe = GNUNET_NAMESTORE_records_store (nsh,
136                                          privkey,
137                                          name,
138                                          1,
139                                          &rd,
140                                          &put_cont,
141                                          (void *) name);
142   if (NULL == nsqe)
143   {
144     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
145                 _ ("Namestore cannot store no block\n"));
146   }
147   GNUNET_free ((void *) rd.data);
148 }
149
150
151 #include "test_common.c"
152
153
154 int
155 main (int argc, char *argv[])
156 {
157   const char *plugin_name;
158   char *cfg_name;
159
160   SETUP_CFG (plugin_name, cfg_name);
161   res = 1;
162   if (0 !=
163       GNUNET_TESTING_peer_run ("test-namestore-api",
164                                cfg_name,
165                                &run,
166                                NULL))
167   {
168     res = 1;
169   }
170   GNUNET_DISK_purge_cfg_dir (cfg_name,
171                              "GNUNET_TEST_HOME");
172   GNUNET_free (cfg_name);
173   return res;
174 }
175
176
177 /* end of test_namestore_api_store.c */