fix tests and do not assert since this will break make check
[oweals/gnunet.git] / src / namestore / test_namestore_api_remove.c
1 /*
2      This file is part of GNUnet.
3      (C) 2013 Christian Grothoff (and other contributing authors)
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., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20 /**
21  * @file namestore/test_namestore_api.c
22  * @brief testcase for namestore_api.c to: remove 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 GNUNET_SCHEDULER_TaskIdentifier 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 int removed;
48
49 static struct GNUNET_NAMESTORE_QueueEntry *nsqe;
50
51
52 static void
53 cleanup ()
54 {
55   if (NULL != nsh)
56   {
57     GNUNET_NAMESTORE_disconnect (nsh);
58     nsh = NULL;
59   }
60   if (NULL != privkey)
61   {
62     GNUNET_free (privkey);
63     privkey = NULL;
64   }
65   GNUNET_SCHEDULER_shutdown ();
66 }
67
68
69 /**
70  * Re-establish the connection to the service.
71  *
72  * @param cls handle to use to re-connect.
73  * @param tc scheduler context
74  */
75 static void
76 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
77 {
78   if (NULL != nsqe)
79   {
80     GNUNET_NAMESTORE_cancel (nsqe);
81     nsqe = NULL;
82   }
83   cleanup ();
84   res = 1;
85 }
86
87
88 static void
89 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
90 {
91   cleanup ();
92   res = 0;
93 }
94
95
96 static void
97 remove_cont (void *cls,
98              int32_t success,
99              const char *emsg)
100 {
101   if (GNUNET_YES != success)
102   {
103     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
104               _("Records could not be removed: `%s'\n"), emsg);
105     if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
106       GNUNET_SCHEDULER_cancel (endbadly_task);
107     endbadly_task =  GNUNET_SCHEDULER_add_now (&endbadly, NULL);
108     return;
109   }
110   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
111               "Records were removed, perform lookup\n");
112   removed = GNUNET_YES;
113   if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
114     GNUNET_SCHEDULER_cancel (endbadly_task);
115   GNUNET_SCHEDULER_add_now (&end, NULL);
116 }
117
118
119 static void
120 put_cont (void *cls, int32_t success,
121           const char *emsg)
122 {
123   const char *name = cls;
124
125   GNUNET_assert (NULL != cls);
126   if (GNUNET_SYSERR == success)
127   {
128     GNUNET_break (0);
129     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
130                 "Namestore could not store record: `%s'\n",
131                 emsg);
132     if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
133       GNUNET_SCHEDULER_cancel (endbadly_task);
134     endbadly_task =  GNUNET_SCHEDULER_add_now (&endbadly, NULL);
135     return;
136   }
137
138   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
139               "Name store added record for `%s': %s\n",
140               name,
141               (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
142   nsqe = GNUNET_NAMESTORE_records_store (nsh, privkey, name,
143                                          0, NULL, &remove_cont, (void *) name);
144 }
145
146
147 static void
148 run (void *cls,
149      const struct GNUNET_CONFIGURATION_Handle *cfg,
150      struct GNUNET_TESTING_Peer *peer)
151 {
152   struct GNUNET_GNSRECORD_Data rd;
153   char *hostkey_file;
154   const char * name = "dummy.dummy.gnunet";
155
156   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
157                                                 &endbadly, NULL);
158   GNUNET_asprintf (&hostkey_file,
159                    "zonefiles%s%s",
160                    DIR_SEPARATOR_STR,
161                    "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
162   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
163   privkey = GNUNET_CRYPTO_ecdsa_key_create_from_file (hostkey_file);
164   GNUNET_free (hostkey_file);
165   GNUNET_assert (privkey != NULL);
166   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
167
168   removed = GNUNET_NO;
169
170   rd.expiration_time = GNUNET_TIME_absolute_get().abs_value_us;
171   rd.record_type = TEST_RECORD_TYPE;
172   rd.data_size = TEST_RECORD_DATALEN;
173   rd.data = GNUNET_malloc (TEST_RECORD_DATALEN);
174   memset ((char *) rd.data, 'a', TEST_RECORD_DATALEN);
175
176   nsh = GNUNET_NAMESTORE_connect (cfg);
177   GNUNET_break (NULL != nsh);
178   nsqe = GNUNET_NAMESTORE_records_store (nsh, privkey, name,
179                                       1, &rd, &put_cont, (void *) name);
180   if (NULL == nsqe)
181   {
182     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
183               _("Namestore cannot store no block\n"));
184   }
185   GNUNET_free ((void *)rd.data);
186 }
187
188
189 int
190 main (int argc, char *argv[])
191 {
192   res = 1;
193   if (0 !=
194       GNUNET_TESTING_peer_run ("test-namestore-api",
195                                "test_namestore_api.conf",
196                                &run,
197                                NULL))
198     return 1;
199   return res;
200 }
201
202 /* end of test_namestore_api_remove.c */