LRN loves slist: Use stack allocation for slist iterator
[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 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 /**
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 int
32 main (int argc, char *argv[])
33 {
34   struct GNUNET_CONTAINER_SList *l;
35   struct GNUNET_CONTAINER_SList_Iterator it;
36   unsigned int i;
37   int *ip;
38   unsigned int j;
39   size_t s;
40   const void *p;
41
42   GNUNET_log_setup ("test-container-slist", "WARNING", NULL);
43
44   l = GNUNET_CONTAINER_slist_create ();
45   GNUNET_assert (l != NULL);
46   GNUNET_assert (GNUNET_CONTAINER_slist_count (l) == 0);
47
48   for (i = 0; i < 100; i++)
49     GNUNET_CONTAINER_slist_add (l,
50                                 GNUNET_CONTAINER_SLIST_DISPOSITION_TRANSIENT,
51                                 &i, sizeof (i));
52   GNUNET_assert (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
60       if ((p == NULL) || (i != (j = *(int *) p)) || (s != sizeof (i)))
61         {
62           GNUNET_CONTAINER_slist_iter_destroy (&it);
63           GNUNET_assert (0);
64         }
65       j *= 2;
66       GNUNET_CONTAINER_slist_insert (&it,
67                                      GNUNET_CONTAINER_SLIST_DISPOSITION_TRANSIENT,
68                                      &j, sizeof (j));
69     }
70   GNUNET_assert (GNUNET_CONTAINER_slist_count (l) == 200);
71   i = 198;
72   GNUNET_assert (GNUNET_CONTAINER_slist_contains (l, &i, sizeof (i)));
73
74   for (it = GNUNET_CONTAINER_slist_begin (l);
75        GNUNET_CONTAINER_slist_end (&it) != GNUNET_YES;)
76     {
77       p = GNUNET_CONTAINER_slist_get (&it, &s);
78       GNUNET_assert (p != NULL);
79       GNUNET_assert (s == sizeof (i));
80       i = *(int *) p;
81
82       GNUNET_assert (GNUNET_CONTAINER_slist_next (&it) == GNUNET_YES);
83       GNUNET_assert (GNUNET_CONTAINER_slist_end (&it) != GNUNET_YES);
84
85       p = GNUNET_CONTAINER_slist_get (&it, &s);
86       GNUNET_assert (p != NULL);
87       GNUNET_assert (s == sizeof (j));
88       j = *(int *) p;
89
90       GNUNET_assert (j * 2 == i);
91
92       GNUNET_CONTAINER_slist_erase (&it);
93     }
94   GNUNET_assert (GNUNET_CONTAINER_slist_count (l) == 100);
95   i = 99;
96   GNUNET_assert (GNUNET_CONTAINER_slist_contains (l, &i, sizeof (i)) ==
97                  GNUNET_NO);
98   i = 198;
99   GNUNET_assert (GNUNET_CONTAINER_slist_contains (l, &i, sizeof (i)) ==
100                  GNUNET_YES);
101
102   GNUNET_CONTAINER_slist_clear (l);
103   GNUNET_assert (GNUNET_CONTAINER_slist_count (l) == 0);
104
105   for (i = 0; i < 100; i++)
106     GNUNET_CONTAINER_slist_add (l,
107                                 GNUNET_CONTAINER_SLIST_DISPOSITION_TRANSIENT,
108                                 &i, sizeof (i));
109   /*check slist_append */
110   GNUNET_CONTAINER_slist_append (l, l);
111   GNUNET_assert (GNUNET_CONTAINER_slist_count (l) == 200);
112
113   GNUNET_CONTAINER_slist_destroy (l);
114
115   /*check slist_add_end */
116   l = GNUNET_CONTAINER_slist_create ();
117   for (i = 0; i < 100; i++)
118     GNUNET_CONTAINER_slist_add_end (l,
119                                     GNUNET_CONTAINER_SLIST_DISPOSITION_TRANSIENT,
120                                     &i, sizeof (i));
121
122   GNUNET_assert (GNUNET_CONTAINER_slist_count (l) == 100);
123
124   for (it = GNUNET_CONTAINER_slist_begin (l), i = 0;
125        GNUNET_CONTAINER_slist_end (&it) != GNUNET_YES;
126        GNUNET_CONTAINER_slist_next (&it), i++)
127     {
128       p = GNUNET_CONTAINER_slist_get (&it, &s);
129
130       if ((p == NULL) || (i != *(int *) p) || (s != sizeof (i)))
131         {
132           GNUNET_assert (0);
133         }
134     }
135   GNUNET_CONTAINER_slist_destroy (l);
136
137   /*check if disp = GNUNET_CONTAINER_SLIST_DISPOSITION_DYNAMIC */
138   l = GNUNET_CONTAINER_slist_create ();
139
140   for (i = 0; i < 100; i++)
141     {
142       ip = GNUNET_malloc (sizeof (int));
143       *ip = i;
144       GNUNET_CONTAINER_slist_add (l,
145                                   GNUNET_CONTAINER_SLIST_DISPOSITION_DYNAMIC,
146                                   ip, sizeof (int));
147     }
148   //creat_add
149   it = GNUNET_CONTAINER_slist_begin (l);
150   p = GNUNET_CONTAINER_slist_get (&it, &s);
151   GNUNET_assert (p != NULL);
152   //slist_erase
153   GNUNET_assert (GNUNET_CONTAINER_slist_next (&it) == GNUNET_YES);
154   GNUNET_CONTAINER_slist_erase (&it);
155   GNUNET_CONTAINER_slist_iter_destroy (&it);
156   GNUNET_assert (GNUNET_CONTAINER_slist_count (l) == 99);
157   //slist_clear
158   GNUNET_CONTAINER_slist_clear (l);
159   GNUNET_assert (GNUNET_CONTAINER_slist_count (l) == 0);
160   GNUNET_CONTAINER_slist_destroy (l);
161
162   return 0;
163 }