chiark / gitweb /
tests: add tests for {hashmap,set}_steal_first
[elogind.git] / src / test / test-hashmap.c
1 /***
2   This file is part of systemd
3
4   Copyright 2013 Daniel Buch
5
6   systemd is free software; you can redistribute it and/or modify it
7   under the terms of the GNU Lesser General Public License as published by
8   the Free Software Foundation; either version 2.1 of the License, or
9   (at your option) any later version.
10
11   systemd is distributed in the hope that it will be useful, but
12   WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14   Lesser General Public License for more details.
15
16   You should have received a copy of the GNU Lesser General Public License
17   along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include <inttypes.h>
21 #include "strv.h"
22 #include "util.h"
23 #include "hashmap.h"
24
25 static void test_hashmap_replace(void) {
26         Hashmap *m;
27         char *val1, *val2, *val3, *val4, *val5, *r;
28
29         m = hashmap_new(&string_hash_ops);
30
31         val1 = strdup("val1");
32         assert_se(val1);
33         val2 = strdup("val2");
34         assert_se(val2);
35         val3 = strdup("val3");
36         assert_se(val3);
37         val4 = strdup("val4");
38         assert_se(val4);
39         val5 = strdup("val5");
40         assert_se(val5);
41
42         hashmap_put(m, "key 1", val1);
43         hashmap_put(m, "key 2", val2);
44         hashmap_put(m, "key 3", val3);
45         hashmap_put(m, "key 4", val4);
46
47         hashmap_replace(m, "key 3", val1);
48         r = hashmap_get(m, "key 3");
49         assert_se(streq(r, "val1"));
50
51         hashmap_replace(m, "key 5", val5);
52         r = hashmap_get(m, "key 5");
53         assert_se(streq(r, "val5"));
54
55         free(val1);
56         free(val2);
57         free(val3);
58         free(val4);
59         free(val5);
60         hashmap_free(m);
61 }
62
63 static void test_hashmap_copy(void) {
64         Hashmap *m, *copy;
65         char *val1, *val2, *val3, *val4, *r;
66
67         val1 = strdup("val1");
68         assert_se(val1);
69         val2 = strdup("val2");
70         assert_se(val2);
71         val3 = strdup("val3");
72         assert_se(val3);
73         val4 = strdup("val4");
74         assert_se(val4);
75
76         m = hashmap_new(&string_hash_ops);
77
78         hashmap_put(m, "key 1", val1);
79         hashmap_put(m, "key 2", val2);
80         hashmap_put(m, "key 3", val3);
81         hashmap_put(m, "key 4", val4);
82
83         copy = hashmap_copy(m);
84
85         r = hashmap_get(copy, "key 1");
86         assert_se(streq(r, "val1"));
87         r = hashmap_get(copy, "key 2");
88         assert_se(streq(r, "val2"));
89         r = hashmap_get(copy, "key 3");
90         assert_se(streq(r, "val3"));
91         r = hashmap_get(copy, "key 4");
92         assert_se(streq(r, "val4"));
93
94         hashmap_free_free(copy);
95         hashmap_free(m);
96 }
97
98 static void test_hashmap_get_strv(void) {
99         Hashmap *m;
100         char **strv;
101         char *val1, *val2, *val3, *val4;
102
103         val1 = strdup("val1");
104         assert_se(val1);
105         val2 = strdup("val2");
106         assert_se(val2);
107         val3 = strdup("val3");
108         assert_se(val3);
109         val4 = strdup("val4");
110         assert_se(val4);
111
112         m = hashmap_new(&string_hash_ops);
113
114         hashmap_put(m, "key 1", val1);
115         hashmap_put(m, "key 2", val2);
116         hashmap_put(m, "key 3", val3);
117         hashmap_put(m, "key 4", val4);
118
119         strv = hashmap_get_strv(m);
120
121         assert_se(streq(strv[0], "val1"));
122         assert_se(streq(strv[1], "val2"));
123         assert_se(streq(strv[2], "val3"));
124         assert_se(streq(strv[3], "val4"));
125
126         strv_free(strv);
127
128         hashmap_free(m);
129 }
130
131 static void test_hashmap_move_one(void) {
132         Hashmap *m, *n;
133         char *val1, *val2, *val3, *val4, *r;
134
135         val1 = strdup("val1");
136         assert_se(val1);
137         val2 = strdup("val2");
138         assert_se(val2);
139         val3 = strdup("val3");
140         assert_se(val3);
141         val4 = strdup("val4");
142         assert_se(val4);
143
144         m = hashmap_new(&string_hash_ops);
145         n = hashmap_new(&string_hash_ops);
146
147         hashmap_put(m, "key 1", val1);
148         hashmap_put(m, "key 2", val2);
149         hashmap_put(m, "key 3", val3);
150         hashmap_put(m, "key 4", val4);
151
152         hashmap_move_one(n, m, "key 3");
153         hashmap_move_one(n, m, "key 4");
154
155         r = hashmap_get(n, "key 3");
156         assert_se(r && streq(r, "val3"));
157         r = hashmap_get(n, "key 4");
158         assert_se(r && streq(r, "val4"));
159         r = hashmap_get(m, "key 3");
160         assert_se(!r);
161
162
163         hashmap_free_free(m);
164         hashmap_free_free(n);
165 }
166
167 static void test_hashmap_next(void) {
168         Hashmap *m;
169         char *val1, *val2, *val3, *val4, *r;
170
171         m = hashmap_new(&string_hash_ops);
172         val1 = strdup("val1");
173         assert_se(val1);
174         val2 = strdup("val2");
175         assert_se(val2);
176         val3 = strdup("val3");
177         assert_se(val3);
178         val4 = strdup("val4");
179         assert_se(val4);
180
181         hashmap_put(m, "key 1", val1);
182         hashmap_put(m, "key 2", val2);
183         hashmap_put(m, "key 3", val3);
184         hashmap_put(m, "key 4", val4);
185
186         r = hashmap_next(m, "key 1");
187         assert_se(streq(r, val2));
188         r = hashmap_next(m, "key 2");
189         assert_se(streq(r, val3));
190         r = hashmap_next(m, "key 3");
191         assert_se(streq(r, val4));
192         r = hashmap_next(m, "key 4");
193         assert_se(!r);
194
195         hashmap_free_free(m);
196 }
197
198 static void test_hashmap_update(void) {
199         Hashmap *m;
200         char *val1, *val2, *r;
201
202         m = hashmap_new(&string_hash_ops);
203         val1 = strdup("old_value");
204         assert_se(val1);
205         val2 = strdup("new_value");
206         assert_se(val2);
207
208         hashmap_put(m, "key 1", val1);
209         r = hashmap_get(m, "key 1");
210         assert_se(streq(r, "old_value"));
211
212         hashmap_update(m, "key 1", val2);
213         r = hashmap_get(m, "key 1");
214         assert_se(streq(r, "new_value"));
215
216         free(val1);
217         free(val2);
218         hashmap_free(m);
219 }
220
221 static void test_hashmap_put(void) {
222         Hashmap *m;
223         int valid_hashmap_put;
224
225         m = hashmap_new(&string_hash_ops);
226
227         valid_hashmap_put = hashmap_put(m, "key 1", (void*) (const char *) "val 1");
228         assert_se(valid_hashmap_put == 1);
229
230         assert_se(m);
231         hashmap_free(m);
232 }
233
234 static void test_hashmap_remove_and_put(void) {
235         _cleanup_hashmap_free_ Hashmap *m = NULL;
236         int valid;
237         char *r;
238
239         m = hashmap_new(&string_hash_ops);
240         assert_se(m);
241
242         valid = hashmap_remove_and_put(m, "unvalid key", "new key", NULL);
243         assert_se(valid < 0);
244
245         valid = hashmap_put(m, "key 1", (void*) (const char *) "val 1");
246         assert_se(valid == 1);
247         valid = hashmap_remove_and_put(m, "key 1", "key 2", (void*) (const char *) "val 2");
248         assert_se(valid == 0);
249
250         r = hashmap_get(m, "key 2");
251         assert_se(streq(r, "val 2"));
252         assert_se(!hashmap_get(m, "key 1"));
253
254         valid = hashmap_put(m, "key 3", (void*) (const char *) "val 3");
255         assert_se(valid == 1);
256         valid = hashmap_remove_and_put(m, "key 3", "key 2", (void*) (const char *) "val 2");
257         assert_se(valid < 0);
258 }
259
260 static void test_hashmap_ensure_allocated(void) {
261         Hashmap *m;
262         int valid_hashmap;
263
264         m = hashmap_new(&string_hash_ops);
265
266         valid_hashmap = hashmap_ensure_allocated(&m, &string_hash_ops);
267         assert_se(valid_hashmap == 0);
268
269         assert_se(m);
270         hashmap_free(m);
271 }
272
273 static void test_hashmap_foreach_key(void) {
274         Hashmap *m;
275         Iterator i;
276         bool key_found[] = { false, false, false, false };
277         const char *s;
278         const char *key;
279         static const char key_table[] =
280                 "key 1\0"
281                 "key 2\0"
282                 "key 3\0"
283                 "key 4\0";
284
285         m = hashmap_new(&string_hash_ops);
286
287         NULSTR_FOREACH(key, key_table)
288                 hashmap_put(m, key, (void*) (const char*) "my dummy val");
289
290         HASHMAP_FOREACH_KEY(s, key, m, i) {
291                 if (!key_found[0] && streq(key, "key 1"))
292                         key_found[0] = true;
293                 else if (!key_found[1] && streq(key, "key 2"))
294                         key_found[1] = true;
295                 else if (!key_found[2] && streq(key, "key 3"))
296                         key_found[2] = true;
297                 else if (!key_found[3] && streq(key, "fail"))
298                         key_found[3] = true;
299         }
300
301         assert_se(m);
302         assert_se(key_found[0] && key_found[1] && key_found[2] && !key_found[3]);
303
304         hashmap_free(m);
305 }
306
307 static void test_hashmap_foreach(void) {
308         Hashmap *m;
309         Iterator i;
310         bool value_found[] = { false, false, false, false };
311         char *val1, *val2, *val3, *val4, *s;
312
313         val1 = strdup("my val1");
314         assert_se(val1);
315         val2 = strdup("my val2");
316         assert_se(val2);
317         val3 = strdup("my val3");
318         assert_se(val3);
319         val4 = strdup("my val4");
320         assert_se(val4);
321
322         m = hashmap_new(&string_hash_ops);
323
324         hashmap_put(m, "Key 1", val1);
325         hashmap_put(m, "Key 2", val2);
326         hashmap_put(m, "Key 3", val3);
327         hashmap_put(m, "Key 4", val4);
328
329         HASHMAP_FOREACH(s, m, i) {
330                 if (!value_found[0] && streq(s, val1))
331                         value_found[0] = true;
332                 else if (!value_found[1] && streq(s, val2))
333                         value_found[1] = true;
334                 else if (!value_found[2] && streq(s, val3))
335                         value_found[2] = true;
336                 else if (!value_found[3] && streq(s, val4))
337                         value_found[3] = true;
338         }
339
340         assert_se(m);
341         assert_se(value_found[0] && value_found[1] && value_found[2] && value_found[3]);
342
343         hashmap_free_free(m);
344 }
345
346 static void test_hashmap_merge(void) {
347         Hashmap *m;
348         Hashmap *n;
349         char *val1, *val2, *val3, *val4, *r;
350
351         val1 = strdup("my val1");
352         assert_se(val1);
353         val2 = strdup("my val2");
354         assert_se(val2);
355         val3 = strdup("my val3");
356         assert_se(val3);
357         val4 = strdup("my val4");
358         assert_se(val4);
359
360         n = hashmap_new(&string_hash_ops);
361         m = hashmap_new(&string_hash_ops);
362
363         hashmap_put(m, "Key 1", val1);
364         hashmap_put(m, "Key 2", val2);
365         hashmap_put(n, "Key 3", val3);
366         hashmap_put(n, "Key 4", val4);
367
368         assert_se(hashmap_merge(m, n) == 0);
369         r = hashmap_get(m, "Key 3");
370         assert_se(r && streq(r, "my val3"));
371         r = hashmap_get(m, "Key 4");
372         assert_se(r && streq(r, "my val4"));
373
374         assert_se(n);
375         assert_se(m);
376         hashmap_free(n);
377         hashmap_free_free(m);
378 }
379
380 static void test_hashmap_contains(void) {
381         Hashmap *m;
382         char *val1;
383
384         val1 = strdup("my val");
385         assert_se(val1);
386
387         m = hashmap_new(&string_hash_ops);
388
389         assert_se(!hashmap_contains(m, "Key 1"));
390         hashmap_put(m, "Key 1", val1);
391         assert_se(hashmap_contains(m, "Key 1"));
392
393         assert_se(m);
394         hashmap_free_free(m);
395 }
396
397 static void test_hashmap_isempty(void) {
398         Hashmap *m;
399         char *val1;
400
401         val1 = strdup("my val");
402         assert_se(val1);
403
404         m = hashmap_new(&string_hash_ops);
405
406         assert_se(hashmap_isempty(m));
407         hashmap_put(m, "Key 1", val1);
408         assert_se(!hashmap_isempty(m));
409
410         assert_se(m);
411         hashmap_free_free(m);
412 }
413
414 static void test_hashmap_size(void) {
415         Hashmap *m;
416         char *val1, *val2, *val3, *val4;
417
418         val1 = strdup("my val");
419         assert_se(val1);
420         val2 = strdup("my val");
421         assert_se(val2);
422         val3 = strdup("my val");
423         assert_se(val3);
424         val4 = strdup("my val");
425         assert_se(val4);
426
427         m = hashmap_new(&string_hash_ops);
428
429         hashmap_put(m, "Key 1", val1);
430         hashmap_put(m, "Key 2", val2);
431         hashmap_put(m, "Key 3", val3);
432         hashmap_put(m, "Key 4", val4);
433
434         assert_se(m);
435         assert_se(hashmap_size(m) == 4);
436         hashmap_free_free(m);
437 }
438
439 static void test_hashmap_get(void) {
440         Hashmap *m;
441         char *r;
442         char *val;
443
444         val = strdup("my val");
445         assert_se(val);
446
447         m = hashmap_new(&string_hash_ops);
448
449         hashmap_put(m, "Key 1", val);
450
451         r = hashmap_get(m, "Key 1");
452         assert_se(streq(r, val));
453
454         assert_se(m);
455         hashmap_free_free(m);
456 }
457
458 static void test_hashmap_many(void) {
459         Hashmap *h;
460         unsigned i;
461
462 #define N_ENTRIES 100000
463
464         assert_se(h = hashmap_new(NULL));
465
466         for (i = 1; i < N_ENTRIES*3; i+=3) {
467                 assert_se(hashmap_put(h, UINT_TO_PTR(i), UINT_TO_PTR(i)) >= 0);
468                 assert_se(PTR_TO_UINT(hashmap_get(h, UINT_TO_PTR(i))) == i);
469         }
470
471         for (i = 1; i < N_ENTRIES*3; i++)
472                 assert_se(hashmap_contains(h, UINT_TO_PTR(i)) == (i % 3 == 1));
473
474         log_info("%u <= %u * 0.75 = %g", hashmap_size(h), hashmap_buckets(h), hashmap_buckets(h) * 0.75);
475
476         assert_se(hashmap_size(h) <= hashmap_buckets(h) * 0.75);
477         assert_se(hashmap_size(h) == N_ENTRIES);
478
479         hashmap_free(h);
480 }
481
482 static void test_hashmap_first_key(void) {
483         _cleanup_hashmap_free_ Hashmap *m = NULL;
484
485         m = hashmap_new(&string_hash_ops);
486         assert_se(m);
487
488         assert_se(!hashmap_first_key(m));
489         assert_se(hashmap_put(m, "key 1", NULL) == 1);
490         assert_se(streq(hashmap_first_key(m), "key 1"));
491         assert_se(hashmap_put(m, "key 2", NULL) == 1);
492         assert_se(streq(hashmap_first_key(m), "key 1"));
493         assert_se(hashmap_remove(m, "key 1") == NULL);
494         assert_se(streq(hashmap_first_key(m), "key 2"));
495 }
496
497 static void test_hashmap_steal_first_key(void) {
498         _cleanup_hashmap_free_ Hashmap *m = NULL;
499
500         m = hashmap_new(&string_hash_ops);
501         assert_se(m);
502
503         assert_se(!hashmap_steal_first_key(m));
504         assert_se(hashmap_put(m, "key 1", NULL) == 1);
505         assert_se(streq(hashmap_steal_first_key(m), "key 1"));
506
507         assert_se(hashmap_isempty(m));
508 }
509
510 static void test_hashmap_steal_first(void) {
511         _cleanup_hashmap_free_ Hashmap *m = NULL;
512         int seen[3] = {};
513         char *val;
514
515         m = hashmap_new(&string_hash_ops);
516         assert_se(m);
517
518         assert_se(hashmap_put(m, "key 1", (void*) "1") == 1);
519         assert_se(hashmap_put(m, "key 2", (void*) "22") == 1);
520         assert_se(hashmap_put(m, "key 3", (void*) "333") == 1);
521
522         while ((val = hashmap_steal_first(m)))
523                 seen[strlen(val) - 1]++;
524
525         assert(seen[0] == 1 && seen[1] == 1 && seen[2] == 1);
526
527         assert_se(hashmap_isempty(m));
528 }
529
530 static void test_hashmap_clear_free_free(void) {
531         _cleanup_hashmap_free_ Hashmap *m = NULL;
532
533         m = hashmap_new(&string_hash_ops);
534         assert_se(m);
535
536         assert_se(hashmap_put(m, strdup("key 1"), NULL) == 1);
537         assert_se(hashmap_put(m, strdup("key 2"), NULL) == 1);
538         assert_se(hashmap_put(m, strdup("key 3"), NULL) == 1);
539
540         hashmap_clear_free_free(m);
541         assert_se(hashmap_isempty(m));
542 }
543
544 static void test_uint64_compare_func(void) {
545         const uint64_t a = 0x100, b = 0x101;
546
547         assert_se(uint64_compare_func(&a, &a) == 0);
548         assert_se(uint64_compare_func(&a, &b) == -1);
549         assert_se(uint64_compare_func(&b, &a) == 1);
550 }
551
552 static void test_trivial_compare_func(void) {
553         assert_se(trivial_compare_func(INT_TO_PTR('a'), INT_TO_PTR('a')) == 0);
554         assert_se(trivial_compare_func(INT_TO_PTR('a'), INT_TO_PTR('b')) == -1);
555         assert_se(trivial_compare_func(INT_TO_PTR('b'), INT_TO_PTR('a')) == 1);
556 }
557
558 static void test_string_compare_func(void) {
559         assert_se(!string_compare_func("fred", "wilma") == 0);
560         assert_se(string_compare_func("fred", "fred") == 0);
561 }
562
563 int main(int argc, const char *argv[]) {
564         test_hashmap_copy();
565         test_hashmap_get_strv();
566         test_hashmap_move_one();
567         test_hashmap_next();
568         test_hashmap_replace();
569         test_hashmap_update();
570         test_hashmap_put();
571         test_hashmap_remove_and_put();
572         test_hashmap_ensure_allocated();
573         test_hashmap_foreach();
574         test_hashmap_foreach_key();
575         test_hashmap_contains();
576         test_hashmap_merge();
577         test_hashmap_isempty();
578         test_hashmap_get();
579         test_hashmap_size();
580         test_hashmap_many();
581         test_hashmap_first_key();
582         test_hashmap_steal_first_key();
583         test_hashmap_steal_first();
584         test_hashmap_clear_free_free();
585         test_uint64_compare_func();
586         test_trivial_compare_func();
587         test_string_compare_func();
588 }