chiark / gitweb /
rules: simplify mmc RPMB handling
[elogind.git] / src / test / test-hashmap-plain.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 "strv.h"
21 #include "util.h"
22 #include "hashmap.h"
23
24 void test_hashmap_funcs(void);
25
26 static void test_hashmap_replace(void) {
27         Hashmap *m;
28         char *val1, *val2, *val3, *val4, *val5, *r;
29
30         m = hashmap_new(&string_hash_ops);
31
32         val1 = strdup("val1");
33         assert_se(val1);
34         val2 = strdup("val2");
35         assert_se(val2);
36         val3 = strdup("val3");
37         assert_se(val3);
38         val4 = strdup("val4");
39         assert_se(val4);
40         val5 = strdup("val5");
41         assert_se(val5);
42
43         hashmap_put(m, "key 1", val1);
44         hashmap_put(m, "key 2", val2);
45         hashmap_put(m, "key 3", val3);
46         hashmap_put(m, "key 4", val4);
47
48         hashmap_replace(m, "key 3", val1);
49         r = hashmap_get(m, "key 3");
50         assert_se(streq(r, "val1"));
51
52         hashmap_replace(m, "key 5", val5);
53         r = hashmap_get(m, "key 5");
54         assert_se(streq(r, "val5"));
55
56         free(val1);
57         free(val2);
58         free(val3);
59         free(val4);
60         free(val5);
61         hashmap_free(m);
62 }
63
64 static void test_hashmap_copy(void) {
65         Hashmap *m, *copy;
66         char *val1, *val2, *val3, *val4, *r;
67
68         val1 = strdup("val1");
69         assert_se(val1);
70         val2 = strdup("val2");
71         assert_se(val2);
72         val3 = strdup("val3");
73         assert_se(val3);
74         val4 = strdup("val4");
75         assert_se(val4);
76
77         m = hashmap_new(&string_hash_ops);
78
79         hashmap_put(m, "key 1", val1);
80         hashmap_put(m, "key 2", val2);
81         hashmap_put(m, "key 3", val3);
82         hashmap_put(m, "key 4", val4);
83
84         copy = hashmap_copy(m);
85
86         r = hashmap_get(copy, "key 1");
87         assert_se(streq(r, "val1"));
88         r = hashmap_get(copy, "key 2");
89         assert_se(streq(r, "val2"));
90         r = hashmap_get(copy, "key 3");
91         assert_se(streq(r, "val3"));
92         r = hashmap_get(copy, "key 4");
93         assert_se(streq(r, "val4"));
94
95         hashmap_free_free(copy);
96         hashmap_free(m);
97 }
98
99 static void test_hashmap_get_strv(void) {
100         Hashmap *m;
101         char **strv;
102         char *val1, *val2, *val3, *val4;
103
104         val1 = strdup("val1");
105         assert_se(val1);
106         val2 = strdup("val2");
107         assert_se(val2);
108         val3 = strdup("val3");
109         assert_se(val3);
110         val4 = strdup("val4");
111         assert_se(val4);
112
113         m = hashmap_new(&string_hash_ops);
114
115         hashmap_put(m, "key 1", val1);
116         hashmap_put(m, "key 2", val2);
117         hashmap_put(m, "key 3", val3);
118         hashmap_put(m, "key 4", val4);
119
120         strv = hashmap_get_strv(m);
121
122 #ifndef ORDERED
123         strv = strv_sort(strv);
124 #endif
125
126         assert_se(streq(strv[0], "val1"));
127         assert_se(streq(strv[1], "val2"));
128         assert_se(streq(strv[2], "val3"));
129         assert_se(streq(strv[3], "val4"));
130
131         strv_free(strv);
132
133         hashmap_free(m);
134 }
135
136 static void test_hashmap_move_one(void) {
137         Hashmap *m, *n;
138         char *val1, *val2, *val3, *val4, *r;
139
140         val1 = strdup("val1");
141         assert_se(val1);
142         val2 = strdup("val2");
143         assert_se(val2);
144         val3 = strdup("val3");
145         assert_se(val3);
146         val4 = strdup("val4");
147         assert_se(val4);
148
149         m = hashmap_new(&string_hash_ops);
150         n = hashmap_new(&string_hash_ops);
151
152         hashmap_put(m, "key 1", val1);
153         hashmap_put(m, "key 2", val2);
154         hashmap_put(m, "key 3", val3);
155         hashmap_put(m, "key 4", val4);
156
157         assert_se(hashmap_move_one(n, NULL, "key 3") == -ENOENT);
158         assert_se(hashmap_move_one(n, m, "key 5") == -ENOENT);
159         assert_se(hashmap_move_one(n, m, "key 3") == 0);
160         assert_se(hashmap_move_one(n, m, "key 4") == 0);
161
162         r = hashmap_get(n, "key 3");
163         assert_se(r && streq(r, "val3"));
164         r = hashmap_get(n, "key 4");
165         assert_se(r && streq(r, "val4"));
166         r = hashmap_get(m, "key 3");
167         assert_se(!r);
168
169         assert_se(hashmap_move_one(n, m, "key 3") == -EEXIST);
170
171         hashmap_free_free(m);
172         hashmap_free_free(n);
173 }
174
175 static void test_hashmap_move(void) {
176         Hashmap *m, *n;
177         char *val1, *val2, *val3, *val4, *r;
178
179         val1 = strdup("val1");
180         assert_se(val1);
181         val2 = strdup("val2");
182         assert_se(val2);
183         val3 = strdup("val3");
184         assert_se(val3);
185         val4 = strdup("val4");
186         assert_se(val4);
187
188         m = hashmap_new(&string_hash_ops);
189         n = hashmap_new(&string_hash_ops);
190
191         hashmap_put(n, "key 1", strdup(val1));
192         hashmap_put(m, "key 1", val1);
193         hashmap_put(m, "key 2", val2);
194         hashmap_put(m, "key 3", val3);
195         hashmap_put(m, "key 4", val4);
196
197         assert_se(hashmap_move(n, NULL) == 0);
198         assert_se(hashmap_move(n, m) == 0);
199
200         assert_se(hashmap_size(m) == 1);
201         r = hashmap_get(m, "key 1");
202         assert_se(r && streq(r, "val1"));
203
204         r = hashmap_get(n, "key 1");
205         assert_se(r && streq(r, "val1"));
206         r = hashmap_get(n, "key 2");
207         assert_se(r && streq(r, "val2"));
208         r = hashmap_get(n, "key 3");
209         assert_se(r && streq(r, "val3"));
210         r = hashmap_get(n, "key 4");
211         assert_se(r && streq(r, "val4"));
212
213         hashmap_free_free(m);
214         hashmap_free_free(n);
215 }
216
217 static void test_hashmap_update(void) {
218         Hashmap *m;
219         char *val1, *val2, *r;
220
221         m = hashmap_new(&string_hash_ops);
222         val1 = strdup("old_value");
223         assert_se(val1);
224         val2 = strdup("new_value");
225         assert_se(val2);
226
227         hashmap_put(m, "key 1", val1);
228         r = hashmap_get(m, "key 1");
229         assert_se(streq(r, "old_value"));
230
231         assert_se(hashmap_update(m, "key 2", val2) == -ENOENT);
232         r = hashmap_get(m, "key 1");
233         assert_se(streq(r, "old_value"));
234
235         assert_se(hashmap_update(m, "key 1", val2) == 0);
236         r = hashmap_get(m, "key 1");
237         assert_se(streq(r, "new_value"));
238
239         free(val1);
240         free(val2);
241         hashmap_free(m);
242 }
243
244 static void test_hashmap_put(void) {
245         Hashmap *m = NULL;
246         int valid_hashmap_put;
247         void *val1 = (void*) "val 1";
248         void *val2 = (void*) "val 2";
249         _cleanup_free_ char* key1 = NULL;
250
251         assert_se(hashmap_ensure_allocated(&m, &string_hash_ops) >= 0);
252         assert_se(m);
253
254         valid_hashmap_put = hashmap_put(m, "key 1", val1);
255         assert_se(valid_hashmap_put == 1);
256         assert_se(hashmap_put(m, "key 1", val1) == 0);
257         assert_se(hashmap_put(m, "key 1", val2) == -EEXIST);
258         key1 = strdup("key 1");
259         assert_se(hashmap_put(m, key1, val1) == 0);
260         assert_se(hashmap_put(m, key1, val2) == -EEXIST);
261
262         hashmap_free(m);
263 }
264
265 static void test_hashmap_remove(void) {
266         _cleanup_hashmap_free_ Hashmap *m = NULL;
267         char *r;
268
269         r = hashmap_remove(NULL, "key 1");
270         assert_se(r == NULL);
271
272         m = hashmap_new(&string_hash_ops);
273         assert_se(m);
274
275         r = hashmap_remove(m, "no such key");
276         assert_se(r == NULL);
277
278         hashmap_put(m, "key 1", (void*) "val 1");
279         hashmap_put(m, "key 2", (void*) "val 2");
280
281         r = hashmap_remove(m, "key 1");
282         assert_se(streq(r, "val 1"));
283
284         r = hashmap_get(m, "key 2");
285         assert_se(streq(r, "val 2"));
286         assert_se(!hashmap_get(m, "key 1"));
287 }
288
289 static void test_hashmap_remove2(void) {
290         _cleanup_hashmap_free_free_free_ Hashmap *m = NULL;
291         char key1[] = "key 1";
292         char key2[] = "key 2";
293         char val1[] = "val 1";
294         char val2[] = "val 2";
295         void *r, *r2;
296
297         r = hashmap_remove2(NULL, "key 1", &r2);
298         assert_se(r == NULL);
299
300         m = hashmap_new(&string_hash_ops);
301         assert_se(m);
302
303         r = hashmap_remove2(m, "no such key", &r2);
304         assert_se(r == NULL);
305
306         hashmap_put(m, strdup(key1), strdup(val1));
307         hashmap_put(m, strdup(key2), strdup(val2));
308
309         r = hashmap_remove2(m, key1, &r2);
310         assert_se(streq(r, val1));
311         assert_se(streq(r2, key1));
312         free(r);
313         free(r2);
314
315         r = hashmap_get(m, key2);
316         assert_se(streq(r, val2));
317         assert_se(!hashmap_get(m, key1));
318 }
319
320 static void test_hashmap_remove_value(void) {
321         _cleanup_hashmap_free_ Hashmap *m = NULL;
322         char *r;
323
324         r = hashmap_remove_value(NULL, "key 1", (void*) "val 1");
325         assert_se(r == NULL);
326
327         m = hashmap_new(&string_hash_ops);
328         assert_se(m);
329
330         r = hashmap_remove_value(m, "key 1", (void*) "val 1");
331         assert_se(r == NULL);
332
333         hashmap_put(m, "key 1", (void*) "val 1");
334         hashmap_put(m, "key 2", (void*) "val 2");
335
336         r = hashmap_remove_value(m, "key 1", (void*) "val 1");
337         assert_se(streq(r, "val 1"));
338
339         r = hashmap_get(m, "key 2");
340         assert_se(streq(r, "val 2"));
341         assert_se(!hashmap_get(m, "key 1"));
342
343         r = hashmap_remove_value(m, "key 2", (void*) "val 1");
344         assert_se(r == NULL);
345
346         r = hashmap_get(m, "key 2");
347         assert_se(streq(r, "val 2"));
348         assert_se(!hashmap_get(m, "key 1"));
349 }
350
351 static void test_hashmap_remove_and_put(void) {
352         _cleanup_hashmap_free_ Hashmap *m = NULL;
353         int valid;
354         char *r;
355
356         m = hashmap_new(&string_hash_ops);
357         assert_se(m);
358
359         valid = hashmap_remove_and_put(m, "invalid key", "new key", NULL);
360         assert_se(valid == -ENOENT);
361
362         valid = hashmap_put(m, "key 1", (void*) (const char *) "val 1");
363         assert_se(valid == 1);
364
365         valid = hashmap_remove_and_put(NULL, "key 1", "key 2", (void*) (const char *) "val 2");
366         assert_se(valid == -ENOENT);
367
368         valid = hashmap_remove_and_put(m, "key 1", "key 2", (void*) (const char *) "val 2");
369         assert_se(valid == 0);
370
371         r = hashmap_get(m, "key 2");
372         assert_se(streq(r, "val 2"));
373         assert_se(!hashmap_get(m, "key 1"));
374
375         valid = hashmap_put(m, "key 3", (void*) (const char *) "val 3");
376         assert_se(valid == 1);
377         valid = hashmap_remove_and_put(m, "key 3", "key 2", (void*) (const char *) "val 2");
378         assert_se(valid == -EEXIST);
379 }
380
381 static void test_hashmap_remove_and_replace(void) {
382         _cleanup_hashmap_free_ Hashmap *m = NULL;
383         int valid;
384         void *key1 = UINT_TO_PTR(1);
385         void *key2 = UINT_TO_PTR(2);
386         void *key3 = UINT_TO_PTR(3);
387         void *r;
388         int i, j;
389
390         m = hashmap_new(&trivial_hash_ops);
391         assert_se(m);
392
393         valid = hashmap_remove_and_replace(m, key1, key2, NULL);
394         assert_se(valid == -ENOENT);
395
396         valid = hashmap_put(m, key1, key1);
397         assert_se(valid == 1);
398
399         valid = hashmap_remove_and_replace(NULL, key1, key2, key2);
400         assert_se(valid == -ENOENT);
401
402         valid = hashmap_remove_and_replace(m, key1, key2, key2);
403         assert_se(valid == 0);
404
405         r = hashmap_get(m, key2);
406         assert_se(r == key2);
407         assert_se(!hashmap_get(m, key1));
408
409         valid = hashmap_put(m, key3, key3);
410         assert_se(valid == 1);
411         valid = hashmap_remove_and_replace(m, key3, key2, key2);
412         assert_se(valid == 0);
413         r = hashmap_get(m, key2);
414         assert_se(r == key2);
415         assert_se(!hashmap_get(m, key3));
416
417         /* Repeat this test several times to increase the chance of hitting
418          * the less likely case in hashmap_remove_and_replace where it
419          * compensates for the backward shift. */
420         for (i = 0; i < 20; i++) {
421                 hashmap_clear(m);
422
423                 for (j = 1; j < 7; j++)
424                         hashmap_put(m, UINT_TO_PTR(10*i + j), UINT_TO_PTR(10*i + j));
425                 valid = hashmap_remove_and_replace(m, UINT_TO_PTR(10*i + 1),
426                                                    UINT_TO_PTR(10*i + 2),
427                                                    UINT_TO_PTR(10*i + 2));
428                 assert_se(valid == 0);
429                 assert_se(!hashmap_get(m, UINT_TO_PTR(10*i + 1)));
430                 for (j = 2; j < 7; j++) {
431                         r = hashmap_get(m, UINT_TO_PTR(10*i + j));
432                         assert_se(r == UINT_TO_PTR(10*i + j));
433                 }
434         }
435 }
436
437 static void test_hashmap_ensure_allocated(void) {
438         Hashmap *m;
439         int valid_hashmap;
440
441         m = hashmap_new(&string_hash_ops);
442
443         valid_hashmap = hashmap_ensure_allocated(&m, &string_hash_ops);
444         assert_se(valid_hashmap == 0);
445
446         assert_se(m);
447         hashmap_free(m);
448 }
449
450 static void test_hashmap_foreach_key(void) {
451         Hashmap *m;
452         Iterator i;
453         bool key_found[] = { false, false, false, false };
454         const char *s;
455         const char *key;
456         static const char key_table[] =
457                 "key 1\0"
458                 "key 2\0"
459                 "key 3\0"
460                 "key 4\0";
461
462         m = hashmap_new(&string_hash_ops);
463
464         NULSTR_FOREACH(key, key_table)
465                 hashmap_put(m, key, (void*) (const char*) "my dummy val");
466
467         HASHMAP_FOREACH_KEY(s, key, m, i) {
468                 if (!key_found[0] && streq(key, "key 1"))
469                         key_found[0] = true;
470                 else if (!key_found[1] && streq(key, "key 2"))
471                         key_found[1] = true;
472                 else if (!key_found[2] && streq(key, "key 3"))
473                         key_found[2] = true;
474                 else if (!key_found[3] && streq(key, "fail"))
475                         key_found[3] = true;
476         }
477
478         assert_se(m);
479         assert_se(key_found[0] && key_found[1] && key_found[2] && !key_found[3]);
480
481         hashmap_free(m);
482 }
483
484 static void test_hashmap_foreach(void) {
485         Hashmap *m;
486         Iterator i;
487         bool value_found[] = { false, false, false, false };
488         char *val1, *val2, *val3, *val4, *s;
489         unsigned count;
490
491         val1 = strdup("my val1");
492         assert_se(val1);
493         val2 = strdup("my val2");
494         assert_se(val2);
495         val3 = strdup("my val3");
496         assert_se(val3);
497         val4 = strdup("my val4");
498         assert_se(val4);
499
500         m = NULL;
501
502         count = 0;
503         HASHMAP_FOREACH(s, m, i)
504                 count++;
505         assert_se(count == 0);
506
507         m = hashmap_new(&string_hash_ops);
508
509         count = 0;
510         HASHMAP_FOREACH(s, m, i)
511                 count++;
512         assert_se(count == 0);
513
514         hashmap_put(m, "Key 1", val1);
515         hashmap_put(m, "Key 2", val2);
516         hashmap_put(m, "Key 3", val3);
517         hashmap_put(m, "Key 4", val4);
518
519         HASHMAP_FOREACH(s, m, i) {
520                 if (!value_found[0] && streq(s, val1))
521                         value_found[0] = true;
522                 else if (!value_found[1] && streq(s, val2))
523                         value_found[1] = true;
524                 else if (!value_found[2] && streq(s, val3))
525                         value_found[2] = true;
526                 else if (!value_found[3] && streq(s, val4))
527                         value_found[3] = true;
528         }
529
530         assert_se(m);
531         assert_se(value_found[0] && value_found[1] && value_found[2] && value_found[3]);
532
533         hashmap_free_free(m);
534 }
535
536 static void test_hashmap_merge(void) {
537         Hashmap *m;
538         Hashmap *n;
539         char *val1, *val2, *val3, *val4, *r;
540
541         val1 = strdup("my val1");
542         assert_se(val1);
543         val2 = strdup("my val2");
544         assert_se(val2);
545         val3 = strdup("my val3");
546         assert_se(val3);
547         val4 = strdup("my val4");
548         assert_se(val4);
549
550         n = hashmap_new(&string_hash_ops);
551         m = hashmap_new(&string_hash_ops);
552
553         hashmap_put(m, "Key 1", val1);
554         hashmap_put(m, "Key 2", val2);
555         hashmap_put(n, "Key 3", val3);
556         hashmap_put(n, "Key 4", val4);
557
558         assert_se(hashmap_merge(m, n) == 0);
559         r = hashmap_get(m, "Key 3");
560         assert_se(r && streq(r, "my val3"));
561         r = hashmap_get(m, "Key 4");
562         assert_se(r && streq(r, "my val4"));
563
564         assert_se(n);
565         assert_se(m);
566         hashmap_free(n);
567         hashmap_free_free(m);
568 }
569
570 static void test_hashmap_contains(void) {
571         Hashmap *m;
572         char *val1;
573
574         val1 = strdup("my val");
575         assert_se(val1);
576
577         m = hashmap_new(&string_hash_ops);
578
579         assert_se(!hashmap_contains(m, "Key 1"));
580         hashmap_put(m, "Key 1", val1);
581         assert_se(hashmap_contains(m, "Key 1"));
582         assert_se(!hashmap_contains(m, "Key 2"));
583
584         assert_se(!hashmap_contains(NULL, "Key 1"));
585
586         assert_se(m);
587         hashmap_free_free(m);
588 }
589
590 static void test_hashmap_isempty(void) {
591         Hashmap *m;
592         char *val1;
593
594         val1 = strdup("my val");
595         assert_se(val1);
596
597         m = hashmap_new(&string_hash_ops);
598
599         assert_se(hashmap_isempty(m));
600         hashmap_put(m, "Key 1", val1);
601         assert_se(!hashmap_isempty(m));
602
603         assert_se(m);
604         hashmap_free_free(m);
605 }
606
607 static void test_hashmap_size(void) {
608         Hashmap *m;
609         char *val1, *val2, *val3, *val4;
610
611         val1 = strdup("my val");
612         assert_se(val1);
613         val2 = strdup("my val");
614         assert_se(val2);
615         val3 = strdup("my val");
616         assert_se(val3);
617         val4 = strdup("my val");
618         assert_se(val4);
619
620         assert_se(hashmap_size(NULL) == 0);
621         assert_se(hashmap_buckets(NULL) == 0);
622
623         m = hashmap_new(&string_hash_ops);
624
625         hashmap_put(m, "Key 1", val1);
626         hashmap_put(m, "Key 2", val2);
627         hashmap_put(m, "Key 3", val3);
628         hashmap_put(m, "Key 4", val4);
629
630         assert_se(m);
631         assert_se(hashmap_size(m) == 4);
632         assert_se(hashmap_buckets(m) >= 4);
633         hashmap_free_free(m);
634 }
635
636 static void test_hashmap_get(void) {
637         Hashmap *m;
638         char *r;
639         char *val;
640
641         val = strdup("my val");
642         assert_se(val);
643
644         r = hashmap_get(NULL, "Key 1");
645         assert_se(r == NULL);
646
647         m = hashmap_new(&string_hash_ops);
648
649         hashmap_put(m, "Key 1", val);
650
651         r = hashmap_get(m, "Key 1");
652         assert_se(streq(r, val));
653
654         r = hashmap_get(m, "no such key");
655         assert_se(r == NULL);
656
657         assert_se(m);
658         hashmap_free_free(m);
659 }
660
661 static void test_hashmap_get2(void) {
662         Hashmap *m;
663         char *r;
664         char *val;
665         char key_orig[] = "Key 1";
666         void *key_copy;
667
668         val = strdup("my val");
669         assert_se(val);
670
671         key_copy = strdup(key_orig);
672         assert_se(key_copy);
673
674         r = hashmap_get2(NULL, key_orig, &key_copy);
675         assert_se(r == NULL);
676
677         m = hashmap_new(&string_hash_ops);
678
679         hashmap_put(m, key_copy, val);
680         key_copy = NULL;
681
682         r = hashmap_get2(m, key_orig, &key_copy);
683         assert_se(streq(r, val));
684         assert_se(key_orig != key_copy);
685         assert_se(streq(key_orig, key_orig));
686
687         r = hashmap_get2(m, "no such key", NULL);
688         assert_se(r == NULL);
689
690         assert_se(m);
691         hashmap_free_free_free(m);
692 }
693
694 static unsigned long crippled_hashmap_func(const void *p, const uint8_t hash_key[HASH_KEY_SIZE]) {
695         return trivial_hash_func(p, hash_key) & 0xff;
696 }
697
698 static const struct hash_ops crippled_hashmap_ops = {
699         .hash = crippled_hashmap_func,
700         .compare = trivial_compare_func,
701 };
702
703 static void test_hashmap_many(void) {
704         Hashmap *h;
705         unsigned i, j;
706         void *v, *k;
707         static const struct {
708                 const struct hash_ops *ops;
709                 unsigned n_entries;
710         } tests[] = {
711                 { .ops = NULL,                  .n_entries = 1 << 20 },
712                 { .ops = &crippled_hashmap_ops, .n_entries = 1 << 11 },
713         };
714
715
716         for (j = 0; j < ELEMENTSOF(tests); j++) {
717                 assert_se(h = hashmap_new(tests[j].ops));
718
719                 for (i = 1; i < tests[j].n_entries*3; i+=3) {
720                         assert_se(hashmap_put(h, UINT_TO_PTR(i), UINT_TO_PTR(i)) >= 0);
721                         assert_se(PTR_TO_UINT(hashmap_get(h, UINT_TO_PTR(i))) == i);
722                 }
723
724                 for (i = 1; i < tests[j].n_entries*3; i++)
725                         assert_se(hashmap_contains(h, UINT_TO_PTR(i)) == (i % 3 == 1));
726
727                 log_info("%u <= %u * 0.8 = %g", hashmap_size(h), hashmap_buckets(h), hashmap_buckets(h) * 0.8);
728
729                 assert_se(hashmap_size(h) <= hashmap_buckets(h) * 0.8);
730                 assert_se(hashmap_size(h) == tests[j].n_entries);
731
732                 while (!hashmap_isempty(h)) {
733                         k = hashmap_first_key(h);
734                         v = hashmap_remove(h, k);
735                         assert_se(v == k);
736                 }
737
738                 hashmap_free(h);
739         }
740 }
741
742 static void test_hashmap_first(void) {
743         _cleanup_hashmap_free_ Hashmap *m = NULL;
744
745         m = hashmap_new(&string_hash_ops);
746         assert_se(m);
747
748         assert_se(!hashmap_first(m));
749         assert_se(hashmap_put(m, "key 1", (void*) "val 1") == 1);
750         assert_se(streq(hashmap_first(m), "val 1"));
751         assert_se(hashmap_put(m, "key 2", (void*) "val 2") == 1);
752 #ifdef ORDERED
753         assert_se(streq(hashmap_first(m), "val 1"));
754         assert_se(hashmap_remove(m, "key 1"));
755         assert_se(streq(hashmap_first(m), "val 2"));
756 #endif
757 }
758
759 static void test_hashmap_first_key(void) {
760         _cleanup_hashmap_free_ Hashmap *m = NULL;
761
762         m = hashmap_new(&string_hash_ops);
763         assert_se(m);
764
765         assert_se(!hashmap_first_key(m));
766         assert_se(hashmap_put(m, "key 1", NULL) == 1);
767         assert_se(streq(hashmap_first_key(m), "key 1"));
768         assert_se(hashmap_put(m, "key 2", NULL) == 1);
769 #ifdef ORDERED
770         assert_se(streq(hashmap_first_key(m), "key 1"));
771         assert_se(hashmap_remove(m, "key 1") == NULL);
772         assert_se(streq(hashmap_first_key(m), "key 2"));
773 #endif
774 }
775
776 static void test_hashmap_steal_first_key(void) {
777         _cleanup_hashmap_free_ Hashmap *m = NULL;
778
779         m = hashmap_new(&string_hash_ops);
780         assert_se(m);
781
782         assert_se(!hashmap_steal_first_key(m));
783         assert_se(hashmap_put(m, "key 1", NULL) == 1);
784         assert_se(streq(hashmap_steal_first_key(m), "key 1"));
785
786         assert_se(hashmap_isempty(m));
787 }
788
789 static void test_hashmap_steal_first(void) {
790         _cleanup_hashmap_free_ Hashmap *m = NULL;
791         int seen[3] = {};
792         char *val;
793
794         m = hashmap_new(&string_hash_ops);
795         assert_se(m);
796
797         assert_se(hashmap_put(m, "key 1", (void*) "1") == 1);
798         assert_se(hashmap_put(m, "key 2", (void*) "22") == 1);
799         assert_se(hashmap_put(m, "key 3", (void*) "333") == 1);
800
801         while ((val = hashmap_steal_first(m)))
802                 seen[strlen(val) - 1]++;
803
804         assert_se(seen[0] == 1 && seen[1] == 1 && seen[2] == 1);
805
806         assert_se(hashmap_isempty(m));
807 }
808
809 static void test_hashmap_clear_free_free(void) {
810         _cleanup_hashmap_free_ Hashmap *m = NULL;
811
812         m = hashmap_new(&string_hash_ops);
813         assert_se(m);
814
815         assert_se(hashmap_put(m, strdup("key 1"), NULL) == 1);
816         assert_se(hashmap_put(m, strdup("key 2"), NULL) == 1);
817         assert_se(hashmap_put(m, strdup("key 3"), NULL) == 1);
818
819         hashmap_clear_free_free(m);
820         assert_se(hashmap_isempty(m));
821 }
822
823 static void test_hashmap_reserve(void) {
824         _cleanup_hashmap_free_ Hashmap *m = NULL;
825
826         m = hashmap_new(&string_hash_ops);
827
828         assert_se(hashmap_reserve(m, 1) == 0);
829         assert_se(hashmap_buckets(m) < 1000);
830         assert_se(hashmap_reserve(m, 1000) == 0);
831         assert_se(hashmap_buckets(m) >= 1000);
832         assert_se(hashmap_isempty(m));
833
834         assert_se(hashmap_put(m, "key 1", (void*) "val 1") == 1);
835
836         assert_se(hashmap_reserve(m, UINT_MAX) == -ENOMEM);
837         assert_se(hashmap_reserve(m, UINT_MAX - 1) == -ENOMEM);
838 }
839
840 void test_hashmap_funcs(void) {
841         test_hashmap_copy();
842         test_hashmap_get_strv();
843         test_hashmap_move_one();
844         test_hashmap_move();
845         test_hashmap_replace();
846         test_hashmap_update();
847         test_hashmap_put();
848         test_hashmap_remove();
849         test_hashmap_remove2();
850         test_hashmap_remove_value();
851         test_hashmap_remove_and_put();
852         test_hashmap_remove_and_replace();
853         test_hashmap_ensure_allocated();
854         test_hashmap_foreach();
855         test_hashmap_foreach_key();
856         test_hashmap_contains();
857         test_hashmap_merge();
858         test_hashmap_isempty();
859         test_hashmap_get();
860         test_hashmap_get2();
861         test_hashmap_size();
862         test_hashmap_many();
863         test_hashmap_first();
864         test_hashmap_first_key();
865         test_hashmap_steal_first_key();
866         test_hashmap_steal_first();
867         test_hashmap_clear_free_free();
868         test_hashmap_reserve();
869 }