reduce loop counters to more practical levels
[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
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      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      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
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
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, int32_t success, const char *emsg)
95 {
96   const char *name = cls;
97
98   nsqe = NULL;
99   GNUNET_assert (NULL != cls);
100   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
101               "Name store added record for `%s': %s\n",
102               name,
103               (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
104   GNUNET_SCHEDULER_cancel (endbadly_task);
105   endbadly_task = NULL;
106   GNUNET_SCHEDULER_add_now (&end, NULL);
107 }
108
109
110 static void
111 run (void *cls,
112      const struct GNUNET_CONFIGURATION_Handle *cfg,
113      struct GNUNET_TESTING_Peer *peer)
114 {
115   struct GNUNET_GNSRECORD_Data rd;
116   const char * name = "dummy.dummy.gnunet";
117
118   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
119                                                 &endbadly, NULL);
120   privkey = GNUNET_CRYPTO_ecdsa_key_create ();
121   GNUNET_assert (privkey != NULL);
122   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
123
124
125   rd.expiration_time = GNUNET_TIME_absolute_get().abs_value_us;
126   rd.record_type = TEST_RECORD_TYPE;
127   rd.data_size = TEST_RECORD_DATALEN;
128   rd.data = GNUNET_malloc (TEST_RECORD_DATALEN);
129   rd.flags = 0;
130   memset ((char *) rd.data, 'a', TEST_RECORD_DATALEN);
131
132   nsh = GNUNET_NAMESTORE_connect (cfg);
133   GNUNET_break (NULL != nsh);
134   nsqe = GNUNET_NAMESTORE_records_store (nsh,
135                                          privkey,
136                                          name,
137                                          1,
138                                          &rd,
139                                          &put_cont,
140                                          (void *) name);
141   if (NULL == nsqe)
142   {
143     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
144               _("Namestore cannot store no block\n"));
145   }
146
147   GNUNET_free ((void *)rd.data);
148 }
149
150
151 int
152 main (int argc, char *argv[])
153 {
154   const char *plugin_name;
155   char *cfg_name;
156
157   plugin_name = GNUNET_TESTING_get_testname_from_underscore (argv[0]);
158   GNUNET_asprintf (&cfg_name,
159                    "test_namestore_api_%s.conf",
160                    plugin_name);
161   res = 1;
162   GNUNET_DISK_purge_cfg_dir (cfg_name,
163                              "GNUNET_TEST_HOME");
164   if (0 !=
165       GNUNET_TESTING_peer_run ("test-namestore-api",
166                                cfg_name,
167                                &run,
168                                NULL))
169   {
170     res = 1;
171   }
172   GNUNET_DISK_purge_cfg_dir (cfg_name,
173                              "GNUNET_TEST_HOME");
174   GNUNET_free (cfg_name);
175   return res;
176 }
177
178
179 /* end of test_namestore_api_store.c */