-bringing copyright tags up to FSF standard
[oweals/gnunet.git] / src / namestore / test_namestore_api_remove_not_existing_record.c
1 /*
2      This file is part of GNUnet.
3      Copyright (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 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 static char *directory;
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,
89      const struct GNUNET_SCHEDULER_TaskContext *tc)
90 {
91   cleanup ();
92   res = 0;
93 }
94
95
96 static void
97 put_cont (void *cls, int32_t success, const char *emsg)
98 {
99   GNUNET_assert (NULL != cls);
100   nsqe = NULL;
101   if (endbadly_task != NULL)
102   {
103     GNUNET_SCHEDULER_cancel (endbadly_task);
104     endbadly_task = NULL;
105   }
106
107   switch (success) {
108     case GNUNET_NO:
109       /* We expected GNUNET_NO, since record was not found */
110       GNUNET_SCHEDULER_add_now (&end, NULL);
111       break;
112     case GNUNET_OK:
113       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
114                   "Namestore could remove non-existing record: `%s'\n",
115                   (NULL !=emsg) ? emsg : "");
116       GNUNET_SCHEDULER_add_now (&endbadly, NULL);
117       break;
118     case GNUNET_SYSERR:
119     default:
120       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
121                   "Namestore failed: `%s'\n",
122                   (NULL !=emsg) ? emsg : "");
123       GNUNET_SCHEDULER_add_now (&endbadly, NULL);
124       break;
125   }
126 }
127
128
129 static void
130 run (void *cls,
131      const struct GNUNET_CONFIGURATION_Handle *cfg,
132      struct GNUNET_TESTING_Peer *peer)
133 {
134   char *hostkey_file;
135   const char * name = "dummy.dummy.gnunet";
136
137   directory = NULL;
138   GNUNET_assert (GNUNET_OK ==
139                  GNUNET_CONFIGURATION_get_value_string(cfg, "PATHS", "GNUNET_TEST_HOME", &directory));
140   GNUNET_DISK_directory_remove (directory);
141
142   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
143                                                 &endbadly, NULL);
144   GNUNET_asprintf (&hostkey_file,
145                    "zonefiles%s%s",
146                    DIR_SEPARATOR_STR,
147                    "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
148   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
149               "Using zonekey file `%s' \n",
150               hostkey_file);
151   privkey = GNUNET_CRYPTO_ecdsa_key_create_from_file (hostkey_file);
152   GNUNET_free (hostkey_file);
153   GNUNET_assert (privkey != NULL);
154   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
155
156   nsh = GNUNET_NAMESTORE_connect (cfg);
157   GNUNET_break (NULL != nsh);
158   nsqe = GNUNET_NAMESTORE_records_store (nsh, privkey, name,
159                                          0, NULL,
160                                          &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_peer_run ("test-namestore-api",
175                                "test_namestore_api.conf",
176                                &run,
177                                NULL))
178   {
179     res = 1;
180   }
181   if (NULL != directory)
182   {
183       GNUNET_DISK_directory_remove (directory);
184       GNUNET_free (directory);
185   }
186   return res;
187 }
188
189 /* end of test_namestore_api_remove_not_existing_record.c */