2 This file is part of GNUnet.
3 (C) 2004, 2005, 2006, 2007, 2009, 2011 Christian Grothoff (and other contributing authors)
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.
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.
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.
21 * @file datastore/test_datastore_api_management.c
22 * @brief Test for the space management functions of the datastore implementation.
23 * @author Christian Grothoff
26 #include "gnunet_util_lib.h"
27 #include "gnunet_protocols.h"
28 #include "gnunet_datastore_service.h"
29 #include "gnunet_testing_lib.h"
33 * How long until we give up on transmitting the message?
35 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
38 * Number of iterations to run; must be large enough
39 * so that the quota will be exceeded!
41 #define ITERATIONS 5000
54 struct GNUNET_HashCode key;
57 const struct GNUNET_CONFIGURATION_Handle *cfg;
64 static struct GNUNET_DATASTORE_Handle *datastore;
66 static struct GNUNET_TIME_Absolute now;
70 static const char *plugin_name;
76 return 8 + 8 * (i % 256);
83 static char buf[60000];
85 memset (buf, i, 8 + 8 * (i % 256));
105 get_anonymity (int i)
111 static struct GNUNET_TIME_Absolute
112 get_expiration (int i)
114 struct GNUNET_TIME_Absolute av;
116 av.abs_value_us = now.abs_value_us + i * 1000 * 1000LL;
122 run_continuation (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
126 check_success (void *cls, int success, struct GNUNET_TIME_Absolute min_expiration, const char *msg)
128 struct CpsRunContext *crc = cls;
130 if (GNUNET_OK != success)
131 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "%s\n", msg);
132 GNUNET_assert (GNUNET_OK == success);
133 GNUNET_free_non_null (crc->data);
135 GNUNET_SCHEDULER_add_continuation (&run_continuation, crc,
136 GNUNET_SCHEDULER_REASON_PREREQ_DONE);
141 check_value (void *cls, const struct GNUNET_HashCode * key, size_t size,
142 const void *data, enum GNUNET_BLOCK_Type type, uint32_t priority,
143 uint32_t anonymity, struct GNUNET_TIME_Absolute expiration,
146 struct CpsRunContext *crc = cls;
151 crc->phase = RP_GET_FAIL;
152 GNUNET_SCHEDULER_add_continuation (&run_continuation, crc,
153 GNUNET_SCHEDULER_REASON_PREREQ_DONE);
157 GNUNET_assert (size == get_size (i));
158 GNUNET_assert (0 == memcmp (data, get_data (i), size));
159 GNUNET_assert (type == get_type (i));
160 GNUNET_assert (priority == get_priority (i));
161 GNUNET_assert (anonymity == get_anonymity (i));
162 GNUNET_assert (expiration.abs_value_us == get_expiration (i).abs_value_us);
166 crc->phase = RP_DONE;
167 GNUNET_SCHEDULER_add_continuation (&run_continuation, crc,
168 GNUNET_SCHEDULER_REASON_PREREQ_DONE);
173 check_nothing (void *cls, const struct GNUNET_HashCode * key, size_t size,
174 const void *data, enum GNUNET_BLOCK_Type type, uint32_t priority,
175 uint32_t anonymity, struct GNUNET_TIME_Absolute expiration,
178 struct CpsRunContext *crc = cls;
180 GNUNET_assert (key == NULL);
182 crc->phase = RP_DONE;
183 GNUNET_SCHEDULER_add_continuation (&run_continuation, crc,
184 GNUNET_SCHEDULER_REASON_PREREQ_DONE);
189 run_continuation (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
191 struct CpsRunContext *crc = cls;
193 ok = (int) crc->phase;
197 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Executing `%s' number %u\n", "PUT",
199 GNUNET_CRYPTO_hash (&crc->i, sizeof (int), &crc->key);
200 GNUNET_DATASTORE_put (datastore, 0, &crc->key, get_size (crc->i),
201 get_data (crc->i), get_type (crc->i),
202 get_priority (crc->i), get_anonymity (crc->i), 0,
203 get_expiration (crc->i), 1, 1, TIMEOUT,
204 &check_success, crc);
206 if (crc->i == ITERATIONS)
208 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
209 "Sleeping to give datastore time to clean up\n");
216 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Executing `%s' number %u\n", "GET",
218 GNUNET_CRYPTO_hash (&crc->i, sizeof (int), &crc->key);
219 GNUNET_DATASTORE_get_key (datastore, crc->offset++, &crc->key,
220 get_type (crc->i), 1, 1, TIMEOUT, &check_value,
224 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Executing `%s' number %u\n", "GET(f)",
226 GNUNET_CRYPTO_hash (&crc->i, sizeof (int), &crc->key);
227 GNUNET_DATASTORE_get_key (datastore, crc->offset++, &crc->key,
228 get_type (crc->i), 1, 1, TIMEOUT, &check_nothing,
232 GNUNET_assert (0 == crc->i);
233 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Finished, disconnecting\n");
234 GNUNET_DATASTORE_disconnect (datastore, GNUNET_YES);
242 run_tests (void *cls, int success, struct GNUNET_TIME_Absolute min_expiration, const char *msg)
244 struct CpsRunContext *crc = cls;
246 if (success != GNUNET_YES)
249 "Test 'put' operation failed with error `%s' database likely not setup, skipping test.\n",
251 GNUNET_DATASTORE_disconnect (datastore, GNUNET_YES);
255 GNUNET_SCHEDULER_add_continuation (&run_continuation, crc,
256 GNUNET_SCHEDULER_REASON_PREREQ_DONE);
262 const struct GNUNET_CONFIGURATION_Handle *cfg,
263 struct GNUNET_TESTING_Peer *peer)
265 struct CpsRunContext *crc;
266 static struct GNUNET_HashCode zkey;
268 crc = GNUNET_malloc (sizeof (struct CpsRunContext));
271 now = GNUNET_TIME_absolute_get ();
272 datastore = GNUNET_DATASTORE_connect (cfg);
274 GNUNET_DATASTORE_put (datastore, 0, &zkey, 4, "TEST",
275 GNUNET_BLOCK_TYPE_TEST, 0, 0, 0,
276 GNUNET_TIME_relative_to_absolute
277 (GNUNET_TIME_UNIT_SECONDS), 0, 1,
278 GNUNET_TIME_UNIT_MINUTES, &run_tests, crc))
280 FPRINTF (stderr, "%s", "Test 'put' operation failed.\n");
288 main (int argc, char *argv[])
292 plugin_name = GNUNET_TESTING_get_testname_from_underscore (argv[0]);
293 GNUNET_snprintf (cfg_name, sizeof (cfg_name),
294 "test_datastore_api_data_%s.conf", plugin_name);
296 GNUNET_TESTING_peer_run ("test-gnunet-datastore-management",
304 /* end of test_datastore_api_management.c */