fix memleak
[oweals/gnunet.git] / src / namestore / test_namestore_record_serialization.c
1 /*
2      This file is part of GNUnet.
3      (C) 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 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 namestore/test_namestore_record_serialization.c
22  * @brief testcase for test_namestore_record_serialization.c
23  */
24 #include "platform.h"
25 #include "gnunet_common.h"
26 #include "gnunet_namestore_service.h"
27 #include "namestore.h"
28
29 #define VERBOSE GNUNET_NO
30
31 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
32
33 static int res;
34
35
36 static void
37 run (void *cls, char *const *args, const char *cfgfile,
38      const struct GNUNET_CONFIGURATION_Handle *cfg)
39 {
40   size_t len;
41   int c;
42
43   int rd_count = 3;
44   size_t data_len;
45   struct GNUNET_NAMESTORE_RecordData src[rd_count];
46
47   memset(src, '\0', rd_count * sizeof (struct GNUNET_NAMESTORE_RecordData));
48
49   data_len = 0;
50   for (c = 0; c < rd_count; c++)
51   {
52     src[c].record_type = c+1;
53     src[c].data_size = data_len;
54     src[c].data = GNUNET_malloc (data_len);
55
56     /* Setting data to data_len * record_type */
57     memset ((char *) src[c].data, 'a', data_len);
58     data_len += 10;
59   }
60   res = 0;
61
62   len = GNUNET_NAMESTORE_records_get_size(rd_count, src);
63   char rd_ser[len];
64   GNUNET_assert (len == GNUNET_NAMESTORE_records_serialize(rd_count, src, len, rd_ser));
65
66   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Serialized data len: %u\n",len);
67
68   GNUNET_assert (rd_ser != NULL);
69
70   struct GNUNET_NAMESTORE_RecordData dst[rd_count];
71   GNUNET_assert (GNUNET_OK == GNUNET_NAMESTORE_records_deserialize (len, rd_ser, rd_count, dst));
72
73   GNUNET_assert (dst != NULL);
74
75   for (c = 0; c < rd_count; c++)
76   {
77     if (src[c].data_size != dst[c].data_size)
78     {
79       GNUNET_break (0);
80       res = 1;
81     }
82     if (src[c].expiration_time != dst[c].expiration_time)
83     {
84       GNUNET_break (0);
85       res = 1;
86     }
87     if (src[c].flags != dst[c].flags)
88     {
89       GNUNET_break (0);
90       res = 1;
91     }
92     if (src[c].record_type != dst[c].record_type)
93     {
94       GNUNET_break (0);
95       res = 1;
96     }
97
98     size_t data_size = src[c].data_size;
99     char data[data_size];
100     memset (data, 'a', data_size);
101     if (0 != memcmp (data, dst[c].data, data_size))
102     {
103       GNUNET_break (0);
104       res = 1;
105     }
106     if (0 != memcmp (data, src[c].data, data_size))
107     {
108       GNUNET_break (0);
109       res = 1;
110     }
111     if (0 != memcmp (src[c].data, dst[c].data, src[c].data_size))
112     {
113       GNUNET_break (0);
114       res = 1;
115     }
116
117     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Element [%i]: EQUAL\n", c);
118   }
119
120   for (c = 0; c < rd_count; c++)
121   {
122     GNUNET_free ((void *)src[c].data);
123   }
124 }
125
126 static int
127 check ()
128 {
129   static char *const argv[] = { "test_namestore_record_serialization",
130     "-c",
131     "test_namestore_api.conf",
132     NULL
133   };
134   static struct GNUNET_GETOPT_CommandLineOption options[] = {
135     GNUNET_GETOPT_OPTION_END
136   };
137
138   res = 1;
139   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, "test_namestore_record_serialization",
140                       "nohelp", options, &run, &res);
141   return res;
142 }
143
144 int
145 main (int argc, char *argv[])
146 {
147   int ret;
148
149   ret = check ();
150
151   return ret;
152 }
153
154 /* end of test_namestore_record_serialization.c */