test_htable.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. #include <assert.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5. #include "hash_table.h"
  6. #include "mmhash.h"
  7. static uint64_t hash(void *i) { return mmhash(i, sizeof(int), 0); }
  8. static bool eq(void *x, void *y) {
  9. int *a = x, *b = y;
  10. return *a == *b;
  11. }
  12. bool found[10000];
  13. int main() {
  14. printf("[TEST] htable\n");
  15. hash_table_t ht;
  16. init_hash_table(&ht, sizeof(int), -1, hash, eq);
  17. for (int i = 0; i < 10000; i++) {
  18. hash_table_insert(&ht, &i);
  19. assert(ht.size == i + 1);
  20. assert(ht.taken == i + 1);
  21. assert(ht.cap >= i + 1);
  22. }
  23. for (int i = 0; i < 10000; i++) {
  24. assert(hash_table_find(&ht, &i) != NULL);
  25. int t = 10000 + i;
  26. assert(hash_table_find(&ht, &t) == NULL);
  27. }
  28. memset(found, 0, sizeof(bool) * 10000);
  29. int *iter = hash_table_begin(&ht);
  30. while (iter != NULL) {
  31. found[*iter] = true;
  32. iter = hash_table_next(&ht, iter);
  33. }
  34. for (int i = 0; i < 10000; i++) {
  35. assert(found[i]);
  36. }
  37. for (int i = 0; i < 5000; i++) {
  38. int *iter = hash_table_find(&ht, &i);
  39. hash_table_remove(&ht, iter);
  40. }
  41. for (int i = 0; i < 5000; i++) {
  42. assert(hash_table_find(&ht, &i) == NULL);
  43. int t = 5000 + i;
  44. assert(hash_table_find(&ht, &t) != NULL);
  45. }
  46. for (int i = 0; i < 5000; i++) {
  47. hash_table_insert(&ht, &i);
  48. }
  49. memset(found, 0, sizeof(bool) * 10000);
  50. iter = hash_table_begin(&ht);
  51. while (iter != NULL) {
  52. found[*iter] = true;
  53. iter = hash_table_next(&ht, iter);
  54. }
  55. for (int i = 0; i < 10000; i++) {
  56. assert(found[i]);
  57. }
  58. printf("[PASS] htable\n");
  59. }