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