paragraph for gnunet devs that don't know how to use the web
[oweals/gnunet.git] / src / util / test_strings_to_data.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2009 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      You should have received a copy of the GNU Affero General Public License
16      along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18 /**
19  * @file util/test_strings_to_data.c
20  * @brief testcase for strings.c
21  */
22 #include "platform.h"
23 #include "gnunet_util_lib.h"
24
25
26 int
27 main (int argc, char *argv[])
28 {
29   char buf[1024];
30   char *end;
31   char src[128];
32   char dst[128];
33   unsigned int i;
34   int ret = 0;
35
36   GNUNET_log_setup ("util", "DEBUG", NULL);
37   for (i=0;i<sizeof(src);i++)
38   {
39     memset (src, i, sizeof (src));
40     memset (dst, i+1, sizeof (dst));
41
42     end = GNUNET_STRINGS_data_to_string (&src, i, buf, sizeof (buf));
43     GNUNET_assert (NULL != end);
44     end[0] = '\0';
45     if (GNUNET_OK !=
46         GNUNET_STRINGS_string_to_data (buf, strlen (buf), dst, i))
47     {
48       fprintf (stderr, "%u failed decode (%u bytes)\n", i, (unsigned int) strlen (buf));
49       ret = 1;
50     } else if (0 != memcmp (src, dst, i))
51     {
52       fprintf (stderr, "%u wrong decode (%u bytes)\n", i, (unsigned int) strlen (buf));
53       ret = 1;
54     }
55   }
56   return ret;
57 }
58
59
60 /* end of test_strings_to_data.c */