include plugin in gnunet-transport output
[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_EXTRA_LOGGING
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, char *const *args, const char *cfgfile,
48      const struct GNUNET_CONFIGURATION_Handle *cfg)
49 {
50   struct GNUNET_DATACACHE_Handle *h;
51   GNUNET_HashCode k;
52   GNUNET_HashCode n;
53   unsigned int i;
54   unsigned int j;
55   char buf[3200];
56   struct GNUNET_TIME_Absolute exp;
57
58   ok = 0;
59   h = GNUNET_DATACACHE_create (cfg, "testcache");
60
61   if (h == NULL)
62   {
63     fprintf (stderr,
64              "Failed to initialize datacache.  Database likely not setup, skipping test.\n");
65     return;
66   }
67   exp = GNUNET_TIME_relative_to_absolute (GNUNET_TIME_UNIT_HOURS);
68   memset (buf, 1, sizeof (buf));
69   memset (&k, 0, sizeof (GNUNET_HashCode));
70   for (i = 0; i < 10; i++)
71   {
72     fprintf (stderr, ".");
73     GNUNET_CRYPTO_hash (&k, sizeof (GNUNET_HashCode), &n);
74     for (j = i; j < sizeof (buf); j += 10)
75     {
76       exp.abs_value++;
77       buf[j] = i;
78       ASSERT (GNUNET_OK == GNUNET_DATACACHE_put (h, &k, j, buf, 1 + i, exp));
79       ASSERT (0 < GNUNET_DATACACHE_get (h, &k, 1 + i, NULL, NULL));
80     }
81     k = n;
82   }
83   fprintf (stderr, "\n");
84   memset (&k, 0, sizeof (GNUNET_HashCode));
85   for (i = 0; i < 10; i++)
86   {
87     fprintf (stderr, ".");
88     GNUNET_CRYPTO_hash (&k, sizeof (GNUNET_HashCode), &n);
89     if (i < 2)
90       ASSERT (0 == GNUNET_DATACACHE_get (h, &k, 1 + i, NULL, NULL));
91     if (i == 9)
92       ASSERT (0 < GNUNET_DATACACHE_get (h, &k, 1 + i, NULL, NULL));
93     k = n;
94   }
95   fprintf (stderr, "\n");
96   GNUNET_DATACACHE_destroy (h);
97   return;
98 FAILURE:
99   if (h != NULL)
100     GNUNET_DATACACHE_destroy (h);
101   ok = GNUNET_SYSERR;
102 }
103
104
105 int
106 main (int argc, char *argv[])
107 {
108   char *pos;
109   char cfg_name[128];
110
111   char *const xargv[] = {
112     "test-datacache-quota",
113     "-c",
114     cfg_name,
115 #if VERBOSE
116     "-L", "DEBUG",
117 #endif
118     NULL
119   };
120   struct GNUNET_GETOPT_CommandLineOption options[] = {
121     GNUNET_GETOPT_OPTION_END
122   };
123
124   GNUNET_log_setup ("test-datacache-quota",
125 #if VERBOSE
126                     "DEBUG",
127 #else
128                     "WARNING",
129 #endif
130                     NULL);
131
132   /* determine name of plugin to use */
133   plugin_name = argv[0];
134   while (NULL != (pos = strstr (plugin_name, "_")))
135     plugin_name = pos + 1;
136   if (NULL != (pos = strstr (plugin_name, ".")))
137     pos[0] = 0;
138   else
139     pos = (char *) plugin_name;
140
141   GNUNET_snprintf (cfg_name, sizeof (cfg_name), "test_datacache_data_%s.conf",
142                    plugin_name);
143   if (pos != plugin_name)
144     pos[0] = '.';
145   GNUNET_PROGRAM_run ((sizeof (xargv) / sizeof (char *)) - 1, xargv,
146                       "test-datacache-quota", "nohelp", options, &run, NULL);
147   if (ok != 0)
148     fprintf (stderr, "Missed some testcases: %d\n", ok);
149   return ok;
150 }
151
152 /* end of test_datacache_quota.c */