test/map_tests.c

Tue, 21 Feb 2012 01:13:17 +0100

author
Mike Becker <universe@uap-core.de>
date
Tue, 21 Feb 2012 01:13:17 +0100
changeset 29
bce0d7f2912b
parent 20
db7d9860dbbd
child 31
91ac86557290
permissions
-rw-r--r--

fixed map with the help of new tests

/*
 *
 */

#include "map_tests.h"

UCX_TEST_BEGIN(test_ucx_map_new) {
    UcxMap *map = ucx_map_new(16);
    
    UCX_TEST_ASSERT(map->size == 16, "wrong size")
    UCX_TEST_ASSERT(map->map != NULL, "failed")
    
    ucx_map_free(map);
    
    UCX_TEST_END
}

UCX_TEST_BEGIN(test_ucx_key) {
    
    UcxKey key = ucx_key("This is a text.", 15);
    UCX_TEST_ASSERT(strncmp(key.data, "This is a text.", 15) == 0, "failed")
    UCX_TEST_ASSERT(key.len == 15, "failed")
    UCX_TEST_ASSERT(key.hash == 1261186027, "hash failed")
    
    UCX_TEST_END
}

UCX_TEST_BEGIN(test_ucx_map_put) {
    
    UcxMap *map = ucx_map_new(4);
    
    int td[5];
    td[0] = 10; td[1] = 42; td[2] = 70; td[3] = 11200; td[4] = 80000;

    ucx_map_cstr_put(map, "Key2", &td[2]); /* 0 */
    ucx_map_cstr_put(map, "Key0", &td[0]); /* 0 */
    ucx_map_cstr_put(map, "Key1", &td[1]); /* 3 */
    ucx_map_cstr_put(map, "KeY3", &td[3]); /* 2 */
    ucx_map_cstr_put(map, "KEY4", &td[4]); /* 0 */
    
    UCX_TEST_ASSERT(*((int*)map->map[0]->data) == td[0], "failed Key0")
    UCX_TEST_ASSERT(map->map[0]->next != NULL, "no list at slot 0")
    UCX_TEST_ASSERT(*((int*)map->map[0]->next->data) == td[2], "failed Key2")
    UCX_TEST_ASSERT(map->map[0]->next->next != NULL, "list corrupt at slot 0")
    UCX_TEST_ASSERT(*((int*)map->map[0]->next->next->data) == td[4],
            "failed Key4")
    UCX_TEST_ASSERT(map->map[0]->next->next->next == NULL,
            "slot 0 not terminated")

    UCX_TEST_ASSERT(map->map[1] == NULL, "slot 1 not terminated")

    UCX_TEST_ASSERT(*((int*)map->map[2]->data) == td[3], "failed KeY3")
    UCX_TEST_ASSERT(map->map[2]->next == NULL, "slot 2 not terminated")

    UCX_TEST_ASSERT(*((int*)map->map[3]->data) == td[1], "failed Key1")

    ucx_map_cstr_put(map, "Key0", &td[3]); /* 0 */
    
    UCX_TEST_ASSERT(*((int*)map->map[0]->data) == td[3], "overwrite failed")
    UCX_TEST_ASSERT(*((int*)map->map[0]->next->data) == td[2],
            "overwrite failed")
    UCX_TEST_ASSERT(*((int*)map->map[0]->next->next->data) == td[4], 
            "overwrite failed")
    UCX_TEST_ASSERT(map->map[0]->next->next->next == NULL, "overwrite failed")
    
    ucx_map_free(map);
    
    UCX_TEST_END
}

UCX_TEST_BEGIN(test_ucx_map_get) {
    UCX_TEST_END
}

mercurial