c0b20268b07ec41b76034b8b2611fc6f116f6481
[oweals/gnunet.git] / src / namestore / test_namestore_api.c
1 /*
2      This file is part of GNUnet.
3      (C) 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
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_RsaPrivateKey *privkey;
43
44 static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pubkey;
45
46 static struct GNUNET_CRYPTO_ShortHashCode zone;
47
48 static int res;
49
50 static struct GNUNET_NAMESTORE_QueueEntry *nsqe;
51
52
53 static void
54 cleanup ()
55 {
56   if (NULL != nsh)
57   {
58     GNUNET_NAMESTORE_disconnect (nsh);
59     nsh = NULL;
60   }
61   if (NULL != privkey)
62   {
63     GNUNET_CRYPTO_rsa_key_free (privkey);
64     privkey = NULL;
65   }
66   GNUNET_SCHEDULER_shutdown ();
67 }
68
69
70 /**
71  * Re-establish the connection to the service.
72  *
73  * @param cls handle to use to re-connect.
74  * @param tc scheduler context
75  */
76 static void
77 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
78 {
79   if (NULL != nsqe)
80   {
81     GNUNET_NAMESTORE_cancel (nsqe);
82     nsqe = NULL;
83   }
84   cleanup ();
85   res = 1;
86 }
87
88
89 static void
90 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
91 {
92   cleanup ();
93   res = 0;
94 }
95
96
97 static void
98 name_lookup_proc (void *cls,
99                   const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *zone_key,
100                   struct GNUNET_TIME_Absolute expire,
101                   const char *name,
102                   unsigned int rd_count,
103                   const struct GNUNET_NAMESTORE_RecordData *rd,
104                   const struct GNUNET_CRYPTO_RsaSignature *signature)
105 {
106   nsqe = NULL;
107   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
108               "Namestore lookup result %p `%s' %i %p %p\n",
109               zone_key, name, rd_count, rd, signature);
110   if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
111   {
112     GNUNET_SCHEDULER_cancel (endbadly_task);
113     endbadly_task = GNUNET_SCHEDULER_NO_TASK;
114   }
115   GNUNET_SCHEDULER_add_now (&end, NULL);
116 }
117
118
119 static void 
120 put_cont (void *cls, int32_t success, const char *emsg)
121 {
122   const char *name = cls;
123
124   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
125               "Name store added record for `%s': %s\n", 
126               name,
127               (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
128   nsqe = GNUNET_NAMESTORE_lookup_record (nsh, &zone, name, 0, 
129                                          &name_lookup_proc, NULL);
130 }
131
132
133 static void
134 run (void *cls, 
135      const struct GNUNET_CONFIGURATION_Handle *cfg,
136      struct GNUNET_TESTING_Peer *peer)
137 {
138   struct GNUNET_CRYPTO_RsaSignature signature;
139   struct GNUNET_NAMESTORE_RecordData rd;
140   char *hostkey_file;
141   const char * name = "dummy.dummy.gnunet";
142
143   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, 
144                                                 &endbadly, NULL);
145   GNUNET_asprintf (&hostkey_file,
146                    "zonefiles%s%s",
147                    DIR_SEPARATOR_STR,
148                    "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
149   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
150   privkey = GNUNET_CRYPTO_rsa_key_create_from_file (hostkey_file);
151   GNUNET_free (hostkey_file);
152   GNUNET_assert (privkey != NULL);
153   GNUNET_CRYPTO_rsa_key_get_public (privkey, &pubkey);
154   GNUNET_CRYPTO_short_hash (&pubkey, sizeof (pubkey), &zone);
155   memset (&signature, '\0', sizeof (signature));
156   rd.expiration_time = GNUNET_TIME_absolute_get().abs_value;
157   rd.record_type = TEST_RECORD_TYPE;
158   rd.data_size = TEST_RECORD_DATALEN;
159   rd.data = GNUNET_malloc (TEST_RECORD_DATALEN);
160   memset ((char *) rd.data, 'a', TEST_RECORD_DATALEN);
161   nsh = GNUNET_NAMESTORE_connect (cfg);
162   GNUNET_break (NULL != nsh);
163   nsqe = GNUNET_NAMESTORE_record_put (nsh, &pubkey, name,
164                                       GNUNET_TIME_UNIT_FOREVER_ABS,
165                                       1, &rd, &signature, &put_cont, (void*) name);
166   GNUNET_free ((void *)rd.data);
167 }
168
169
170 int
171 main (int argc, char *argv[])
172 {
173   res = 1;
174   if (0 != 
175       GNUNET_TESTING_service_run ("test-namestore-api",
176                                   "namestore",
177                                   "test_namestore_api.conf",
178                                   &run,
179                                   NULL))
180     return 1;
181   return res;
182 }
183
184
185 /* end of test_namestore_api.c */