1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3 * libHashKit Functions Test
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
6 * Copyright (C) 2006-2009 Brian Aker All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * * Redistributions in binary form must reproduce the above
16 * copyright notice, this list of conditions and the following disclaimer
17 * in the documentation and/or other materials provided with the
20 * * The names of its contributors may not be used to endorse or
21 * promote products derived from this software without specific prior
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
27 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
28 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
29 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
30 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
34 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 #include <libtest/test.hpp>
41 using namespace libtest
;
48 #include <libhashkit/hashkit.h>
50 #include "hash_results.h"
52 static hashkit_st global_hashk
;
55 @brief hash_test_st is a structure we use in testing. It is currently empty.
57 typedef struct hash_test_st hash_test_st
;
64 static test_return_t
init_test(void *not_used
)
67 hashkit_st
*hashk_ptr
;
70 hashk_ptr
= hashkit_create(&hashk
);
72 test_true(hashk_ptr
== &hashk
);
73 test_true(hashkit_is_allocated(hashk_ptr
) == false);
75 hashkit_free(hashk_ptr
);
80 static test_return_t
allocation_test(void *not_used
)
82 hashkit_st
*hashk_ptr
;
85 hashk_ptr
= hashkit_create(NULL
);
87 test_true(hashkit_is_allocated(hashk_ptr
) == true);
88 hashkit_free(hashk_ptr
);
93 static test_return_t
clone_test(hashkit_st
*hashk
)
95 // First we make sure that the testing system is giving us what we expect.
96 assert(&global_hashk
== hashk
);
98 // Second we test if hashk is even valid
102 hashkit_st
*hashk_ptr
;
103 hashk_ptr
= hashkit_clone(NULL
, NULL
);
104 test_true(hashk_ptr
);
105 test_true(hashkit_is_allocated(hashk_ptr
));
106 hashkit_free(hashk_ptr
);
109 /* Can we init from null? */
111 hashkit_st
*hashk_ptr
;
113 hashk_ptr
= hashkit_clone(NULL
, hashk
);
115 test_true(hashk_ptr
);
116 test_true(hashkit_is_allocated(hashk_ptr
));
118 hashkit_free(hashk_ptr
);
121 /* Can we init from struct? */
123 hashkit_st declared_clone
;
124 hashkit_st
*hash_clone
;
126 hash_clone
= hashkit_clone(&declared_clone
, NULL
);
127 test_true(hash_clone
);
128 test_true(hash_clone
== &declared_clone
);
129 test_false(hashkit_is_allocated(hash_clone
));
131 hashkit_free(hash_clone
);
134 /* Can we init from struct? */
136 hashkit_st declared_clone
;
137 hashkit_st
*hash_clone
;
139 hash_clone
= hashkit_clone(&declared_clone
, hashk
);
140 test_true(hash_clone
);
141 test_true(hash_clone
== &declared_clone
);
142 test_false(hashkit_is_allocated(hash_clone
));
144 hashkit_free(hash_clone
);
150 static test_return_t
one_at_a_time_run (hashkit_st
*hashk
)
156 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
160 hash_val
= libhashkit_one_at_a_time(*ptr
, strlen(*ptr
));
161 test_true(one_at_a_time_values
[x
] == hash_val
);
167 static test_return_t
md5_run (hashkit_st
*hashk
)
173 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
177 hash_val
= libhashkit_md5(*ptr
, strlen(*ptr
));
178 test_true(md5_values
[x
] == hash_val
);
184 static test_return_t
crc_run (hashkit_st
*hashk
)
190 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
194 hash_val
= libhashkit_crc32(*ptr
, strlen(*ptr
));
195 test_compare(crc_values
[x
], hash_val
);
201 static test_return_t
fnv1_64_run (hashkit_st
*hashk
)
207 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
211 hash_val
= libhashkit_fnv1_64(*ptr
, strlen(*ptr
));
212 test_compare(fnv1_64_values
[x
], hash_val
);
218 static test_return_t
fnv1a_64_run (hashkit_st
*hashk
)
224 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
228 hash_val
= libhashkit_fnv1a_64(*ptr
, strlen(*ptr
));
229 test_compare(fnv1a_64_values
[x
], hash_val
);
235 static test_return_t
fnv1_32_run (hashkit_st
*hashk
)
241 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
245 hash_val
= libhashkit_fnv1_32(*ptr
, strlen(*ptr
));
246 test_compare(fnv1_32_values
[x
], hash_val
);
252 static test_return_t
fnv1a_32_run (hashkit_st
*hashk
)
258 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
262 hash_val
= libhashkit_fnv1a_32(*ptr
, strlen(*ptr
));
263 test_compare(fnv1a_32_values
[x
], hash_val
);
269 static test_return_t
hsieh_run (hashkit_st
*hashk
)
275 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
279 #ifdef HAVE_HSIEH_HASH
280 hash_val
= libhashkit_hsieh(*ptr
, strlen(*ptr
));
284 test_compare(hsieh_values
[x
], hash_val
);
290 static test_return_t
murmur_run (hashkit_st
*hashk
)
294 #ifdef WORDS_BIGENDIAN
301 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
305 #ifdef HAVE_MURMUR_HASH
306 hash_val
= libhashkit_murmur(*ptr
, strlen(*ptr
));
310 test_compare(murmur_values
[x
], hash_val
);
317 static test_return_t
jenkins_run (hashkit_st
*hashk
)
323 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
327 hash_val
= libhashkit_jenkins(*ptr
, strlen(*ptr
));
328 test_compare(jenkins_values
[x
], hash_val
);
338 @brief now we list out the tests.
341 test_st allocation
[]= {
342 {"init", 0, (test_callback_fn
*)init_test
},
343 {"create and free", 0, (test_callback_fn
*)allocation_test
},
344 {"clone", 0, (test_callback_fn
*)clone_test
},
348 static test_return_t
hashkit_digest_test(hashkit_st
*hashk
)
350 test_true(hashkit_digest(hashk
, "a", sizeof("a")));
355 static test_return_t
hashkit_set_function_test(hashkit_st
*hashk
)
357 for (int algo
= int(HASHKIT_HASH_DEFAULT
); algo
< int(HASHKIT_HASH_MAX
); algo
++)
363 hashkit_return_t rc
= hashkit_set_function(hashk
, static_cast<hashkit_hash_algorithm_t
>(algo
));
365 /* Hsieh is disabled most of the time for patent issues */
366 #ifndef HAVE_HSIEH_HASH
367 if (rc
== HASHKIT_FAILURE
&& algo
== HASHKIT_HASH_HSIEH
)
371 #ifndef HAVE_MURMUR_HASH
372 if (rc
== HASHKIT_FAILURE
&& algo
== HASHKIT_HASH_MURMUR
)
376 if (rc
== HASHKIT_INVALID_ARGUMENT
&& algo
== HASHKIT_HASH_CUSTOM
)
379 test_true_got(rc
== HASHKIT_SUCCESS
, hashkit_strerror(NULL
, rc
));
383 case HASHKIT_HASH_DEFAULT
:
384 list
= one_at_a_time_values
;
386 case HASHKIT_HASH_MD5
:
389 case HASHKIT_HASH_CRC
:
392 case HASHKIT_HASH_FNV1_64
:
393 list
= fnv1_64_values
;
395 case HASHKIT_HASH_FNV1A_64
:
396 list
= fnv1a_64_values
;
398 case HASHKIT_HASH_FNV1_32
:
399 list
= fnv1_32_values
;
401 case HASHKIT_HASH_FNV1A_32
:
402 list
= fnv1a_32_values
;
404 case HASHKIT_HASH_HSIEH
:
407 case HASHKIT_HASH_MURMUR
:
410 case HASHKIT_HASH_JENKINS
:
411 list
= jenkins_values
;
413 case HASHKIT_HASH_CUSTOM
:
414 case HASHKIT_HASH_MAX
:
420 // Now we make sure we did set the hash correctly.
423 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
427 hash_val
= hashkit_digest(hashk
, *ptr
, strlen(*ptr
));
428 test_true(list
[x
] == hash_val
);
440 static uint32_t hash_test_function(const char *string
, size_t string_length
, void *context
)
443 return libhashkit_md5(string
, string_length
);
446 static test_return_t
hashkit_set_custom_function_test(hashkit_st
*hashk
)
453 rc
= hashkit_set_custom_function(hashk
, hash_test_function
, NULL
);
454 test_true(rc
== HASHKIT_SUCCESS
);
456 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
460 hash_val
= hashkit_digest(hashk
, *ptr
, strlen(*ptr
));
461 test_true(md5_values
[x
] == hash_val
);
467 static test_return_t
hashkit_set_distribution_function_test(hashkit_st
*hashk
)
469 for (int algo
= int(HASHKIT_HASH_DEFAULT
); algo
< int(HASHKIT_HASH_MAX
); algo
++)
471 hashkit_return_t rc
= hashkit_set_distribution_function(hashk
, static_cast<hashkit_hash_algorithm_t
>(algo
));
473 /* Hsieh is disabled most of the time for patent issues */
474 if (rc
== HASHKIT_FAILURE
&& algo
== HASHKIT_HASH_HSIEH
)
477 if (rc
== HASHKIT_INVALID_ARGUMENT
&& algo
== HASHKIT_HASH_CUSTOM
)
480 test_true(rc
== HASHKIT_SUCCESS
);
486 static test_return_t
hashkit_set_custom_distribution_function_test(hashkit_st
*hashk
)
488 hashkit_return_t rc
= hashkit_set_custom_distribution_function(hashk
, hash_test_function
, NULL
);
489 test_true(rc
== HASHKIT_SUCCESS
);
495 static test_return_t
hashkit_get_function_test(hashkit_st
*hashk
)
497 for (int algo
= int(HASHKIT_HASH_DEFAULT
); algo
< int(HASHKIT_HASH_MAX
); algo
++)
500 if (HASHKIT_HASH_CUSTOM
or HASHKIT_HASH_HSIEH
)
503 hashkit_return_t rc
= hashkit_set_function(hashk
, static_cast<hashkit_hash_algorithm_t
>(algo
));
504 test_true(rc
== HASHKIT_SUCCESS
);
506 test_true(hashkit_get_function(hashk
) == algo
);
511 static test_return_t
hashkit_compare_test(hashkit_st
*hashk
)
513 hashkit_st
*clone
= hashkit_clone(NULL
, hashk
);
515 test_true(hashkit_compare(clone
, hashk
));
521 test_st hashkit_st_functions
[] ={
522 {"hashkit_digest", 0, (test_callback_fn
*)hashkit_digest_test
},
523 {"hashkit_set_function", 0, (test_callback_fn
*)hashkit_set_function_test
},
524 {"hashkit_set_custom_function", 0, (test_callback_fn
*)hashkit_set_custom_function_test
},
525 {"hashkit_get_function", 0, (test_callback_fn
*)hashkit_get_function_test
},
526 {"hashkit_set_distribution_function", 0, (test_callback_fn
*)hashkit_set_distribution_function_test
},
527 {"hashkit_set_custom_distribution_function", 0, (test_callback_fn
*)hashkit_set_custom_distribution_function_test
},
528 {"hashkit_compare", 0, (test_callback_fn
*)hashkit_compare_test
},
532 static test_return_t
libhashkit_digest_test(hashkit_st
*hashk
)
537 uint32_t value
= libhashkit_digest("a", sizeof("a"), HASHKIT_HASH_DEFAULT
);
543 test_st library_functions
[] ={
544 {"libhashkit_digest", 0, (test_callback_fn
*)libhashkit_digest_test
},
548 test_st hash_tests
[] ={
549 {"one_at_a_time", 0, (test_callback_fn
*)one_at_a_time_run
},
550 {"md5", 0, (test_callback_fn
*)md5_run
},
551 {"crc", 0, (test_callback_fn
*)crc_run
},
552 {"fnv1_64", 0, (test_callback_fn
*)fnv1_64_run
},
553 {"fnv1a_64", 0, (test_callback_fn
*)fnv1a_64_run
},
554 {"fnv1_32", 0, (test_callback_fn
*)fnv1_32_run
},
555 {"fnv1a_32", 0, (test_callback_fn
*)fnv1a_32_run
},
556 {"hsieh", 0, (test_callback_fn
*)hsieh_run
},
557 {"murmur", 0, (test_callback_fn
*)murmur_run
},
558 {"jenkis", 0, (test_callback_fn
*)jenkins_run
},
559 {0, 0, (test_callback_fn
*)0}
563 * The following test suite is used to verify that we don't introduce
564 * regression bugs. If you want more information about the bug / test,
565 * you should look in the bug report at
566 * http://bugs.launchpad.net/libmemcached
568 test_st regression
[]= {
572 collection_st collection
[] ={
573 {"allocation", 0, 0, allocation
},
574 {"hashkit_st_functions", 0, 0, hashkit_st_functions
},
575 {"library_functions", 0, 0, library_functions
},
576 {"hashing", 0, 0, hash_tests
},
577 {"regression", 0, 0, regression
},
581 static void *world_create(libtest::server_startup_st
&, test_return_t
& error
)
583 hashkit_st
*hashk_ptr
= hashkit_create(&global_hashk
);
585 if (hashk_ptr
!= &global_hashk
)
591 if (hashkit_is_allocated(hashk_ptr
) == true)
601 static bool world_destroy(void *object
)
603 hashkit_st
*hashk
= (hashkit_st
*)object
;
604 // Did we get back what we expected?
605 test_true(hashkit_is_allocated(hashk
) == false);
606 hashkit_free(&global_hashk
);
611 void get_world(Framework
*world
)
613 world
->collections
= collection
;
614 world
->_create
= world_create
;
615 world
->_destroy
= world_destroy
;