fix for size
[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_namestore_service.h"
26 #include "gnunet_testing_lib.h"
27 #include "namestore.h"
28
29 #define RECORDS 5
30
31 #define TEST_RECORD_TYPE 1234
32
33 #define TEST_RECORD_DATALEN 123
34
35 #define TEST_RECORD_DATA 'a'
36
37 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
38
39
40 static struct GNUNET_NAMESTORE_Handle * nsh;
41
42 static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
43
44 static struct GNUNET_CRYPTO_EcdsaPrivateKey * privkey;
45
46 static struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
47
48 static struct GNUNET_GNSRECORD_Data *s_rd;
49
50 static int res;
51
52
53 /**
54  * Re-establish the connection to the service.
55  *
56  * @param cls handle to use to re-connect.
57  * @param tc scheduler context
58  */
59 static void
60 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
61 {
62   if (nsh != NULL)
63     GNUNET_NAMESTORE_disconnect (nsh);
64   nsh = NULL;
65
66   if (privkey != NULL)
67   {
68     GNUNET_free (privkey);
69     privkey = NULL;
70   }
71   GNUNET_SCHEDULER_shutdown ();
72   res = 1;
73 }
74
75
76 static void
77 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
78 {
79   if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
80   {
81     GNUNET_SCHEDULER_cancel (endbadly_task);
82     endbadly_task = GNUNET_SCHEDULER_NO_TASK;
83   }
84
85   if (privkey != NULL)
86   {
87     GNUNET_free (privkey);
88     privkey = NULL;
89   }
90   if (nsh != NULL)
91   {
92     GNUNET_NAMESTORE_disconnect (nsh);
93     nsh = NULL;
94   }
95 }
96
97
98 static void
99 put_cont (void *cls, int32_t success, const char *emsg)
100 {
101   const char * name = cls;
102
103   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
104               "Name store added record for `%s': %s\n",
105               name, (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
106   if (success == GNUNET_OK)
107     res = 0;
108   else
109     res = 1;
110   GNUNET_SCHEDULER_add_now (&end, NULL);
111 }
112
113
114 static struct GNUNET_GNSRECORD_Data *
115 create_record (unsigned int count)
116 {
117   unsigned int c;
118   struct GNUNET_GNSRECORD_Data * rd;
119
120   rd = GNUNET_malloc (count * sizeof (struct GNUNET_GNSRECORD_Data));
121   for (c = 0; c < count; c++)
122   {
123     rd[c].expiration_time = GNUNET_TIME_absolute_get().abs_value_us;
124     rd[c].record_type = TEST_RECORD_TYPE;
125     rd[c].data_size = TEST_RECORD_DATALEN;
126     rd[c].data = GNUNET_malloc(TEST_RECORD_DATALEN);
127     rd[c].flags = 0;
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      struct GNUNET_TESTING_Peer *peer)
138 {
139   struct GNUNET_CRYPTO_EcdsaSignature *signature;
140   char * s_name;
141   int c;
142   char *hostkey_file;
143   struct GNUNET_TIME_Absolute et;
144
145   endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT,endbadly, NULL);
146   /* load privat key */
147   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR,
148       "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
149   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
150   privkey = GNUNET_CRYPTO_ecdsa_key_create_from_file(hostkey_file);
151   GNUNET_assert (privkey != NULL);
152   GNUNET_free (hostkey_file);
153   /* get public key */
154   GNUNET_CRYPTO_ecdsa_key_get_public(privkey, &pubkey);
155   nsh = GNUNET_NAMESTORE_connect (cfg);
156   GNUNET_break (NULL != nsh);
157   /* create record */
158   s_name = GNUNET_GNSRECORD_string_to_lowercase ("DUMMY.dummy.gnunet");
159   s_rd = create_record (RECORDS);
160   et.abs_value_us = s_rd[0].expiration_time;
161   signature = GNUNET_NAMESTORE_create_signature(privkey, et, s_name, s_rd, RECORDS);
162   GNUNET_break (s_rd != NULL);
163   GNUNET_break (s_name != NULL);
164   GNUNET_NAMESTORE_record_put (nsh, &pubkey, s_name,
165                                GNUNET_TIME_UNIT_FOREVER_ABS,
166                                RECORDS, s_rd, signature, &put_cont, (void*)  s_name);
167   GNUNET_free (signature);
168   for (c = 0; c < RECORDS; c++)
169     GNUNET_free_non_null((void *) s_rd[c].data);
170   GNUNET_free (s_rd);
171   GNUNET_free (s_name);
172 }
173
174
175 int
176 main (int argc, char *argv[])
177 {
178   res = 1;
179   if (0 != GNUNET_TESTING_peer_run ("test-namestore-api-put",
180                                     "test_namestore_api.conf",
181                                     &run,
182                                     NULL))
183     return 1;
184   return res;
185 }
186
187 /* end of test_namestore_api_put.c */