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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549
|
#include <stdint.h>
#include <limits.h>
#include <stdio.h>
#include <stdbool.h>
#include "trivia/util.h"
#include "unit.h"
#define HEAP_FORWARD_DECLARATION
#include "salad/heap.h"
const uint32_t TEST_CASE_SIZE = 1000;
struct test_type {
uint32_t val1;
uint32_t val2;
char c;
struct heap_node node;
};
/* If set, order by test_type->val2, otherwise by test_type->val1. */
static bool order_by_val2;
int
test_type_less(const struct test_type *left, const struct test_type *right)
{
if (order_by_val2)
return left->val2 < right->val2;
return left->val1 < right->val1;
}
#define HEAP_NAME test_heap
#define HEAP_LESS(h, a, b) test_type_less(a, b)
#define heap_value_t struct test_type
#define heap_value_attr node
#include "salad/heap.h"
void free_all_nodes(heap_t *p_heap)
{
struct test_type *value;
for (heap_off_t i = 0; i < p_heap->size; ++i) {
value = (struct test_type *) ((char *)p_heap->harr[i] -
offsetof(struct test_type, node));
free(value);
}
}
static void
test_insert_1_to_3()
{
header();
struct test_type *value, *root_value;
heap_t heap;
test_heap_create(&heap);
for (uint32_t i = 0; i < 4; ++i) {
value = (struct test_type *)malloc(sizeof(struct test_type));
value->val1 = i;
test_heap_insert(&heap, value);
root_value = test_heap_top(&heap);
if (root_value->val1 != 0) {
fail("check that min.val1 is incorrect",
"root_value->val1 != 0");
}
if (test_heap_check(&heap)) {
fail("check heap invariants failed",
"test_heap_check(&heap)");
}
}
free_all_nodes(&heap);
test_heap_destroy(&heap);
footer();
}
static void
test_insert_3_to_1()
{
header();
struct test_type *value, *root_value;
heap_t heap;
test_heap_create(&heap);
for (uint32_t i = 3; i > 0; --i) {
value = (struct test_type *)malloc(sizeof(struct test_type));
value->val1 = i;
test_heap_insert(&heap, value);
root_value = test_heap_top(&heap);
if (root_value->val1 != i) {
fail("check that min.val1 is incorrect",
"root_value->val1 != i");
}
if (test_heap_check(&heap)) {
fail("check heap invariants failed",
"test_heap_check(&heap)");
}
}
free_all_nodes(&heap);
test_heap_destroy(&heap);
footer();
}
static void
test_insert_50_to_150_mod_100()
{
header();
struct test_type *value, *root_value;
heap_t heap;
test_heap_create(&heap);
for (uint32_t i = 50; i < 150; ++i) {
value = (struct test_type *)malloc(sizeof(struct test_type));
value->val1 = i % 100;
test_heap_insert(&heap, value);
root_value = test_heap_top(&heap);
if (i < 100 && root_value->val1 != 50) {
fail("min.val1 is incorrect",
"i < 100 && root_value->val1 != 50");
}
if (i >= 100 && root_value->val1 != 0) {
fail("min.val1 is incorrect",
"i >= 100 && root_value->val1 != 0");
}
if (test_heap_check(&heap)) {
fail("check heap invariants failed",
"test_heap_check(&heap)");
}
}
for (int i = 0; i < 100; ++i) {
root_value = test_heap_top(&heap);
test_heap_pop(&heap);
free(root_value);
}
test_heap_destroy(&heap);
footer();
}
static void
test_insert_many_random()
{
header();
uint32_t ans = UINT_MAX;
struct test_type *value, *root_value;
heap_t heap;
test_heap_create(&heap);
for (uint32_t i = 0; i < TEST_CASE_SIZE; ++i) {
value = (struct test_type *)malloc(sizeof(struct test_type));
value->val1 = rand();
ans = (value->val1 < ans ? value->val1 : ans);
test_heap_insert(&heap, value);
root_value = test_heap_top(&heap);
if (root_value->val1 != ans) {
fail("min.val1 is incorrect", "root_value->val1 != ans");
}
if (heap.size != i + 1) {
fail("check that size is correct failed", "root->size != i + 2");
}
if (test_heap_check(&heap)) {
fail("check heap invariants failed",
"test_heap_check(&heap)");
}
}
free_all_nodes(&heap);
test_heap_destroy(&heap);
footer();
}
static void
test_insert_10_to_1_pop()
{
header();
struct test_type *value, *root_value;
heap_t heap;
test_heap_create(&heap);
for (uint32_t i = 10; i > 0; --i) {
value = (struct test_type *)malloc(sizeof(struct test_type));
value->val1 = i;
test_heap_insert(&heap, value);
root_value = test_heap_top(&heap);
if (root_value->val1 != i) {
fail("check that min.val1 is correct failed",
"root_value->val1 != i");
}
if (test_heap_check(&heap)) {
fail("check heap invariants failed",
"test_heap_check(&heap)");
}
}
for (uint32_t i = 1; i <= 10; ++i) {
root_value = test_heap_top(&heap);
test_heap_pop(&heap);
if (root_value->val1 != i) {
fail("check that min.val1 is correct failed",
"root_value->val1 != i");
}
if (test_heap_check(&heap)) {
fail("check heap invariants failed",
"test_heap_check(&heap)");
}
free(root_value);
}
test_heap_destroy(&heap);
footer();
}
int uint32_compare(const void *a, const void *b)
{
const uint32_t *ua = (const uint32_t *)a;
const uint32_t *ub = (const uint32_t *)b;
if (*ua < *ub) {
return -1;
}
else if (*ua > *ub) {
return 1;
}
return 0;
}
static void
test_insert_many_pop_many_random()
{
header();
uint32_t ans = UINT_MAX;
struct test_type *value, *root_value;
heap_t heap;
test_heap_create(&heap);
uint32_t keys_it = 0;
uint32_t *keys = (uint32_t *)malloc(sizeof(uint32_t) * TEST_CASE_SIZE);
if (keys == NULL) {
fail("keys == NULL", "fail to alloc memory for keys array");
}
for (uint32_t i = 0; i < TEST_CASE_SIZE; ++i) {
value = (struct test_type *)malloc(sizeof(struct test_type));
keys[keys_it++] = value->val1 = rand();
ans = (value->val1 < ans ? value->val1 : ans);
test_heap_insert(&heap, value);
root_value = test_heap_top(&heap);
if (root_value->val1 != ans) {
fail("check that min.val1 is correct failed",
"root_value->val1 != ans");
}
if (test_heap_check(&heap)) {
fail("check heap invariants failed",
"test_heap_check(&heap)");
}
if (heap.size != i + 1) {
fail("check that size is correct",
"heap.size != i + 1");
}
}
qsort(keys, TEST_CASE_SIZE, sizeof(uint32_t), uint32_compare);
bool f = true;
for (uint32_t i = 0; i + 1 < TEST_CASE_SIZE; ++i) {
f = f && (keys[i] < keys[i + 1]);
}
if(!f) {
fail("check that keys is sorted failed", "!f");
}
uint32_t full_size = heap.size;
for (uint32_t i = 0; i < TEST_CASE_SIZE; ++i) {
root_value = test_heap_top(&heap);
test_heap_pop(&heap);
if (root_value->val1 != keys[i]) {
fail("check that min.val1 is correct failed",
"root_value->val1 != keys[i]");
}
if (test_heap_check(&heap)) {
fail("check heap invariants failed",
"test_heap_check(&heap)");
}
if (heap.size != full_size - 1 - i) {
fail("check that size is correct",
"heap_test_size(root) != full_size - 1 - i");
}
free(root_value);
}
test_heap_destroy(&heap);
free(keys);
footer();
}
static void
test_insert_pop_workload()
{
header();
uint32_t ans = UINT_MAX;
struct test_type *value, *root_value;
heap_t heap;
test_heap_create(&heap);
uint32_t current_size = 0;
for(uint32_t i = 0; i < TEST_CASE_SIZE; ++i) {
if (heap.size == 0 || rand() % 5) {
current_size++;
value = (struct test_type *)
malloc(sizeof(struct test_type));
value->val1 = rand();
test_heap_insert(&heap, value);
}
else {
current_size--;
root_value = test_heap_top(&heap);
test_heap_pop(&heap);
free(root_value);
}
if (test_heap_check(&heap)) {
fail("check heap invariants failed",
"test_heap_check(&heap)");
}
if (heap.size != current_size) {
fail("check that size is correct",
"heap.size != current_size");
}
}
free_all_nodes(&heap);
test_heap_destroy(&heap);
footer();
}
static void
test_pop_last()
{
header();
uint32_t ans = UINT_MAX;
struct test_type *value, *root_value;
heap_t heap;
test_heap_create(&heap);
value = (struct test_type *)malloc(sizeof(struct test_type));
test_heap_insert(&heap, value);
test_heap_pop(&heap);
if (heap.size != 0) {
fail("test delete last node failed", "heap.size != 0");
}
test_heap_destroy(&heap);
free(value);
footer();
}
static void
test_insert_update_workload()
{
header();
uint32_t nodes_it = 0;
uint64_t current_size = 0;
uint32_t ans = UINT_MAX;
struct test_type *value, *root_value;
heap_t heap;
test_heap_create(&heap);
struct test_type **nodes = (struct test_type **)
malloc(sizeof(struct test_type *) * TEST_CASE_SIZE);
struct heap_node *test_node = NULL, *root = NULL;
for(uint32_t i = 0; i < TEST_CASE_SIZE; ++i) {
if (nodes_it == current_size ||
heap.size == 0 ||
rand() % 5) {
value = (struct test_type *)
malloc(sizeof(struct test_type));
value->val1 = rand();
nodes[current_size++] = value;
test_heap_insert(&heap, value);
}
else {
nodes[nodes_it]->val1 = rand();
test_heap_update(&heap, nodes[nodes_it]);
nodes_it++;
}
if (test_heap_check(&heap)) {
fail("check heap invariants failed",
"test_heap_check(&heap)");
}
if (heap.size != current_size) {
fail("check that size is correct",
"heap_test_size(root) != current_size");
}
}
free_all_nodes(&heap);
test_heap_destroy(&heap);
free(nodes);
footer();
}
static void
test_random_delete_workload()
{
header();
uint32_t nodes_it = 0;
uint64_t current_size = 0;
uint32_t ans = UINT_MAX;
struct test_type *value, *root_value;
heap_t heap;
test_heap_create(&heap);
struct test_type **nodes = (struct test_type **)
malloc(sizeof(struct test_type *) * TEST_CASE_SIZE);
struct heap_node *test_node = NULL, *root = NULL;
for(uint32_t i = 0; i < TEST_CASE_SIZE; ++i) {
if (nodes_it == current_size ||
heap.size == 0 ||
rand() % 5) {
value = (struct test_type *)
malloc(sizeof(struct test_type));
value->val1 = rand();
nodes[current_size++] = value;
test_heap_insert(&heap, value);
}
else {
test_heap_delete(&heap, nodes[nodes_it]);
current_size--;
nodes_it++;
}
if (test_heap_check(&heap)) {
fail("check heap invariants failed",
"test_heap_check(&heap)");
}
if (heap.size != current_size) {
fail("check that size is correct",
"heap.size != current_size");
}
}
free_all_nodes(&heap);
test_heap_destroy(&heap);
free(nodes);
footer();
}
static void
test_delete_last_node()
{
header();
struct test_type *value, *root_value;
heap_t heap;
test_heap_create(&heap);
for (int i = 0; i < 4; ++i) {
value = (struct test_type *)
malloc(sizeof(struct test_type));
value->val1 = 0;
test_heap_insert(&heap, value);
}
test_heap_delete(&heap, value);
if (test_heap_check(&heap)) {
fail("check heap invariants failed", "test_heap_check(&heap)");
}
test_heap_destroy(&heap);
footer();
}
static void
test_heapify()
{
header();
heap_t heap;
test_heap_create(&heap);
for (uint32_t i = 0; i < TEST_CASE_SIZE; ++i) {
struct test_type *value = malloc(sizeof(struct test_type));
value->val1 = rand();
value->val2 = rand();
test_heap_insert(&heap, value);
}
order_by_val2 = true;
test_heap_update_all(&heap);
if (test_heap_check(&heap)) {
fail("check heap invariants failed",
"test_heap_check(&heap)");
}
order_by_val2 = false;
free_all_nodes(&heap);
test_heap_destroy(&heap);
footer();
}
int
main(int argc, const char** argv)
{
srand(179);
test_insert_1_to_3();
test_insert_3_to_1();
test_insert_50_to_150_mod_100();
test_insert_many_random();
test_insert_10_to_1_pop();
test_insert_many_pop_many_random();
test_insert_pop_workload();
test_pop_last();
test_insert_update_workload();
test_random_delete_workload();
test_delete_last_node();
test_heapify();
}
|