indentation
[oweals/gnunet.git] / src / datacache / test_datacache_quota.c
1 /*
2      This file is part of GNUnet.
3      (C) 2006, 2009, 2010 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 datacache/test_datacache_quota.c
22  * @brief Test for the quota code of 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
33 static int ok;
34
35 /**
36  * Name of plugin under test.
37  */
38 static const char *plugin_name;
39
40 /**
41  * Quota is 1 MB.  Each iteration of the test puts in about 1 MB of
42  * data.  We do 10 iterations. Afterwards we check that the data from
43  * the first 5 iterations has all been discarded and that at least
44  * some of the data from the last iteration is still there.
45  */
46 static void
47 run (void *cls,
48      char *const *args,
49      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
50 {
51   struct GNUNET_DATACACHE_Handle *h;
52   GNUNET_HashCode k;
53   GNUNET_HashCode n;
54   unsigned int i;
55   unsigned int j;
56   char buf[3200];
57   struct GNUNET_TIME_Absolute exp;
58
59   ok = 0;
60   h = GNUNET_DATACACHE_create (cfg, "testcache");
61
62   if (h == NULL)
63   {
64     fprintf (stderr,
65              "Failed to initialize datacache.  Database likely not setup, skipping test.\n");
66     return;
67   }
68   exp = GNUNET_TIME_absolute_get ();
69   exp.abs_value += 20 * 60 * 1000;
70   memset (buf, 1, sizeof (buf));
71   memset (&k, 0, sizeof (GNUNET_HashCode));
72   for (i = 0; i < 10; i++)
73   {
74     fprintf (stderr, ".");
75     GNUNET_CRYPTO_hash (&k, sizeof (GNUNET_HashCode), &n);
76     for (j = i; j < sizeof (buf); j += 10)
77     {
78       exp.abs_value++;
79       buf[j] = i;
80       ASSERT (GNUNET_OK == GNUNET_DATACACHE_put (h, &k, j, buf, 1 + i, exp));
81       ASSERT (0 < GNUNET_DATACACHE_get (h, &k, 1 + i, NULL, NULL));
82     }
83     k = n;
84   }
85   fprintf (stderr, "\n");
86   memset (&k, 0, sizeof (GNUNET_HashCode));
87   for (i = 0; i < 10; i++)
88   {
89     fprintf (stderr, ".");
90     GNUNET_CRYPTO_hash (&k, sizeof (GNUNET_HashCode), &n);
91     if (i < 2)
92       ASSERT (0 == GNUNET_DATACACHE_get (h, &k, 1 + i, NULL, NULL));
93     if (i == 9)
94       ASSERT (0 < GNUNET_DATACACHE_get (h, &k, 1 + i, NULL, NULL));
95     k = n;
96   }
97   fprintf (stderr, "\n");
98   GNUNET_DATACACHE_destroy (h);
99   return;
100 FAILURE:
101   if (h != NULL)
102     GNUNET_DATACACHE_destroy (h);
103   ok = GNUNET_SYSERR;
104 }
105
106
107 int
108 main (int argc, char *argv[])
109 {
110   char *pos;
111   char cfg_name[128];
112
113   char *const xargv[] = {
114     "test-datacache-quota",
115     "-c",
116     cfg_name,
117 #if VERBOSE
118     "-L", "DEBUG",
119 #endif
120     NULL
121   };
122   struct GNUNET_GETOPT_CommandLineOption options[] = {
123     GNUNET_GETOPT_OPTION_END
124   };
125
126   GNUNET_log_setup ("test-datacache-quota",
127 #if VERBOSE
128                     "DEBUG",
129 #else
130                     "WARNING",
131 #endif
132                     NULL);
133
134   /* determine name of plugin to use */
135   plugin_name = argv[0];
136   while (NULL != (pos = strstr (plugin_name, "_")))
137     plugin_name = pos + 1;
138   if (NULL != (pos = strstr (plugin_name, ".")))
139     pos[0] = 0;
140   else
141     pos = (char *) plugin_name;
142
143   GNUNET_snprintf (cfg_name,
144                    sizeof (cfg_name),
145                    "test_datacache_data_%s.conf", plugin_name);
146   if (pos != plugin_name)
147     pos[0] = '.';
148   GNUNET_PROGRAM_run ((sizeof (xargv) / sizeof (char *)) - 1,
149                       xargv, "test-datacache-quota", "nohelp",
150                       options, &run, NULL);
151   if (ok != 0)
152     fprintf (stderr, "Missed some testcases: %d\n", ok);
153   return ok;
154 }
155
156 /* end of test_datacache_quota.c */