added lookup test + fix in test
[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     memset ((char *) rd[c].data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
128   }
129   return rd;
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_EcdsaSignature *signature;
139   char * s_name;
140   int c;
141   char *hostkey_file;
142   struct GNUNET_TIME_Absolute et;
143
144   endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT,endbadly, NULL);
145   /* load privat key */
146   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR,
147       "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
148   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
149   privkey = GNUNET_CRYPTO_ecdsa_key_create_from_file(hostkey_file);
150   GNUNET_assert (privkey != NULL);
151   GNUNET_free (hostkey_file);
152   /* get public key */
153   GNUNET_CRYPTO_ecdsa_key_get_public(privkey, &pubkey);
154   nsh = GNUNET_NAMESTORE_connect (cfg);
155   GNUNET_break (NULL != nsh);
156   /* create record */
157   s_name = GNUNET_GNSRECORD_string_to_lowercase ("DUMMY.dummy.gnunet");
158   s_rd = create_record (RECORDS);
159   et.abs_value_us = s_rd[0].expiration_time;
160   signature = GNUNET_NAMESTORE_create_signature(privkey, et, s_name, s_rd, RECORDS);
161   GNUNET_break (s_rd != NULL);
162   GNUNET_break (s_name != NULL);
163   GNUNET_NAMESTORE_record_put (nsh, &pubkey, s_name,
164                                GNUNET_TIME_UNIT_FOREVER_ABS,
165                                RECORDS, s_rd, signature, &put_cont, (void*)  s_name);
166   GNUNET_free (signature);
167   for (c = 0; c < RECORDS; c++)
168     GNUNET_free_non_null((void *) s_rd[c].data);
169   GNUNET_free (s_rd);
170   GNUNET_free (s_name);
171 }
172
173
174 int
175 main (int argc, char *argv[])
176 {
177   res = 1;
178   if (0 != GNUNET_TESTING_peer_run ("test-namestore-api-put",
179                                     "test_namestore_api.conf",
180                                     &run,
181                                     NULL))
182     return 1;
183   return res;
184 }
185
186 /* end of test_namestore_api_put.c */