61b5347817079b1dd40430fa72801b022258a240
[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 /**
19  * @file namestore/test_namestore_api_store.c
20  * @brief testcase for namestore_api.c: store a record
21  */
22 #include "platform.h"
23 #include "gnunet_namestore_service.h"
24 #include "gnunet_testing_lib.h"
25 #include "gnunet_dnsparser_lib.h"
26
27 #define TEST_RECORD_TYPE GNUNET_DNSPARSER_TYPE_TXT
28
29 #define TEST_RECORD_DATALEN 123
30
31 #define TEST_RECORD_DATA 'a'
32
33 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
34
35
36 static struct GNUNET_NAMESTORE_Handle *nsh;
37
38 static struct GNUNET_SCHEDULER_Task * endbadly_task;
39
40 static struct GNUNET_CRYPTO_EcdsaPrivateKey *privkey;
41
42 static struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
43
44 static int res;
45
46 static struct GNUNET_NAMESTORE_QueueEntry *nsqe;
47
48
49 static void
50 cleanup ()
51 {
52   if (NULL != nsh)
53   {
54     GNUNET_NAMESTORE_disconnect (nsh);
55     nsh = NULL;
56   }
57   if (NULL != privkey)
58   {
59     GNUNET_free (privkey);
60     privkey = NULL;
61   }
62   GNUNET_SCHEDULER_shutdown ();
63 }
64
65
66 /**
67  * Re-establish the connection to the service.
68  *
69  * @param cls handle to use to re-connect.
70  */
71 static void
72 endbadly (void *cls)
73 {
74   if (NULL != nsqe)
75   {
76     GNUNET_NAMESTORE_cancel (nsqe);
77     nsqe = NULL;
78   }
79   cleanup ();
80   res = 1;
81 }
82
83
84 static void
85 end (void *cls)
86 {
87   cleanup ();
88   res = 0;
89 }
90
91
92 static void
93 put_cont (void *cls, int32_t success, const char *emsg)
94 {
95   const char *name = cls;
96
97   nsqe = NULL;
98   GNUNET_assert (NULL != cls);
99   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
100               "Name store added record for `%s': %s\n",
101               name,
102               (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
103   GNUNET_SCHEDULER_cancel (endbadly_task);
104   endbadly_task = NULL;
105   GNUNET_SCHEDULER_add_now (&end, NULL);
106 }
107
108
109 static void
110 run (void *cls,
111      const struct GNUNET_CONFIGURATION_Handle *cfg,
112      struct GNUNET_TESTING_Peer *peer)
113 {
114   struct GNUNET_GNSRECORD_Data rd;
115   const char * name = "dummy.dummy.gnunet";
116
117   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
118                                                 &endbadly, NULL);
119   privkey = GNUNET_CRYPTO_ecdsa_key_create ();
120   GNUNET_assert (privkey != NULL);
121   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
122
123
124   rd.expiration_time = GNUNET_TIME_absolute_get().abs_value_us;
125   rd.record_type = TEST_RECORD_TYPE;
126   rd.data_size = TEST_RECORD_DATALEN;
127   rd.data = GNUNET_malloc (TEST_RECORD_DATALEN);
128   rd.flags = 0;
129   memset ((char *) rd.data, 'a', TEST_RECORD_DATALEN);
130
131   nsh = GNUNET_NAMESTORE_connect (cfg);
132   GNUNET_break (NULL != nsh);
133   nsqe = GNUNET_NAMESTORE_records_store (nsh,
134                                          privkey,
135                                          name,
136                                          1,
137                                          &rd,
138                                          &put_cont,
139                                          (void *) name);
140   if (NULL == nsqe)
141   {
142     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
143               _("Namestore cannot store no block\n"));
144   }
145
146   GNUNET_free ((void *)rd.data);
147 }
148
149
150 int
151 main (int argc, char *argv[])
152 {
153   const char *plugin_name;
154   char *cfg_name;
155
156   plugin_name = GNUNET_TESTING_get_testname_from_underscore (argv[0]);
157   GNUNET_asprintf (&cfg_name,
158                    "test_namestore_api_%s.conf",
159                    plugin_name);
160   res = 1;
161   GNUNET_DISK_purge_cfg_dir (cfg_name,
162                              "GNUNET_TEST_HOME");
163   if (0 !=
164       GNUNET_TESTING_peer_run ("test-namestore-api",
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 (cfg_name);
174   return res;
175 }
176
177
178 /* end of test_namestore_api_store.c */