glitch in the license text detected by hyazinthe, thank you!
[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 GNUnet e.V.
4
5      GNUnet is free software: you can redistribute it and/or modify it
6      under the terms of the GNU Affero General Public License as published
7      by the Free Software Foundation, either version 3 of the License,
8      or (at your 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      Affero General Public License for more details.
14 */
15 /**
16  * @file namestore/test_namestore_api_remove_not_existing_record.c
17  * @brief testcase for namestore_api.c
18  */
19 #include "platform.h"
20 #include "gnunet_namestore_service.h"
21 #include "gnunet_testing_lib.h"
22
23 #define TEST_RECORD_TYPE 1234
24
25 #define TEST_RECORD_DATALEN 123
26
27 #define TEST_RECORD_DATA 'a'
28
29 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
30
31
32 static struct GNUNET_NAMESTORE_Handle *nsh;
33
34 static struct GNUNET_SCHEDULER_Task * endbadly_task;
35
36 static struct GNUNET_CRYPTO_EcdsaPrivateKey *privkey;
37
38 static struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
39
40 static int res;
41
42 static struct GNUNET_NAMESTORE_QueueEntry *nsqe;
43
44
45 static void
46 cleanup ()
47 {
48   if (NULL != nsh)
49   {
50     GNUNET_NAMESTORE_disconnect (nsh);
51     nsh = NULL;
52   }
53   if (NULL != privkey)
54   {
55     GNUNET_free (privkey);
56     privkey = NULL;
57   }
58   GNUNET_SCHEDULER_shutdown ();
59 }
60
61
62 /**
63  * Re-establish the connection to the service.
64  *
65  * @param cls handle to use to re-connect.
66  */
67 static void
68 endbadly (void *cls)
69 {
70   if (NULL != nsqe)
71   {
72     GNUNET_NAMESTORE_cancel (nsqe);
73     nsqe = NULL;
74   }
75   cleanup ();
76   res = 1;
77 }
78
79
80 static void
81 end (void *cls)
82 {
83   cleanup ();
84   res = 0;
85 }
86
87
88 static void
89 put_cont (void *cls,
90           int32_t success,
91           const char *emsg)
92 {
93   GNUNET_assert (NULL != cls);
94   nsqe = NULL;
95   if (endbadly_task != NULL)
96   {
97     GNUNET_SCHEDULER_cancel (endbadly_task);
98     endbadly_task = NULL;
99   }
100   switch (success)
101   {
102     case GNUNET_NO:
103       /* We expected GNUNET_NO, since record was not found */
104       GNUNET_SCHEDULER_add_now (&end, NULL);
105       break;
106     case GNUNET_OK:
107       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
108                   "Namestore could remove non-existing record: `%s'\n",
109                   (NULL !=emsg) ? emsg : "");
110       GNUNET_SCHEDULER_add_now (&endbadly, NULL);
111       break;
112     case GNUNET_SYSERR:
113     default:
114       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
115                   "Namestore failed: `%s'\n",
116                   (NULL !=emsg) ? emsg : "");
117       GNUNET_SCHEDULER_add_now (&endbadly, NULL);
118       break;
119   }
120 }
121
122
123 static void
124 run (void *cls,
125      const struct GNUNET_CONFIGURATION_Handle *cfg,
126      struct GNUNET_TESTING_Peer *peer)
127 {
128   const char * name = "dummy.dummy.gnunet";
129
130   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
131                                                 &endbadly,
132                                                 NULL);
133   privkey = GNUNET_CRYPTO_ecdsa_key_create ();
134   GNUNET_assert (privkey != NULL);
135   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
136
137   nsh = GNUNET_NAMESTORE_connect (cfg);
138   GNUNET_break (NULL != nsh);
139   nsqe = GNUNET_NAMESTORE_records_store (nsh, privkey, name,
140                                          0, NULL,
141                                          &put_cont, (void *) name);
142   if (NULL == nsqe)
143   {
144     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
145               _("Namestore cannot store no block\n"));
146   }
147 }
148
149
150 int
151 main (int argc, char *argv[])
152 {
153   const char *plugin_name;
154   char *cfg_name;
155
156   plugin_name = GNUNET_TESTING_get_testname_from_underscore (argv[0]);
157   GNUNET_asprintf (&cfg_name,
158                    "test_namestore_api_%s.conf",
159                    plugin_name);
160   GNUNET_DISK_purge_cfg_dir (cfg_name,
161                              "GNUNET_TEST_HOME");
162   res = 1;
163   if (0 !=
164       GNUNET_TESTING_peer_run ("test-namestore-api-remove-non-existing-record",
165                                cfg_name,
166                                &run,
167                                NULL))
168   {
169     res = 1;
170   }
171   GNUNET_DISK_purge_cfg_dir (cfg_name,
172                              "GNUNET_TEST_HOME");
173   GNUNET_free (cfg_name);
174   return res;
175 }
176
177 /* end of test_namestore_api_remove_not_existing_record.c */