aboutsummaryrefslogtreecommitdiff
path: root/tests/test_hashmap.c
blob: b9e1cfd537408e0544439fe9fd7868a47f801433 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include "test.h"
#include "hashmap.h"

START_TESTS

TEST(hashmap) {
    struct hashmap *hm = hashmap_new();
    assert(hashmap_get(hm, "foo") == NULL, "expected NULL");
    hashmap_insert(hm, "foo", "bar");
    char *value = hashmap_get(hm, "foo");
    assert_str(value, "bar");
    hashmap_free(hm);
} 


TEST(dot_notation) {
    struct hashmap *user = hashmap_new();
    hashmap_insert(user, "name", "Danny");
    struct hashmap *hm = hashmap_new();
    hashmap_insert(hm, "user", user);
    assert(hashmap_resolve(hm, "user") == user, "expected user hashmap, got something else");
    char *value = (char *) hashmap_resolve(hm, "user.name");
    assert_str(value, "Danny");
    hashmap_free(hm);
} 

END_TESTS