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