maint: update copyright
[gnulib.git] / tests / test-rbtree_oset.c
1 /* Test of ordered set data type implementation.
2    Copyright (C) 2006-2014 Free Software Foundation, Inc.
3    Written by Bruno Haible <bruno@clisp.org>, 2006.
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 3 of the License, or
8    (at your option) 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, see <http://www.gnu.org/licenses/>.  */
17
18 #include <config.h>
19
20 #include "gl_rbtree_oset.h"
21
22 #include <stdlib.h>
23 #include <string.h>
24
25 #include "gl_array_oset.h"
26 #include "progname.h"
27 #include "macros.h"
28
29 extern void gl_rbtree_oset_check_invariants (gl_oset_t set);
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 RANDOM(n) (rand () % (n))
38 #define RANDOM_OBJECT() objects[RANDOM (SIZEOF (objects))]
39
40 static void
41 check_equals (gl_oset_t set1, gl_oset_t set2)
42 {
43   size_t n = gl_oset_size (set1);
44   gl_oset_iterator_t iter1, iter2;
45   const void *elt1;
46   const void *elt2;
47   size_t i;
48
49   iter1 = gl_oset_iterator (set1);
50   iter2 = gl_oset_iterator (set2);
51   for (i = 0; i < n; i++)
52     {
53       ASSERT (gl_oset_iterator_next (&iter1, &elt1));
54       ASSERT (gl_oset_iterator_next (&iter2, &elt2));
55       ASSERT (elt1 == elt2);
56     }
57   ASSERT (!gl_oset_iterator_next (&iter1, &elt1));
58   ASSERT (!gl_oset_iterator_next (&iter2, &elt2));
59   gl_oset_iterator_free (&iter1);
60   gl_oset_iterator_free (&iter2);
61 }
62
63 static void
64 check_all (gl_oset_t set1, gl_oset_t set2)
65 {
66   gl_rbtree_oset_check_invariants (set2);
67   check_equals (set1, set2);
68 }
69
70 int
71 main (int argc, char *argv[])
72 {
73   gl_oset_t set1, set2;
74
75   set_program_name (argv[0]);
76
77   /* Allow the user to provide a non-default random seed on the command line.  */
78   if (argc > 1)
79     srand (atoi (argv[1]));
80
81   {
82     size_t initial_size = RANDOM (20);
83     size_t i;
84     unsigned int repeat;
85
86     /* Create set1.  */
87     set1 = gl_oset_nx_create_empty (GL_ARRAY_OSET, (gl_setelement_compar_fn) strcmp, NULL);
88     ASSERT (set1 != NULL);
89
90     /* Create set2.  */
91     set2 = gl_oset_nx_create_empty (GL_RBTREE_OSET, (gl_setelement_compar_fn) strcmp, NULL);
92     ASSERT (set2 != NULL);
93
94     check_all (set1, set2);
95
96     /* Initialize them.  */
97     for (i = 0; i < initial_size; i++)
98       {
99         const char *obj = RANDOM_OBJECT ();
100         ASSERT (gl_oset_nx_add (set1, obj) == gl_oset_nx_add (set2, obj));
101         check_all (set1, set2);
102       }
103
104     for (repeat = 0; repeat < 100000; repeat++)
105       {
106         unsigned int operation = RANDOM (3);
107         switch (operation)
108           {
109           case 0:
110             {
111               const char *obj = RANDOM_OBJECT ();
112               ASSERT (gl_oset_search (set1, obj) == gl_oset_search (set2, obj));
113             }
114             break;
115           case 1:
116             {
117               const char *obj = RANDOM_OBJECT ();
118               ASSERT (gl_oset_nx_add (set1, obj) == gl_oset_nx_add (set2, obj));
119             }
120             break;
121           case 2:
122             {
123               const char *obj = RANDOM_OBJECT ();
124               ASSERT (gl_oset_remove (set1, obj) == gl_oset_remove (set2, obj));
125             }
126             break;
127           }
128         check_all (set1, set2);
129       }
130
131     gl_oset_free (set1);
132     gl_oset_free (set2);
133   }
134
135   return 0;
136 }