a22d4be8ac1a14105ae7d2208f9561722984a9f1
[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, j, s;
40
41
42   GNUNET_log_setup ("test-container-slist", "WARNING", NULL);
43
44   l = GNUNET_CONTAINER_slist_create ();
45   CHECK (l != NULL);
46   CHECK (GNUNET_CONTAINER_slist_count (l) == 0);
47
48   for (i = 0; i < 100; i++)
49     GNUNET_CONTAINER_slist_add (l, GNUNET_MEM_DISP_TRANSIENT, &i, sizeof (i));
50   CHECK (GNUNET_CONTAINER_slist_count (l) == 100);
51
52   for (it = GNUNET_CONTAINER_slist_begin (l), i = 99;
53        GNUNET_CONTAINER_slist_end (it) != GNUNET_YES;
54        GNUNET_CONTAINER_slist_next (it), i--)
55     {
56       void *p;
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_MEM_DISP_TRANSIENT, &j,
66                                      sizeof (j));
67     }
68   CHECK (GNUNET_CONTAINER_slist_count (l) == 200);
69   i = 198;
70   CHECK (GNUNET_CONTAINER_slist_contains (l, &i, sizeof (i)));
71
72   for (it = GNUNET_CONTAINER_slist_begin (l);
73        GNUNET_CONTAINER_slist_end (it) != GNUNET_YES;)
74     {
75       void *p;
76
77       p = GNUNET_CONTAINER_slist_get (it, &s);
78       CHECK (p != NULL);
79       CHECK (s == sizeof (i));
80       i = *(int *) p;
81
82       CHECK (GNUNET_CONTAINER_slist_next (it) == GNUNET_YES);
83       CHECK (GNUNET_CONTAINER_slist_end (it) != GNUNET_YES);
84
85       p = GNUNET_CONTAINER_slist_get (it, &s);
86       CHECK (p != NULL);
87       CHECK (s == sizeof (j));
88       j = *(int *) p;
89
90       CHECK (j * 2 == i);
91
92       GNUNET_CONTAINER_slist_erase (it);
93     }
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_MEM_DISP_TRANSIENT, &i, sizeof (i));
105
106   GNUNET_CONTAINER_slist_destroy (l);
107
108   return 0;
109 }