7d31eff2ecd3c38e416ac26b050cdd298687519e
[oweals/gnunet.git] / src / util / test_container_slist.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 2, 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 /**
22  * @file util/test_container_slist.c
23  * @brief Testcases for singly linked lists
24  * @author Nils Durner
25  */
26
27 #include "platform.h"
28 #include "gnunet_common.h"
29 #include "gnunet_container_lib.h"
30
31 #define ABORT() { fprintf(stderr, "Error at %s:%d\n", __FILE__, __LINE__); return 1; }
32 #define CHECK(c) { if (! (c)) ABORT(); }
33
34 int
35 main (int argc, char *argv[])
36 {
37   struct GNUNET_CONTAINER_SList *l;
38   struct GNUNET_CONTAINER_SList_Iterator *it;
39   unsigned int i;
40   unsigned int j;
41   size_t s;
42   const void *p;    
43
44   GNUNET_log_setup ("test-container-slist", "WARNING", NULL);
45
46   l = GNUNET_CONTAINER_slist_create ();
47   CHECK (l != NULL);
48   CHECK (GNUNET_CONTAINER_slist_count (l) == 0);
49
50   for (i = 0; i < 100; i++)
51     GNUNET_CONTAINER_slist_add (l, GNUNET_CONTAINER_SLIST_DISPOSITION_TRANSIENT, &i, sizeof (i));
52   CHECK (GNUNET_CONTAINER_slist_count (l) == 100);
53
54   for (it = GNUNET_CONTAINER_slist_begin (l), i = 99;
55        GNUNET_CONTAINER_slist_end (it) != GNUNET_YES;
56        GNUNET_CONTAINER_slist_next (it), i--)
57     {
58       p = GNUNET_CONTAINER_slist_get (it, &s);
59       CHECK (p != NULL);
60       j = *(int *) p;
61       CHECK (i == j);
62       CHECK (s == sizeof (i));
63
64       j *= 2;
65       GNUNET_CONTAINER_slist_insert (it, GNUNET_CONTAINER_SLIST_DISPOSITION_TRANSIENT, &j,
66                                      sizeof (j));
67     }
68   GNUNET_free (it);
69   CHECK (GNUNET_CONTAINER_slist_count (l) == 200);
70   i = 198;
71   CHECK (GNUNET_CONTAINER_slist_contains (l, &i, sizeof (i)));
72
73   for (it = GNUNET_CONTAINER_slist_begin (l);
74        GNUNET_CONTAINER_slist_end (it) != GNUNET_YES;)
75     {
76       p = GNUNET_CONTAINER_slist_get (it, &s);
77       CHECK (p != NULL);
78       CHECK (s == sizeof (i));
79       i = *(int *) p;
80
81       CHECK (GNUNET_CONTAINER_slist_next (it) == GNUNET_YES);
82       CHECK (GNUNET_CONTAINER_slist_end (it) != GNUNET_YES);
83
84       p = GNUNET_CONTAINER_slist_get (it, &s);
85       CHECK (p != NULL);
86       CHECK (s == sizeof (j));
87       j = *(int *) p;
88
89       CHECK (j * 2 == i);
90
91       GNUNET_CONTAINER_slist_erase (it);
92     }
93   GNUNET_free (it);
94   CHECK (GNUNET_CONTAINER_slist_count (l) == 100);
95   i = 99;
96   CHECK (GNUNET_CONTAINER_slist_contains (l, &i, sizeof (i)) == GNUNET_NO);
97   i = 198;
98   CHECK (GNUNET_CONTAINER_slist_contains (l, &i, sizeof (i)));
99
100   GNUNET_CONTAINER_slist_clear (l);
101   CHECK (GNUNET_CONTAINER_slist_count (l) == 0);
102
103   for (i = 0; i < 100; i++)
104     GNUNET_CONTAINER_slist_add (l, GNUNET_CONTAINER_SLIST_DISPOSITION_TRANSIENT, &i, sizeof (i));
105
106   GNUNET_CONTAINER_slist_destroy (l);
107
108   return 0;
109 }