-fixing IO-error bug in namestore tests on buildbots, simplifying testcases by using...
[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 run (void *cls, 
136      const struct GNUNET_CONFIGURATION_Handle *cfg)
137 {
138   struct GNUNET_CRYPTO_RsaSignature *signature;
139   const char * s_name = "dummy.dummy.gnunet";
140   int c;
141   char *hostkey_file;
142
143   endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT,endbadly, NULL);
144   /* load privat key */
145   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR,
146       "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
147   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
148   privkey = GNUNET_CRYPTO_rsa_key_create_from_file(hostkey_file);
149   GNUNET_assert (privkey != NULL);
150   GNUNET_free (hostkey_file);
151   /* get public key */
152   GNUNET_CRYPTO_rsa_key_get_public(privkey, &pubkey);
153   nsh = GNUNET_NAMESTORE_connect (cfg);
154   GNUNET_break (NULL != nsh);
155   /* create record */
156   s_rd = create_record (RECORDS);
157   signature = GNUNET_NAMESTORE_create_signature(privkey, s_rd[0].expiration, s_name, s_rd, RECORDS);
158   GNUNET_break (s_rd != NULL);
159   GNUNET_break (s_name != NULL);
160   GNUNET_NAMESTORE_record_put (nsh, &pubkey, s_name,
161                                GNUNET_TIME_UNIT_FOREVER_ABS,
162                                RECORDS, s_rd, signature, &put_cont, (void*)  s_name);
163   GNUNET_free (signature);
164   for (c = 0; c < RECORDS; c++)
165     GNUNET_free_non_null((void *) s_rd[c].data);
166   GNUNET_free (s_rd);
167 }
168
169
170 int
171 main (int argc, char *argv[])
172 {
173   res = 1;
174   if (0 != GNUNET_TESTING_service_run ("test-namestore-api-put",
175                                        "namestore",
176                                        "test_namestore_api.conf",
177                                        &run,
178                                        NULL))
179     return 1;
180   return res;
181 }
182
183 /* end of test_namestore_api_put.c */