Add an element disposal function.
[gnulib.git] / tests / test-array_oset.c
1 /* Test of ordered set data type implementation.
2    Copyright (C) 2006-2007 Free Software Foundation, Inc.
3    Written by Bruno Haible <bruno@clisp.org>, 2007.
4
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 2, or (at your option)
8    any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software Foundation,
17    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
18
19 #ifdef HAVE_CONFIG_H
20 # include <config.h>
21 #endif
22
23 #include "gl_array_oset.h"
24
25 #include <stdlib.h>
26 #include <string.h>
27
28 #include "gl_array_list.h"
29 #include "progname.h"
30
31 static const char *objects[30] =
32   {
33     "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o",
34     "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "<", ">", "[", "]"
35   };
36
37 #define SIZEOF(array) (sizeof (array) / sizeof (array[0]))
38 #define ASSERT(condition) if (!(condition)) abort ()
39 #define RANDOM(n) (rand () % (n))
40 #define RANDOM_OBJECT() objects[RANDOM (SIZEOF (objects))]
41
42 static void
43 check_equals (gl_oset_t set1, gl_list_t set2)
44 {
45   size_t n = gl_oset_size (set1);
46   gl_oset_iterator_t iter1;
47   gl_list_iterator_t iter2;
48   const void *elt1;
49   const void *elt2;
50   gl_list_node_t node2;
51   size_t i;
52
53   iter1 = gl_oset_iterator (set1);
54   iter2 = gl_list_iterator (set2);
55   for (i = 0; i < n; i++)
56     {
57       ASSERT (gl_oset_iterator_next (&iter1, &elt1));
58       ASSERT (gl_list_iterator_next (&iter2, &elt2, &node2));
59       ASSERT (elt1 == elt2);
60     }
61   ASSERT (!gl_oset_iterator_next (&iter1, &elt1));
62   ASSERT (!gl_list_iterator_next (&iter2, &elt2, &node2));
63   gl_oset_iterator_free (&iter1);
64   gl_list_iterator_free (&iter2);
65 }
66
67 static void
68 check_all (gl_oset_t set1, gl_list_t set2)
69 {
70   check_equals (set1, set2);
71 }
72
73 int
74 main (int argc, char *argv[])
75 {
76   gl_oset_t set1;
77   gl_list_t set2;
78
79   set_program_name (argv[0]);
80
81   /* Allow the user to provide a non-default random seed on the command line.  */
82   if (argc > 1)
83     srand (atoi (argv[1]));
84
85   {
86     size_t initial_size = RANDOM (20);
87     size_t i;
88     unsigned int repeat;
89
90     /* Create set1.  */
91     set1 = gl_oset_create_empty (GL_ARRAY_OSET, (gl_setelement_compar_fn) strcmp, NULL);
92
93     /* Create set2.  */
94     set2 = gl_list_create_empty (GL_ARRAY_LIST, NULL, NULL, false);
95
96     check_all (set1, set2);
97
98     /* Initialize them.  */
99     for (i = 0; i < initial_size; i++)
100       {
101         const char *obj = RANDOM_OBJECT ();
102         ASSERT (gl_oset_add (set1, obj)
103                 == (gl_sortedlist_search (set2, (gl_listelement_compar_fn)strcmp, obj) != NULL
104                     ? false
105                     : (gl_sortedlist_add (set2, (gl_listelement_compar_fn)strcmp, obj), true)));
106         check_all (set1, set2);
107       }
108
109     for (repeat = 0; repeat < 100000; repeat++)
110       {
111         unsigned int operation = RANDOM (3);
112         switch (operation)
113           {
114           case 0:
115             {
116               const char *obj = RANDOM_OBJECT ();
117               ASSERT (gl_oset_search (set1, obj)
118                       == (gl_sortedlist_search (set2, (gl_listelement_compar_fn)strcmp, obj) != NULL));
119             }
120             break;
121           case 1:
122             {
123               const char *obj = RANDOM_OBJECT ();
124               ASSERT (gl_oset_add (set1, obj)
125                       == (gl_sortedlist_search (set2, (gl_listelement_compar_fn)strcmp, obj) != NULL
126                           ? false
127                           : (gl_sortedlist_add (set2, (gl_listelement_compar_fn)strcmp, obj), true)));
128             }
129             break;
130           case 2:
131             {
132               const char *obj = RANDOM_OBJECT ();
133               ASSERT (gl_oset_remove (set1, obj)
134                       == gl_sortedlist_remove (set2, (gl_listelement_compar_fn)strcmp, obj));
135             }
136             break;
137           }
138         check_all (set1, set2);
139       }
140
141     gl_oset_free (set1);
142     gl_list_free (set2);
143   }
144
145   return 0;
146 }