summaryrefslogtreecommitdiff
path: root/src/test/test-hashmap.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2014-10-01 09:32:16 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2014-10-01 09:34:05 -0400
commit647f68249f90855814de6eb6b0959c6096b41cae (patch)
tree649370a142c0ed07f46566b3639c627e5649b86b /src/test/test-hashmap.c
parentacb3b3ddc082880eaaa1d7773296ad9abd756f23 (diff)
tests: add tests for {hashmap,set}_steal_first
Just to make sure that coverity is wrong.
Diffstat (limited to 'src/test/test-hashmap.c')
-rw-r--r--src/test/test-hashmap.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/test/test-hashmap.c b/src/test/test-hashmap.c
index d9863f8da..f4afbb8e9 100644
--- a/src/test/test-hashmap.c
+++ b/src/test/test-hashmap.c
@@ -507,6 +507,26 @@ static void test_hashmap_steal_first_key(void) {
assert_se(hashmap_isempty(m));
}
+static void test_hashmap_steal_first(void) {
+ _cleanup_hashmap_free_ Hashmap *m = NULL;
+ int seen[3] = {};
+ char *val;
+
+ m = hashmap_new(&string_hash_ops);
+ assert_se(m);
+
+ assert_se(hashmap_put(m, "key 1", (void*) "1") == 1);
+ assert_se(hashmap_put(m, "key 2", (void*) "22") == 1);
+ assert_se(hashmap_put(m, "key 3", (void*) "333") == 1);
+
+ while ((val = hashmap_steal_first(m)))
+ seen[strlen(val) - 1]++;
+
+ assert(seen[0] == 1 && seen[1] == 1 && seen[2] == 1);
+
+ assert_se(hashmap_isempty(m));
+}
+
static void test_hashmap_clear_free_free(void) {
_cleanup_hashmap_free_ Hashmap *m = NULL;
@@ -560,6 +580,7 @@ int main(int argc, const char *argv[]) {
test_hashmap_many();
test_hashmap_first_key();
test_hashmap_steal_first_key();
+ test_hashmap_steal_first();
test_hashmap_clear_free_free();
test_uint64_compare_func();
test_trivial_compare_func();