2 * Copyright © 2012 Ran Benita <ran234@gmail.com>
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
31 #define INTERN_LITERAL(table, literal) \
32 atom_intern(table, literal, sizeof(literal) - 1, true)
34 #define LOOKUP_LITERAL(table, literal) \
35 atom_intern(table, literal, sizeof(literal) - 1, false)
38 random_string(char **str_out, size_t *len_out)
40 /* Keep this small, so collisions might happen. */
41 static const char random_chars[] = {
42 'a', 'b', 'c', 'd', 'e', 'f', 'g'
47 unsigned int seed = (unsigned int)time(NULL);
49 len = rand_r(&seed) % 15;
50 str = malloc(len + 1);
53 for (size_t i = 0; i < len; i++)
54 str[i] = random_chars[rand_r(&seed) % ARRAY_SIZE(random_chars)];
55 /* Don't always terminate it; should work without. */
56 if (rand_r(&seed) % 2 == 0)
64 test_random_strings(void)
72 struct atom_table *table;
73 struct atom_string *arr;
78 table = atom_table_new();
81 unsigned seed = (unsigned) clock();
84 N = 1 + rand_r(&seed) % 100000;
85 arr = calloc(N, sizeof(*arr));
88 for (int i = 0; i < N; i++) {
89 random_string(&arr[i].string, &arr[i].len);
91 atom = atom_intern(table, arr[i].string, arr[i].len, false);
92 if (atom != XKB_ATOM_NONE) {
93 string = atom_text(table, atom);
96 if (arr[i].len != strlen(string) ||
97 strncmp(string, arr[i].string, arr[i].len) != 0) {
98 fprintf(stderr, "got a collision, but strings don't match!\n");
99 fprintf(stderr, "existing length %zu, string %s\n",
100 strlen(string), string);
101 fprintf(stderr, "new length %zu, string %.*s\n",
102 arr[i].len, (int) arr[i].len, arr[i].string);
103 fprintf(stderr, "seed: %u\n", seed);
107 /* OK, got a real collision. */
113 arr[i].atom = atom_intern(table, arr[i].string, arr[i].len, true);
114 if (arr[i].atom == XKB_ATOM_NONE) {
115 fprintf(stderr, "failed to intern! len: %zu, string: %.*s\n",
116 arr[i].len, (int) arr[i].len, arr[i].string);
117 fprintf(stderr, "seed: %u\n", seed);
122 for (int i = 0; i < N; i++) {
123 string = atom_text(table, arr[i].atom);
126 if (arr[i].len != strlen(string) ||
127 strncmp(string, arr[i].string, arr[i].len) != 0) {
128 fprintf(stderr, "looked-up string doesn't match!\n");
129 fprintf(stderr, "found length %zu, string %s\n",
130 strlen(string), string);
131 fprintf(stderr, "expected length %zu, string %.*s\n",
132 arr[i].len, (int) arr[i].len, arr[i].string);
134 /* Since this is random, we need to dump the failing data,
135 * so we might have some chance to reproduce. */
136 fprintf(stderr, "START dump of arr, N=%d\n", N);
137 for (int j = 0; j < N; j++) {
138 fprintf(stderr, "%u\t\t%zu\t\t%.*s\n", arr[i].atom,
139 arr[i].len, (int) arr[i].len, arr[i].string);
141 fprintf(stderr, "END\n");
143 fprintf(stderr, "seed: %u\n", seed);
148 for (int i = 0; i < N; i++)
151 atom_table_free(table);
157 struct atom_table *table;
158 xkb_atom_t atom1, atom2, atom3;
160 table = atom_table_new();
163 assert(atom_text(table, XKB_ATOM_NONE) == NULL);
164 assert(atom_intern(table, NULL, 0, false) == XKB_ATOM_NONE);
166 atom1 = INTERN_LITERAL(table, "hello");
167 assert(atom1 != XKB_ATOM_NONE);
168 assert(atom1 == LOOKUP_LITERAL(table, "hello"));
169 assert(streq(atom_text(table, atom1), "hello"));
171 atom2 = atom_intern(table, "hello", 3, true);
172 assert(atom2 != XKB_ATOM_NONE);
173 assert(atom1 != atom2);
174 assert(streq(atom_text(table, atom2), "hel"));
175 assert(LOOKUP_LITERAL(table, "hel") == atom2);
176 assert(LOOKUP_LITERAL(table, "hell") == XKB_ATOM_NONE);
177 assert(LOOKUP_LITERAL(table, "hello") == atom1);
179 atom3 = atom_intern(table, "", 0, true);
180 assert(atom3 != XKB_ATOM_NONE);
181 assert(LOOKUP_LITERAL(table, "") == atom3);
183 atom_table_free(table);
185 test_random_strings();