1 /* Test of set data type implementation.
2 Copyright (C) 2006-2024 Free Software Foundation, Inc.
3 Written by Bruno Haible <bruno@clisp.org>, 2018.
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.
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.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <https://www.gnu.org/licenses/>. */
20 #include "gl_linkedhash_set.h"
25 #include "gl_array_set.h"
29 static const char *objects
[30] =
31 "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o",
32 "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "<", ">", "[", "]"
35 #define RANDOM(n) (rand () % (n))
36 #define RANDOM_OBJECT() objects[RANDOM (SIZEOF (objects))]
39 cmp_objects_in_array (const void *objptr1
, const void *objptr2
)
41 const void *obj1
= *(const void * const *)objptr1
;
42 const void *obj2
= *(const void * const *)objptr2
;
43 return strcmp ((const char *) obj1
, (const char *) obj2
);
47 check_equals (gl_set_t set1
, gl_set_t set2
)
49 size_t n
= gl_set_size (set1
);
50 const void **elements_of_set1
= XNMALLOC (n
, const void *);
51 const void **elements_of_set2
= XNMALLOC (n
, const void *);
53 gl_set_iterator_t iter1
;
54 gl_set_iterator_t iter2
;
59 iter1
= gl_set_iterator (set1
);
60 iter2
= gl_set_iterator (set2
);
61 for (i
= 0; i
< n
; i
++)
63 ASSERT (gl_set_iterator_next (&iter1
, &elt1
));
64 ASSERT (gl_set_iterator_next (&iter2
, &elt2
));
65 elements_of_set1
[i
] = elt1
;
66 elements_of_set2
[i
] = elt2
;
68 ASSERT (!gl_set_iterator_next (&iter1
, &elt1
));
69 ASSERT (!gl_set_iterator_next (&iter2
, &elt2
));
70 gl_set_iterator_free (&iter1
);
71 gl_set_iterator_free (&iter2
);
75 qsort (elements_of_set1
, n
, sizeof (const void *), cmp_objects_in_array
);
76 qsort (elements_of_set2
, n
, sizeof (const void *), cmp_objects_in_array
);
78 for (i
= 0; i
< n
; i
++)
79 ASSERT (elements_of_set1
[i
] == elements_of_set2
[i
]);
80 free (elements_of_set2
);
81 free (elements_of_set1
);
85 check_all (gl_set_t set1
, gl_set_t set2
)
87 check_equals (set1
, set2
);
91 string_equals (const void *elt1
, const void *elt2
)
93 return strcmp ((const char *) elt1
, (const char *) elt2
) == 0;
97 string_hashcode (const void *elt
)
101 for (s
= (const char *) elt
; *s
!= '\0'; s
++)
102 hashcode
+= (unsigned char) *s
;
107 main (int argc
, char *argv
[])
111 /* Allow the user to provide a non-default random seed on the command line. */
113 srand (atoi (argv
[1]));
116 size_t initial_size
= RANDOM (20);
121 set1
= gl_set_nx_create_empty (GL_ARRAY_SET
, string_equals
, string_hashcode
, NULL
);
122 ASSERT (set1
!= NULL
);
125 set2
= gl_set_nx_create_empty (GL_LINKEDHASH_SET
, string_equals
, string_hashcode
, NULL
);
126 ASSERT (set2
!= NULL
);
128 check_all (set1
, set2
);
130 /* Initialize them. */
131 for (i
= 0; i
< initial_size
; i
++)
133 const char *obj
= RANDOM_OBJECT ();
134 ASSERT (gl_set_nx_add (set1
, obj
) == gl_set_nx_add (set2
, obj
));
135 check_all (set1
, set2
);
138 for (repeat
= 0; repeat
< 100000; repeat
++)
140 unsigned int operation
= RANDOM (3);
145 const char *obj
= RANDOM_OBJECT ();
146 ASSERT (gl_set_search (set1
, obj
) == gl_set_search (set2
, obj
));
151 const char *obj
= RANDOM_OBJECT ();
152 ASSERT (gl_set_nx_add (set1
, obj
) == gl_set_nx_add (set2
, obj
));
157 const char *obj
= RANDOM_OBJECT ();
158 ASSERT (gl_set_remove (set1
, obj
) == gl_set_remove (set2
, obj
));
162 check_all (set1
, set2
);
169 return test_exit_status
;