fix type
[oweals/gnunet.git] / src / namestore / test_namestore_api_remove_not_existing_record.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009 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_remove_not_existing_record.c
22  * @brief testcase for namestore_api.c
23  */
24 #include "platform.h"
25 #include "gnunet_common.h"
26 #include "gnunet_namestore_service.h"
27 #include "gnunet_testing_lib.h"
28
29 #define TEST_RECORD_TYPE 1234
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 GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
41
42 static struct GNUNET_CRYPTO_EccPrivateKey *privkey;
43
44 static struct GNUNET_CRYPTO_EccPublicSignKey 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  * @param tc scheduler context
73  */
74 static void
75 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
76 {
77   if (NULL != nsqe)
78   {
79     GNUNET_NAMESTORE_cancel (nsqe);
80     nsqe = NULL;
81   }
82   cleanup ();
83   res = 1;
84 }
85
86
87 static void
88 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
89 {
90   cleanup ();
91   res = 0;
92 }
93
94
95 static void
96 put_cont (void *cls, int32_t success, const char *emsg)
97 {
98   GNUNET_assert (NULL != cls);
99
100   nsqe = NULL;
101
102   if (GNUNET_SYSERR == success)
103   {
104         GNUNET_break (0);
105     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
106               _("Namestore could not remove record: `%s'\n"), emsg);
107     if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
108       GNUNET_SCHEDULER_cancel (endbadly_task);
109     endbadly_task =  GNUNET_SCHEDULER_add_now (&endbadly, NULL);
110     return;
111   }
112   else if (GNUNET_OK == success)
113   {
114         GNUNET_break (0);
115     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
116               _("Namestore did remove not exisiting record: `%s'\n"), emsg);
117     if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
118       GNUNET_SCHEDULER_cancel (endbadly_task);
119     endbadly_task =  GNUNET_SCHEDULER_add_now (&endbadly, NULL);
120     return;
121   }
122   else
123   {
124         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
125               "Name was not removed\n");
126         res = 0;
127     if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
128     {
129       GNUNET_SCHEDULER_cancel (endbadly_task);
130       endbadly_task = GNUNET_SCHEDULER_NO_TASK;
131     }
132         GNUNET_SCHEDULER_add_now (&end, NULL);
133   }
134 }
135
136
137 static void
138 run (void *cls,
139      const struct GNUNET_CONFIGURATION_Handle *cfg,
140      struct GNUNET_TESTING_Peer *peer)
141 {
142   char *hostkey_file;
143   const char * name = "dummy.dummy.gnunet";
144
145   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
146                                                 &endbadly, NULL);
147   GNUNET_asprintf (&hostkey_file,
148                    "zonefiles%s%s",
149                    DIR_SEPARATOR_STR,
150                    "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
151   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
152   privkey = GNUNET_CRYPTO_ecc_key_create_from_file (hostkey_file);
153   GNUNET_free (hostkey_file);
154   GNUNET_assert (privkey != NULL);
155   GNUNET_CRYPTO_ecc_key_get_public_for_signature (privkey, &pubkey);
156
157   nsh = GNUNET_NAMESTORE_connect (cfg);
158   GNUNET_break (NULL != nsh);
159   nsqe = GNUNET_NAMESTORE_records_store (nsh, privkey, name,
160                                       0, NULL, &put_cont, (void *) name);
161   if (NULL == nsqe)
162   {
163     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
164               _("Namestore cannot store no block\n"));
165   }
166 }
167
168
169 int
170 main (int argc, char *argv[])
171 {
172   res = 1;
173   if (0 != 
174       GNUNET_TESTING_service_run ("test-namestore-api",
175                                   "namestore",
176                                   "test_namestore_api.conf",
177                                   &run,
178                                   NULL))
179     return 1;
180   return res;
181 }
182
183 /* end of test_namestore_api_remove_not_existing_record.c */