X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fhashkit_functions.c;h=46f53934d7d48fc71ff9f646847c1370aa5ef7ed;hb=b175c6025c67cb8fa756750d53fb96fd888076de;hp=0e4a894da8f55d78f7ea1cfd0ab6f7866bc116e2;hpb=98d4dea6ae8869b6fe5e37a2908d66ff062b8f39;p=m6w6%2Flibmemcached diff --git a/tests/hashkit_functions.c b/tests/hashkit_functions.c index 0e4a894d..46f53934 100644 --- a/tests/hashkit_functions.c +++ b/tests/hashkit_functions.c @@ -6,6 +6,8 @@ * the COPYING file in the parent directory for full text. */ +#include "config.h" + #include #include #include @@ -122,7 +124,7 @@ static test_return_t one_at_a_time_run (hashkit_st *hashk __attribute__((unused) { uint32_t hash_val; - hash_val= hashkit_one_at_a_time(*ptr, strlen(*ptr)); + hash_val= libhashkit_one_at_a_time(*ptr, strlen(*ptr)); test_true(one_at_a_time_values[x] == hash_val); } @@ -138,7 +140,7 @@ static test_return_t md5_run (hashkit_st *hashk __attribute__((unused))) { uint32_t hash_val; - hash_val= hashkit_md5(*ptr, strlen(*ptr)); + hash_val= libhashkit_md5(*ptr, strlen(*ptr)); test_true(md5_values[x] == hash_val); } @@ -154,7 +156,7 @@ static test_return_t crc_run (hashkit_st *hashk __attribute__((unused))) { uint32_t hash_val; - hash_val= hashkit_crc32(*ptr, strlen(*ptr)); + hash_val= libhashkit_crc32(*ptr, strlen(*ptr)); assert(crc_values[x] == hash_val); } @@ -170,7 +172,7 @@ static test_return_t fnv1_64_run (hashkit_st *hashk __attribute__((unused))) { uint32_t hash_val; - hash_val= hashkit_fnv1_64(*ptr, strlen(*ptr)); + hash_val= libhashkit_fnv1_64(*ptr, strlen(*ptr)); assert(fnv1_64_values[x] == hash_val); } @@ -186,7 +188,7 @@ static test_return_t fnv1a_64_run (hashkit_st *hashk __attribute__((unused))) { uint32_t hash_val; - hash_val= hashkit_fnv1a_64(*ptr, strlen(*ptr)); + hash_val= libhashkit_fnv1a_64(*ptr, strlen(*ptr)); assert(fnv1a_64_values[x] == hash_val); } @@ -203,7 +205,7 @@ static test_return_t fnv1_32_run (hashkit_st *hashk __attribute__((unused))) { uint32_t hash_val; - hash_val= hashkit_fnv1_32(*ptr, strlen(*ptr)); + hash_val= libhashkit_fnv1_32(*ptr, strlen(*ptr)); assert(fnv1_32_values[x] == hash_val); } @@ -219,7 +221,7 @@ static test_return_t fnv1a_32_run (hashkit_st *hashk __attribute__((unused))) { uint32_t hash_val; - hash_val= hashkit_fnv1a_32(*ptr, strlen(*ptr)); + hash_val= libhashkit_fnv1a_32(*ptr, strlen(*ptr)); assert(fnv1a_32_values[x] == hash_val); } @@ -236,7 +238,7 @@ static test_return_t hsieh_run (hashkit_st *hashk __attribute__((unused))) uint32_t hash_val; #ifdef HAVE_HSIEH_HASH - hash_val= hashkit_hsieh(*ptr, strlen(*ptr)); + hash_val= libhashkit_hsieh(*ptr, strlen(*ptr)); #else hash_val= 1; #endif @@ -248,7 +250,7 @@ static test_return_t hsieh_run (hashkit_st *hashk __attribute__((unused))) static test_return_t murmur_run (hashkit_st *hashk __attribute__((unused))) { -#ifdef __sparc +#ifdef WORDS_BIGENDIAN return TEST_SKIPPED; #else uint32_t x; @@ -258,7 +260,7 @@ static test_return_t murmur_run (hashkit_st *hashk __attribute__((unused))) { uint32_t hash_val; - hash_val= hashkit_murmur(*ptr, strlen(*ptr)); + hash_val= libhashkit_murmur(*ptr, strlen(*ptr)); assert(murmur_values[x] == hash_val); } @@ -276,7 +278,7 @@ static test_return_t jenkins_run (hashkit_st *hashk __attribute__((unused))) { uint32_t hash_val; - hash_val= hashkit_jenkins(*ptr, strlen(*ptr)); + hash_val= libhashkit_jenkins(*ptr, strlen(*ptr)); assert(jenkins_values[x] == hash_val); } @@ -297,15 +299,15 @@ test_st allocation[]= { {0, 0, 0} }; -static test_return_t hashkit_generate_value_test(hashkit_st *hashk) +static test_return_t hashkit_digest_test(hashkit_st *hashk) { uint32_t value; - value= hashkit_generate_value(hashk, "a", sizeof("a")); + value= hashkit_digest(hashk, "a", sizeof("a")); return TEST_SUCCESS; } -static test_return_t hashkit_set_base_function_test(hashkit_st *hashk) +static test_return_t hashkit_set_function_test(hashkit_st *hashk) { for (hashkit_hash_algorithm_t algo = HASHKIT_HASH_DEFAULT; algo < HASHKIT_HASH_MAX; algo++) { @@ -314,12 +316,15 @@ static test_return_t hashkit_set_base_function_test(hashkit_st *hashk) const char **ptr; uint32_t *list; - rc= hashkit_set_base_function(hashk, algo); + rc= hashkit_set_function(hashk, algo); /* Hsieh is disabled most of the time for patent issues */ if (rc == HASHKIT_FAILURE && algo == HASHKIT_HASH_HSIEH) continue; + if (rc == HASHKIT_FAILURE && algo == HASHKIT_HASH_CUSTOM) + continue; + test_true(rc == HASHKIT_SUCCESS); switch (algo) @@ -354,66 +359,145 @@ static test_return_t hashkit_set_base_function_test(hashkit_st *hashk) case HASHKIT_HASH_JENKINS: list= jenkins_values; break; + case HASHKIT_HASH_CUSTOM: case HASHKIT_HASH_MAX: default: list= NULL; - test_fail("We ended up on a non-existent hash"); + break; } // Now we make sure we did set the hash correctly. - for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++) + if (list) { - uint32_t hash_val; + for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++) + { + uint32_t hash_val; - hash_val= hashkit_generate_value(hashk, *ptr, strlen(*ptr)); - test_true(list[x] == hash_val); + hash_val= hashkit_digest(hashk, *ptr, strlen(*ptr)); + test_true(list[x] == hash_val); + } + } + else + { + return TEST_FAILURE; } } return TEST_SUCCESS; } -static test_return_t hashkit_set_base_function_custom_test(hashkit_st *hashk) +static uint32_t hash_test_function(const char *string, size_t string_length, void *context) +{ + (void)context; + return libhashkit_md5(string, string_length); +} + +static test_return_t hashkit_set_custom_function_test(hashkit_st *hashk) { hashkit_return_t rc; uint32_t x; const char **ptr; - rc= hashkit_set_base_function_custom(hashk, hashkit_md5, NULL); + rc= hashkit_set_custom_function(hashk, hash_test_function, NULL); test_true(rc == HASHKIT_SUCCESS); for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++) { uint32_t hash_val; - hash_val= hashkit_generate_value(hashk, *ptr, strlen(*ptr)); + hash_val= hashkit_digest(hashk, *ptr, strlen(*ptr)); test_true(md5_values[x] == hash_val); } return TEST_SUCCESS; } +static test_return_t hashkit_set_distribution_function_test(hashkit_st *hashk) +{ + for (hashkit_hash_algorithm_t algo = HASHKIT_HASH_DEFAULT; algo < HASHKIT_HASH_MAX; algo++) + { + hashkit_return_t rc; + + rc= hashkit_set_distribution_function(hashk, algo); + + /* Hsieh is disabled most of the time for patent issues */ + if (rc == HASHKIT_FAILURE && algo == HASHKIT_HASH_HSIEH) + continue; + + if (rc == HASHKIT_FAILURE && algo == HASHKIT_HASH_CUSTOM) + continue; + + test_true(rc == HASHKIT_SUCCESS); + } + + return TEST_SUCCESS; +} + +static test_return_t hashkit_set_custom_distribution_function_test(hashkit_st *hashk) +{ + hashkit_return_t rc; + + rc= hashkit_set_custom_distribution_function(hashk, hash_test_function, NULL); + test_true(rc == HASHKIT_SUCCESS); + + return TEST_SUCCESS; +} + + +static test_return_t hashkit_get_function_test(hashkit_st *hashk) +{ + for (hashkit_hash_algorithm_t algo = HASHKIT_HASH_DEFAULT; algo < HASHKIT_HASH_MAX; algo++) + { + hashkit_return_t rc; + + if (HASHKIT_HASH_CUSTOM || HASHKIT_HASH_HSIEH) + continue; + + rc= hashkit_set_function(hashk, algo); + test_true(rc == HASHKIT_SUCCESS); + + test_true(hashkit_get_function(hashk) == algo); + } + return TEST_SUCCESS; +} + +static test_return_t hashkit_compare_test(hashkit_st *hashk) +{ + hashkit_st *clone; + + clone= hashkit_clone(NULL, hashk); + + test_true(hashkit_compare(clone, hashk)); + hashkit_free(clone); + + return TEST_SUCCESS; +} + test_st hashkit_st_functions[] ={ - {"hashkit_generate_value", 0, (test_callback_fn)hashkit_generate_value_test}, - {"hashkit_set_base_function", 0, (test_callback_fn)hashkit_set_base_function_test}, - {"hashkit_set_base_function_custom", 0, (test_callback_fn)hashkit_set_base_function_custom_test}, + {"hashkit_digest", 0, (test_callback_fn)hashkit_digest_test}, + {"hashkit_set_function", 0, (test_callback_fn)hashkit_set_function_test}, + {"hashkit_set_custom_function", 0, (test_callback_fn)hashkit_set_custom_function_test}, + {"hashkit_get_function", 0, (test_callback_fn)hashkit_get_function_test}, + {"hashkit_set_distribution_function", 0, (test_callback_fn)hashkit_set_distribution_function_test}, + {"hashkit_set_custom_distribution_function", 0, (test_callback_fn)hashkit_set_custom_distribution_function_test}, + {"hashkit_compare", 0, (test_callback_fn)hashkit_compare_test}, {0, 0, 0} }; -static test_return_t libhashkit_generate_value_test(hashkit_st *hashk) +static test_return_t libhashkit_digest_test(hashkit_st *hashk) { uint32_t value; (void)hashk; - value= libhashkit_generate_value("a", sizeof("a"), HASHKIT_HASH_DEFAULT); + value= libhashkit_digest("a", sizeof("a"), HASHKIT_HASH_DEFAULT); return TEST_SUCCESS; } test_st library_functions[] ={ - {"libhashkit_generate_value", 0, (test_callback_fn)libhashkit_generate_value_test}, + {"libhashkit_digest", 0, (test_callback_fn)libhashkit_digest_test}, {0, 0, 0} };