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