aboutsummaryrefslogtreecommitdiff
path: root/src/datacache/test_datacache.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-07-27 18:20:25 +0000
committerChristian Grothoff <christian@grothoff.org>2009-07-27 18:20:25 +0000
commitc5cda378386d01412ada7fbf8d51317bab1ab695 (patch)
tree203d2b0a92fc3482730060808df7bb8a1e724b2b /src/datacache/test_datacache.c
parent53f0065b1c2ef64a399f8450a7779ac4fef6b1b5 (diff)
downloadgnunet-c5cda378386d01412ada7fbf8d51317bab1ab695.tar.gz
gnunet-c5cda378386d01412ada7fbf8d51317bab1ab695.zip
renaming for consistency
Diffstat (limited to 'src/datacache/test_datacache.c')
-rw-r--r--src/datacache/test_datacache.c150
1 files changed, 150 insertions, 0 deletions
diff --git a/src/datacache/test_datacache.c b/src/datacache/test_datacache.c
new file mode 100644
index 000000000..c896b667b
--- /dev/null
+++ b/src/datacache/test_datacache.c
@@ -0,0 +1,150 @@
1/*
2 This file is part of GNUnet.
3 (C) 2006, 2009 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 2, 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 datacache/test_datacache.c
22 * @brief Test for the datacache implementations.
23 * @author Nils Durner
24 */
25#include "platform.h"
26#include "gnunet_util_lib.h"
27#include "gnunet_datacache_lib.h"
28
29#define VERBOSE GNUNET_NO
30
31#define ASSERT(x) do { if (! (x)) { printf("Error at %s:%d\n", __FILE__, __LINE__); goto FAILURE;} } while (0)
32
33static int ok;
34
35
36static int
37checkIt (void *cls,
38 struct GNUNET_TIME_Absolute exp,
39 const GNUNET_HashCode * key,
40 uint32_t size,
41 const char *data,
42 uint32_t type)
43{
44 if (size != sizeof (GNUNET_HashCode))
45 {
46 printf ("ERROR: Invalid size\n");
47 ok = 2;
48 }
49 if (0 != memcmp (data, cls, size))
50 {
51 printf ("ERROR: Invalid data\n");
52 ok = 3;
53 }
54 return GNUNET_OK;
55}
56
57
58static void
59run (void *cls,
60 struct GNUNET_SCHEDULER_Handle *sched,
61 char *const *args,
62 const char *cfgfile,
63 const struct GNUNET_CONFIGURATION_Handle *cfg)
64{
65 struct GNUNET_DATACACHE_Handle *h;
66 GNUNET_HashCode k;
67 GNUNET_HashCode n;
68 struct GNUNET_TIME_Absolute exp;
69 unsigned int i;
70
71 ok = 0;
72 h = GNUNET_DATACACHE_create (sched,
73 cfg,
74 "testcache");
75
76 ASSERT (NULL != h);
77 exp = GNUNET_TIME_absolute_get ();
78 exp.value += 5 * 60 * 1000;
79 memset (&k, 0, sizeof (GNUNET_HashCode));
80 for (i = 0; i < 100; i++)
81 {
82 GNUNET_CRYPTO_hash (&k, sizeof (GNUNET_HashCode), &n);
83 ASSERT (GNUNET_OK == GNUNET_DATACACHE_put (h,
84 &k,
85 sizeof (GNUNET_HashCode),
86 (const char *) &n,
87 1+i%16,
88 exp));
89 k = n;
90 }
91 memset (&k, 0, sizeof (GNUNET_HashCode));
92 for (i = 0; i < 100; i++)
93 {
94 GNUNET_CRYPTO_hash (&k, sizeof (GNUNET_HashCode), &n);
95 ASSERT (1 ==
96 GNUNET_DATACACHE_get (h, &k, 1+i%16,
97 &checkIt, &n));
98 k = n;
99 }
100 GNUNET_DATACACHE_destroy (h);
101 ASSERT (ok == 0);
102 return;
103FAILURE:
104 if (h != NULL)
105 GNUNET_DATACACHE_destroy (h);
106 ok = GNUNET_SYSERR;
107}
108
109
110static int
111check ()
112{
113 char *const argv[] = { "test-datacache-api",
114 "-c",
115 "test_datacache_data.conf",
116#if VERBOSE
117 "-L", "DEBUG",
118#endif
119 NULL
120 };
121 struct GNUNET_GETOPT_CommandLineOption options[] = {
122 GNUNET_GETOPT_OPTION_END
123 };
124 GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
125 argv, "test-datacache-api", "nohelp",
126 options, &run, NULL);
127 if (ok != 0)
128 fprintf (stderr, "Missed some testcases: %d\n", ok);
129 return ok;
130}
131
132
133int
134main (int argc, char *argv[])
135{
136 int ret;
137
138 GNUNET_log_setup ("test-datacache-api",
139#if VERBOSE
140 "DEBUG",
141#else
142 "WARNING",
143#endif
144 NULL);
145 ret = check ();
146
147 return ret;
148}
149
150/* end of test_datacache.c */