glitch in the license text detected by hyazinthe, thank you!
[oweals/gnunet.git] / src / namestore / test_namestore_api_store.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2012 GNUnet e.V.
4
5      GNUnet is free software: you can redistribute it and/or modify it
6      under the terms of the GNU Affero General Public License as published
7      by the Free Software Foundation, either version 3 of the License,
8      or (at your 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      Affero General Public License for more details.
14 */
15 /**
16  * @file namestore/test_namestore_api_store.c
17  * @brief testcase for namestore_api.c: store a record
18  */
19 #include "platform.h"
20 #include "gnunet_namestore_service.h"
21 #include "gnunet_testing_lib.h"
22 #include "gnunet_dnsparser_lib.h"
23
24 #define TEST_RECORD_TYPE GNUNET_DNSPARSER_TYPE_TXT
25
26 #define TEST_RECORD_DATALEN 123
27
28 #define TEST_RECORD_DATA 'a'
29
30 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
31
32
33 static struct GNUNET_NAMESTORE_Handle *nsh;
34
35 static struct GNUNET_SCHEDULER_Task * endbadly_task;
36
37 static struct GNUNET_CRYPTO_EcdsaPrivateKey *privkey;
38
39 static struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
40
41 static int res;
42
43 static struct GNUNET_NAMESTORE_QueueEntry *nsqe;
44
45
46 static void
47 cleanup ()
48 {
49   if (NULL != nsh)
50   {
51     GNUNET_NAMESTORE_disconnect (nsh);
52     nsh = NULL;
53   }
54   if (NULL != privkey)
55   {
56     GNUNET_free (privkey);
57     privkey = NULL;
58   }
59   GNUNET_SCHEDULER_shutdown ();
60 }
61
62
63 /**
64  * Re-establish the connection to the service.
65  *
66  * @param cls handle to use to re-connect.
67  */
68 static void
69 endbadly (void *cls)
70 {
71   if (NULL != nsqe)
72   {
73     GNUNET_NAMESTORE_cancel (nsqe);
74     nsqe = NULL;
75   }
76   cleanup ();
77   res = 1;
78 }
79
80
81 static void
82 end (void *cls)
83 {
84   cleanup ();
85   res = 0;
86 }
87
88
89 static void
90 put_cont (void *cls, int32_t success, const char *emsg)
91 {
92   const char *name = cls;
93
94   nsqe = NULL;
95   GNUNET_assert (NULL != cls);
96   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
97               "Name store added record for `%s': %s\n",
98               name,
99               (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
100   GNUNET_SCHEDULER_cancel (endbadly_task);
101   endbadly_task = NULL;
102   GNUNET_SCHEDULER_add_now (&end, NULL);
103 }
104
105
106 static void
107 run (void *cls,
108      const struct GNUNET_CONFIGURATION_Handle *cfg,
109      struct GNUNET_TESTING_Peer *peer)
110 {
111   struct GNUNET_GNSRECORD_Data rd;
112   const char * name = "dummy.dummy.gnunet";
113
114   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
115                                                 &endbadly, NULL);
116   privkey = GNUNET_CRYPTO_ecdsa_key_create ();
117   GNUNET_assert (privkey != NULL);
118   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
119
120
121   rd.expiration_time = GNUNET_TIME_absolute_get().abs_value_us;
122   rd.record_type = TEST_RECORD_TYPE;
123   rd.data_size = TEST_RECORD_DATALEN;
124   rd.data = GNUNET_malloc (TEST_RECORD_DATALEN);
125   rd.flags = 0;
126   memset ((char *) rd.data, 'a', TEST_RECORD_DATALEN);
127
128   nsh = GNUNET_NAMESTORE_connect (cfg);
129   GNUNET_break (NULL != nsh);
130   nsqe = GNUNET_NAMESTORE_records_store (nsh,
131                                          privkey,
132                                          name,
133                                          1,
134                                          &rd,
135                                          &put_cont,
136                                          (void *) name);
137   if (NULL == nsqe)
138   {
139     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
140               _("Namestore cannot store no block\n"));
141   }
142
143   GNUNET_free ((void *)rd.data);
144 }
145
146
147 int
148 main (int argc, char *argv[])
149 {
150   const char *plugin_name;
151   char *cfg_name;
152
153   plugin_name = GNUNET_TESTING_get_testname_from_underscore (argv[0]);
154   GNUNET_asprintf (&cfg_name,
155                    "test_namestore_api_%s.conf",
156                    plugin_name);
157   res = 1;
158   GNUNET_DISK_purge_cfg_dir (cfg_name,
159                              "GNUNET_TEST_HOME");
160   if (0 !=
161       GNUNET_TESTING_peer_run ("test-namestore-api",
162                                cfg_name,
163                                &run,
164                                NULL))
165   {
166     res = 1;
167   }
168   GNUNET_DISK_purge_cfg_dir (cfg_name,
169                              "GNUNET_TEST_HOME");
170   GNUNET_free (cfg_name);
171   return res;
172 }
173
174
175 /* end of test_namestore_api_store.c */