fix for size
[oweals/gnunet.git] / src / namestore / test_namestore_api_remove_not_existing_record.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_remove_not_existing_record.c
22  * @brief testcase for namestore_api.c
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 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  * @param tc scheduler context
72  */
73 static void
74 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
75 {
76   if (NULL != nsqe)
77   {
78     GNUNET_NAMESTORE_cancel (nsqe);
79     nsqe = NULL;
80   }
81   cleanup ();
82   res = 1;
83 }
84
85
86 static void
87 end (void *cls,
88      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   nsqe = NULL;
100   if (GNUNET_SYSERR == success)
101   {
102     GNUNET_break (0);
103     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
104                 "Namestore could not remove record: `%s'\n",
105                 emsg);
106     GNUNET_SCHEDULER_shutdown ();
107     return;
108   }
109   else if (GNUNET_OK == success)
110   {
111     res = 0;
112     if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
113     {
114       GNUNET_SCHEDULER_cancel (endbadly_task);
115       endbadly_task = GNUNET_SCHEDULER_NO_TASK;
116     }
117     GNUNET_SCHEDULER_add_now (&end, NULL);
118   }
119 }
120
121
122 static void
123 run (void *cls,
124      const struct GNUNET_CONFIGURATION_Handle *cfg,
125      struct GNUNET_TESTING_Peer *peer)
126 {
127   char *hostkey_file;
128   const char * name = "dummy.dummy.gnunet";
129
130   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
131                                                 &endbadly, NULL);
132   GNUNET_asprintf (&hostkey_file,
133                    "zonefiles%s%s",
134                    DIR_SEPARATOR_STR,
135                    "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
136   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
137               "Using zonekey file `%s' \n",
138               hostkey_file);
139   privkey = GNUNET_CRYPTO_ecdsa_key_create_from_file (hostkey_file);
140   GNUNET_free (hostkey_file);
141   GNUNET_assert (privkey != NULL);
142   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
143
144   nsh = GNUNET_NAMESTORE_connect (cfg);
145   GNUNET_break (NULL != nsh);
146   nsqe = GNUNET_NAMESTORE_records_store (nsh, privkey, name,
147                                          0, NULL,
148                                          &put_cont, (void *) name);
149   if (NULL == nsqe)
150   {
151     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
152               _("Namestore cannot store no block\n"));
153   }
154 }
155
156
157 int
158 main (int argc, char *argv[])
159 {
160   res = 1;
161   if (0 !=
162       GNUNET_TESTING_peer_run ("test-namestore-api",
163                                "test_namestore_api.conf",
164                                &run,
165                                NULL))
166     return 1;
167   return res;
168 }
169
170 /* end of test_namestore_api_remove_not_existing_record.c */