glitch in the license text detected by hyazinthe, thank you!
[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 /**
16  * @file util/test_strings_to_data.c
17  * @brief testcase for strings.c
18  */
19 #include "platform.h"
20 #include "gnunet_util_lib.h"
21
22
23 int
24 main (int argc, char *argv[])
25 {
26   char buf[1024];
27   char *end;
28   char src[128];
29   char dst[128];
30   unsigned int i;
31   int ret = 0;
32
33   GNUNET_log_setup ("util", "DEBUG", NULL);
34   for (i=0;i<sizeof(src);i++)
35   {
36     memset (src, i, sizeof (src));
37     memset (dst, i+1, sizeof (dst));
38
39     end = GNUNET_STRINGS_data_to_string (&src, i, buf, sizeof (buf));
40     GNUNET_assert (NULL != end);
41     end[0] = '\0';
42     if (GNUNET_OK !=
43         GNUNET_STRINGS_string_to_data (buf, strlen (buf), dst, i))
44     {
45       fprintf (stderr, "%u failed decode (%u bytes)\n", i, (unsigned int) strlen (buf));
46       ret = 1;
47     } else if (0 != memcmp (src, dst, i))
48     {
49       fprintf (stderr, "%u wrong decode (%u bytes)\n", i, (unsigned int) strlen (buf));
50       ret = 1;
51     }
52   }
53   return ret;
54 }
55
56
57 /* end of test_strings_to_data.c */