-consistently use struct GNUNET_HashCode
[oweals/gnunet.git] / src / namestore / test_namestore_api_put.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2012 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
23  */
24 #include "platform.h"
25 #include "gnunet_common.h"
26 #include "gnunet_namestore_service.h"
27 #include "gnunet_testing_lib-new.h"
28 #include "namestore.h"
29
30 #define RECORDS 5
31
32 #define TEST_RECORD_TYPE 1234
33
34 #define TEST_RECORD_DATALEN 123
35
36 #define TEST_RECORD_DATA 'a'
37
38 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
39
40
41 static struct GNUNET_NAMESTORE_Handle * nsh;
42
43 static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
44
45 static struct GNUNET_CRYPTO_RsaPrivateKey * privkey;
46
47 static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pubkey;
48
49 static struct GNUNET_NAMESTORE_RecordData *s_rd;
50
51 static int res;
52
53
54 /**
55  * Re-establish the connection to the service.
56  *
57  * @param cls handle to use to re-connect.
58  * @param tc scheduler context
59  */
60 static void
61 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
62 {
63   if (nsh != NULL)
64     GNUNET_NAMESTORE_disconnect (nsh, GNUNET_YES);
65   nsh = NULL;
66
67   if (privkey != NULL)
68   {
69     GNUNET_CRYPTO_rsa_key_free (privkey);
70     privkey = NULL;
71   }
72   GNUNET_SCHEDULER_shutdown ();
73   res = 1;
74 }
75
76
77 static void
78 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
79 {
80   if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
81   {
82     GNUNET_SCHEDULER_cancel (endbadly_task);
83     endbadly_task = GNUNET_SCHEDULER_NO_TASK;
84   }
85
86   if (privkey != NULL)
87   {
88     GNUNET_CRYPTO_rsa_key_free (privkey);
89     privkey = NULL;
90   }
91   if (nsh != NULL)
92   {
93     GNUNET_NAMESTORE_disconnect (nsh, GNUNET_YES);
94     nsh = NULL;
95   }
96 }
97
98
99 static void
100 put_cont (void *cls, int32_t success, const char *emsg)
101 {
102   const char * name = cls;
103
104   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
105               "Name store added record for `%s': %s\n", 
106               name, (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
107   if (success == GNUNET_OK)
108     res = 0;
109   else
110     res = 1;
111   GNUNET_SCHEDULER_add_now (&end, NULL);
112 }
113
114
115 static struct GNUNET_NAMESTORE_RecordData *
116 create_record (int count)
117 {
118   unsigned int c;
119   struct GNUNET_NAMESTORE_RecordData * rd;
120
121   rd = GNUNET_malloc (count * sizeof (struct GNUNET_NAMESTORE_RecordData));
122   for (c = 0; c < RECORDS; c++)
123   {
124     rd[c].expiration = GNUNET_TIME_absolute_get();
125     rd[c].record_type = TEST_RECORD_TYPE;
126     rd[c].data_size = TEST_RECORD_DATALEN;
127     rd[c].data = GNUNET_malloc(TEST_RECORD_DATALEN);
128     memset ((char *) rd[c].data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
129   }
130   return rd;
131 }
132
133
134 static void
135 delete_existing_db (const struct GNUNET_CONFIGURATION_Handle *cfg)
136 {
137   char *afsdir;
138
139   if (GNUNET_OK ==
140       GNUNET_CONFIGURATION_get_value_filename (cfg, "namestore-sqlite",
141                                                "FILENAME", &afsdir))
142   {
143     if (GNUNET_OK == GNUNET_DISK_file_test (afsdir))
144       if (GNUNET_OK == GNUNET_DISK_file_test (afsdir))
145         if (GNUNET_OK == GNUNET_DISK_directory_remove(afsdir))
146           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Deleted existing database `%s' \n", afsdir);
147    GNUNET_free (afsdir);
148   }
149 }
150
151
152 static void
153 run (void *cls, 
154      const struct GNUNET_CONFIGURATION_Handle *cfg)
155 {
156   struct GNUNET_CRYPTO_RsaSignature *signature;
157   const char * s_name = "dummy.dummy.gnunet";
158   int c;
159   char *hostkey_file;
160
161   delete_existing_db(cfg);
162   endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT,endbadly, NULL);
163   /* load privat key */
164   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR,
165       "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
166   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
167   privkey = GNUNET_CRYPTO_rsa_key_create_from_file(hostkey_file);
168   GNUNET_assert (privkey != NULL);
169   GNUNET_free (hostkey_file);
170   /* get public key */
171   GNUNET_CRYPTO_rsa_key_get_public(privkey, &pubkey);
172   nsh = GNUNET_NAMESTORE_connect (cfg);
173   GNUNET_break (NULL != nsh);
174   /* create record */
175   s_rd = create_record (RECORDS);
176   signature = GNUNET_NAMESTORE_create_signature(privkey, s_rd[0].expiration, s_name, s_rd, RECORDS);
177   GNUNET_break (s_rd != NULL);
178   GNUNET_break (s_name != NULL);
179   GNUNET_NAMESTORE_record_put (nsh, &pubkey, s_name,
180                                GNUNET_TIME_UNIT_FOREVER_ABS,
181                                RECORDS, s_rd, signature, &put_cont, (void*)  s_name);
182   GNUNET_free (signature);
183   for (c = 0; c < RECORDS; c++)
184     GNUNET_free_non_null((void *) s_rd[c].data);
185   GNUNET_free (s_rd);
186 }
187
188
189 int
190 main (int argc, char *argv[])
191 {
192   res = 1;
193   if (0 != GNUNET_TESTING_service_run ("test-namestore-api-put",
194                                        "namestore",
195                                        "test_namestore_api.conf",
196                                        &run,
197                                        NULL))
198     return 1;
199   return res;
200 }
201
202 /* end of test_namestore_api_put.c */